*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #c8962a;
  --gold-light: #e8b84b;
  --dark: #0f1117;
  --dark2: #1a1d27;
  --mid: #2a2d3a;
  --light: #f7f6f3;
  --white: #ffffff;
  --text: #555566;
  --border: #e2e2e8;
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: rgba(15,17,23,0.97); backdrop-filter: blur(12px);
  padding: 0 60px; display: flex; align-items: center; justify-content: space-between;
  height: 72px; border-bottom: 1px solid rgba(200,150,42,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { width: 38px; height: 38px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: var(--dark); }
.nav-logo-text { color: var(--white); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.05em; line-height: 1.2; }
.nav-logo-text span { display: block; color: var(--gold); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--dark); padding: 11px 26px; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* BUTTONS */
.btn-gold { display: inline-block; background: var(--gold); color: var(--dark); padding: 15px 36px; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { display: inline-block; border: 2px solid rgba(255,255,255,0.4); color: var(--white); padding: 13px 34px; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { display: inline-block; background: var(--dark); color: var(--white); padding: 15px 36px; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.btn-dark:hover { background: var(--mid); }

/* SECTION BASE */
.section { padding: 100px 60px; }
.container { max-width: 1160px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 14px; }
.section-tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); }
.section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--dark); line-height: 1.18; margin-bottom: 18px; }
.section-title span { color: var(--gold); }
.section-sub { font-size: 1rem; color: var(--text); line-height: 1.75; max-width: 580px; }
.text-white { color: var(--white) !important; }
.text-white-70 { color: rgba(255,255,255,0.7) !important; }

/* STATS BAR */
.stats-bar { background: var(--gold); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 32px 20px; text-align: center; border-right: 1px solid rgba(15,17,23,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--dark); line-height: 1; }
.stat-label { font-size: 0.75rem; font-weight: 600; color: rgba(15,17,23,0.65); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }

/* CARDS */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 56px; }
.service-card { background: var(--light); padding: 40px 32px; border-top: 4px solid var(--gold); transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.service-icon { font-size: 2.2rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: var(--gold); opacity: 0.3; }
.process-step { text-align: center; padding: 0 20px; }
.step-num { width: 56px; height: 56px; background: var(--gold); color: var(--dark); font-weight: 900; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.process-step h4 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; color: var(--text); line-height: 1.65; }

/* TESTIMONIAL */
.testimonial-card { background: var(--dark2); padding: 40px; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; left: 30px; font-size: 5rem; color: var(--gold); opacity: 0.3; font-family: Georgia, serif; line-height: 1; }
.testimonial-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; padding-top: 30px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--dark); font-size: 1rem; }
.author-name { color: var(--white); font-weight: 700; font-size: 0.9rem; }
.author-role { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* CONTACT FORM */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 16px; border: 1.5px solid var(--border); background: var(--white);
  font-size: 0.92rem; font-family: inherit; outline: none; transition: border-color 0.2s; color: var(--dark);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: none; height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; background: var(--gold); color: var(--dark); border: none; padding: 16px; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; margin-top: 8px; transition: background 0.2s; }
.submit-btn:hover { background: var(--gold-light); }

/* CONTACT INFO ITEMS */
.info-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.info-icon { width: 48px; height: 48px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.info-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 4px; }
.info-value { font-size: 0.95rem; color: var(--dark); font-weight: 500; }
.info-value a { color: var(--dark); text-decoration: none; }
.info-value a:hover { color: var(--gold); }

/* FOOTER */
.footer { background: var(--dark); padding: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1160px; margin: 0 auto 50px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom span { color: var(--gold); font-size: 0.8rem; font-weight: 600; }

/* HERO VIDEO BG OVERLAY */
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,17,23,0.93) 0%, rgba(15,17,23,0.7) 60%, rgba(15,17,23,0.5) 100%); }

/* BREADCRUMB */
.breadcrumb { background: var(--dark2); padding: 16px 60px; }
.breadcrumb-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: 10px; font-size: 0.8rem; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.2); }
.breadcrumb strong { color: var(--gold); }

/* PAGE HERO */
.page-hero { padding: 160px 60px 80px; background: var(--dark); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,150,42,0.12) 0%, transparent 70%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 18px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; }

/* ACCENT LINE */
.accent-line { width: 60px; height: 4px; background: var(--gold); margin-bottom: 28px; }

/* BG VARIANTS */
.bg-dark { background: var(--dark); }
.bg-dark2 { background: var(--dark2); }
.bg-light { background: var(--light); }
.bg-gold { background: var(--gold); }

/* SPLIT LAYOUT */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-img { position: relative; }
.split-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
.split-img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); padding: 24px 28px; text-align: center; }
.split-img-badge .num { font-size: 2.2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.split-img-badge .label { font-size: 0.72rem; font-weight: 700; color: var(--dark); opacity: 0.7; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* CHECKLIST */
.check-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: var(--text); }
.check-list li::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--gold); color: var(--dark); font-weight: 900; font-size: 0.7rem; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 24px; }
  .breadcrumb { padding: 14px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .footer { padding: 40px 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3, .card-grid-2, .process-grid, .split-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .split-img-badge { bottom: 10px; right: 10px; }
  .process-grid::before { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
