/* ============================================
   SYNERGY MEDIA — DESIGN SYSTEM v2
   Bold Editorial | AI-Forward | Dark-First
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ---- TOKENS ---- */
:root {
  --navy:        #0F1E2D;
  --navy-mid:    #162435;
  --navy-light:  #1E3347;
  --cream:       #F8F5EF;
  --cream-dark:  #EEE9DF;
  --white:       #FFFFFF;
  --amber:       #C4853A;
  --amber-light: #D9A05E;
  --amber-pale:  #F5E8D5;
  --text:        #0F1E2D;
  --text-mid:    #4A5568;
  --text-soft:   #8896A4;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: #E2DDD5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(15,30,45,0.10);
  --shadow-lg: 0 16px 56px rgba(15,30,45,0.18);
  --max-w: 1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--navy); color: var(--white); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; }
.eyebrow { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); }
p { line-height: 1.75; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 120px 40px; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 34px; border-radius: 6px; font-family: var(--font-body); font-size: 0.875rem; font-weight: 700; cursor: pointer; transition: all 0.22s ease; border: 2px solid transparent; letter-spacing: 0.03em; text-transform: uppercase; }
.btn-primary { background: var(--amber); color: var(--white); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-light); border-color: var(--amber-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,133,58,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--amber); border-color: var(--white); font-weight: 700; }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-arrow::after { content: '→'; font-size: 1rem; }

/* ============== NAV ============== */
nav { position: sticky; top: 0; z-index: 100; background: var(--navy); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; height: 160px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  height: 144px;
  width: auto;
  display: block;
  /* No filter — logo has its own gold/navy colours on transparent bg */
}
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--amber-light); }
.nav-social { display: flex; align-items: center; gap: 14px; margin-left: 8px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.1); }
.nav-social a { color: rgba(255,255,255,0.35); transition: color 0.2s; display: flex; }
.nav-social a:hover { color: var(--amber); }
.nav-cta { display: flex; align-items: center; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.6); cursor: pointer; transition: color 0.2s; padding: 8px 0; text-decoration: none; }
.nav-dropdown-trigger:hover { color: var(--white); }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: 50%; background: var(--navy-light); border: 1px solid var(--border-dark); border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.4); padding: 8px; min-width: 300px; opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(4px) scale(0.97); transform-origin: top center; transition: all 0.2s; }
.dropdown-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; background: transparent; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0) scale(1); }
.dropdown-item { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-radius: 8px; transition: background 0.15s; }
.dropdown-item:hover { background: rgba(255,255,255,0.05); }
.d-icon { width: 38px; height: 38px; background: rgba(196,133,58,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--amber-light); flex-shrink: 0; font-size: 1rem; }
.d-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--white); }
.d-text span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 160px 0 0; background: var(--navy); z-index: 99; padding: 32px 40px; flex-direction: column; gap: 4px; border-top: 1px solid var(--border-dark); overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.7); padding: 14px 0; border-bottom: 1px solid var(--border-dark); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--white); }

/* ============== HERO ============== */
.hero { position: relative; min-height: calc(100vh - 76px); display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: var(--navy); flex-direction: column; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.4; }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, #0F1E2D 0%, #0F1E2D 10%, rgba(15, 30, 45, 0.88) 25%, rgba(15, 30, 45, 0.7) 45%, rgba(10, 18, 30, 0.6) 70%, rgba(10, 18, 30, 0.55) 100%); z-index: 1; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; }
.hero-bg::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 600px; background: radial-gradient(ellipse, rgba(196,133,58,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-line { position: absolute; background: linear-gradient(90deg, transparent, var(--amber), transparent); height: 1px; width: 400px; opacity: 0.25; }
.hero-line-1 { top: 30%; left: 50%; transform: translateX(-50%) rotate(-12deg); }
.hero-line-2 { bottom: 30%; left: 50%; transform: translateX(-50%) rotate(12deg); }
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 80px 40px 160px; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 32px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber-light); background: rgba(196,133,58,0.1); border: 1px solid rgba(196,133,58,0.2); padding: 8px 20px; border-radius: 50px; }
.hero h1 { color: var(--white); margin-bottom: 28px; font-weight: 700; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; font-weight: 500; color: rgba(255,255,255,0.65); }
.hero h1 strong { font-weight: 700; color: var(--amber); font-style: normal; }
.hero .lead { font-size: 1.1rem; color: rgba(255,255,255,0.55); max-width: 580px; margin: 0 auto 44px; line-height: 1.85; font-weight: 400; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); border-top: 1px solid var(--border-dark); display: flex; align-items: stretch; z-index: 2; }
.hero-stat { flex: 1; padding: 28px 40px; display: flex; flex-direction: column; align-items: center; border-right: 1px solid var(--border-dark); gap: 4px; }
.hero-stat:last-child { border-right: none; }
.hero-stat strong { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--amber); line-height: 1; }
.hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: center; letter-spacing: 0.04em; }

/* ============== MARQUEE ============== */
.trust-bar { background: var(--amber); overflow: hidden; display: flex; }
.marquee-track { display: flex; align-items: center; animation: marquee 32s linear infinite; white-space: nowrap; }
.marquee-item { display: flex; align-items: center; gap: 12px; padding: 14px 40px; border-right: 1px solid rgba(255,255,255,0.25); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============== SECTION HEADERS ============== */
.sh { margin-bottom: 64px; }
.sh.center { text-align: center; }
.sh.center p { margin: 0 auto; }
.sh .eyebrow { margin-bottom: 16px; display: block; }
.sh h2 { margin-bottom: 20px; }
.sh p { font-size: 1.05rem; max-width: 560px; line-height: 1.8; color: rgba(255,255,255,0.6); }

/* ============== WHO WE HELP — light ============== */
.who-section { background: var(--cream); padding: 120px 40px; }
.who-section .sh h2 { color: var(--text); }
.who-section .sh p { color: var(--text-mid); }
.who-rows { display: flex; flex-direction: column; }
.who-row { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 40px; padding: 44px 0; border-top: 1px solid var(--border-light); align-items: start; }
.who-row:last-child { border-bottom: 1px solid var(--border-light); }
.who-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--amber); opacity: 0.3; line-height: 1; }
.who-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); background: var(--amber-pale); padding: 4px 12px; border-radius: 4px; margin-bottom: 10px; }
.who-row h4 { font-size: 1.25rem; color: var(--text); margin-bottom: 12px; }
.who-row p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }

/* ============== SERVICES — dark alternating rows ============== */
.services-section { background: var(--navy-mid); padding: 0; }
.services-section .sh-wrap { padding: 100px 40px 60px; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border-dark); min-height: 380px; max-width: var(--max-w); margin: 0 auto; }
.service-row:last-child { border-bottom: 1px solid var(--border-dark); }
.srv-content { padding: 64px 60px 64px 40px; display: flex; flex-direction: column; justify-content: center; }
.service-row.rev .srv-content { padding: 64px 40px 64px 60px; order: 2; }
.srv-visual { background: var(--navy-light); border-left: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.service-row.rev .srv-visual { border-left: none; border-right: 1px solid var(--border-dark); order: 1; }
.srv-visual .v-num { font-family: var(--font-display); font-size: 14rem; font-weight: 700; color: rgba(255,255,255,0.025); line-height: 1; position: absolute; user-select: none; }
.srv-visual .v-icon { font-size: 4rem; position: relative; z-index: 1; }
.srv-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 16px; display: block; }
.srv-content h3 { color: var(--white); margin-bottom: 16px; }
.srv-content p { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.8; }
.srv-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.srv-bullet { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.srv-bullet::before { content: ''; width: 20px; height: 2px; background: var(--amber); flex-shrink: 0; }
.srv-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber-light); transition: gap 0.2s; }
.srv-link:hover { gap: 14px; }

/* ============== PROBLEM SECTION ============== */
.problem-section { display: grid; grid-template-columns: 1fr 1fr; }
.problem-left { background: var(--navy); padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; }
.problem-right { background: var(--white); padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; }
.big-quote { font-family: var(--font-display); font-size: 4rem; color: var(--amber); line-height: 0.6; margin-bottom: 24px; }
.problem-left blockquote { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; color: var(--white); line-height: 1.5; margin-bottom: 24px; }
.problem-left cite { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-style: normal; }
.problem-points { display: flex; flex-direction: column; gap: 32px; }
.problem-point { display: flex; gap: 20px; align-items: flex-start; }
.pp-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--amber); opacity: 0.45; line-height: 1; min-width: 32px; padding-top: 2px; }
.pp-text h4 { color: var(--text); font-size: 1.05rem; margin-bottom: 6px; }
.pp-text p { color: var(--text-mid); font-size: 0.875rem; }

/* ============== PROCESS ============== */
.process-section { background: var(--cream-dark); padding: 120px 40px; }
.process-section .sh h2 { color: var(--navy); }
.process-section .sh p { color: var(--text-mid); }
.process-section .eyebrow { color: var(--amber-dark); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(15,30,45,0.1); border-radius: var(--radius); overflow: hidden; margin-top: 64px; }
.process-step { padding: 48px 36px; border-right: 1px solid rgba(15,30,45,0.1); background: var(--white); transition: background 0.2s; }
.process-step:hover { background: var(--cream); }
.process-step:last-child { border-right: none; }
.ps-num { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: var(--amber); opacity: 0.5; line-height: 1; margin-bottom: 24px; }
.process-step h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 12px; }
.process-step p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }

/* ============== BLOG ============== */
.blog-section { background: var(--cream); padding: 120px 40px; }
.blog-section .sh h2 { color: var(--text); }
.blog-section .sh p { color: var(--text-mid); }
.blog-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.blog-feature { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-light); transition: box-shadow 0.3s; display: block; color: inherit; }
.blog-feature:hover { box-shadow: var(--shadow-lg); }
.bf-thumb { aspect-ratio: 16/7; background: var(--navy); overflow: hidden; }
.bf-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-feature:hover .bf-thumb img { transform: scale(1.04); }
.bf-body { padding: 36px; }
.blog-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); border: 1px solid var(--amber); padding: 3px 10px; border-radius: 4px; margin-bottom: 14px; }
.blog-feature h3 { font-size: 1.6rem; color: var(--text); margin-bottom: 12px; line-height: 1.25; }
.blog-feature p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: #999; }
.bm-dot { width: 3px; height: 3px; background: #ccc; border-radius: 50%; }
.blog-stack { display: flex; flex-direction: column; gap: 16px; }
.blog-card-sm { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 100px 1fr; transition: box-shadow 0.3s; color: inherit; }
.blog-card-sm:hover { box-shadow: var(--shadow); }
.bc-thumb { background: var(--navy-light); overflow: hidden; }
.bc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bc-body { padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; }
.bc-body .blog-tag { margin-bottom: 6px; }
.bc-body h4 { font-size: 0.95rem; color: var(--text); line-height: 1.3; margin-bottom: 6px; }
.bc-body .blog-meta { font-size: 0.72rem; }

/* ============== CTA ============== */
.cta-section { background: var(--amber); padding: 100px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.cta-section > * { position: relative; z-index: 1; }
.cta-section .eyebrow { color: rgba(255,255,255,0.65); }
.cta-section h2 { color: var(--white); margin: 16px 0 20px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============== CONTACT ============== */
.contact-section { background: var(--navy-mid); padding: 120px 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.ci-item { display: flex; gap: 18px; align-items: flex-start; }
.ci-icon { width: 46px; height: 46px; background: rgba(196,133,58,0.15); border: 1px solid rgba(196,133,58,0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ci-item h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.ci-item p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; border: 1px solid var(--border-dark); border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; color: var(--white); background: rgba(255,255,255,0.05); transition: border-color 0.2s; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--amber); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============== FOOTER ============== */
footer { background: #080F17; padding: 72px 40px 36px; border-top: 1px solid var(--border-dark); }
.footer-grid { max-width: var(--max-w); margin: 0 auto 60px; display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 60px; }
.footer-brand img { height: 36px; width: auto; margin-bottom: 20px; opacity: 0.85; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 280px; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--amber-light); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ============== PAGE HERO ============== */
.page-hero { background: var(--navy); padding: 100px 40px 80px; border-bottom: 1px solid var(--border-dark); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--amber-light); margin-bottom: 16px; display: block; }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin-bottom: 20px; max-width: 800px; }
.page-hero h1 em { font-style: italic; color: rgba(255,255,255,0.65); }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 580px; font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; }

/* ============== CONTENT SECTIONS ============== */
.light-section { background: var(--cream); padding: 100px 40px; }
.light-section h2 { color: var(--text); }
.light-section h3 { color: var(--text); }
.light-section h4 { color: var(--text); }
.light-section p { color: var(--text-mid); }
.light-section .eyebrow { color: var(--amber); }
.light-section .sh p { color: var(--text-mid); }
.dark-section { background: var(--navy-mid); padding: 100px 40px; }

/* Pillar grid */
.pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; margin-top: 56px; }
.pillar-card { background: var(--white); padding: 40px 36px; transition: background 0.2s; }
.pillar-card:hover { background: var(--cream); }
.pillar-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--amber); opacity: 0.4; margin-bottom: 20px; line-height: 1; }
.pillar-card h4 { color: var(--text); margin-bottom: 10px; }
.pillar-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.pillar-bullets { display: flex; flex-direction: column; gap: 8px; }
.pillar-bullet { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--text-mid); }
.pillar-bullet::before { content: ''; width: 16px; height: 2px; background: var(--amber); flex-shrink: 0; }

/* Phase list - dark */
.phase-list { display: flex; flex-direction: column; margin-top: 56px; }
.phase-item { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 40px 0; border-top: 1px solid var(--border-dark); align-items: start; }
.phase-item:last-child { border-bottom: 1px solid var(--border-dark); }
.phase-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--amber); opacity: 0.25; line-height: 1; }
.phase-content h4 { color: var(--white); margin-bottom: 10px; }
.phase-content p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
/* Phase list - light */
.light-phase .phase-item { border-top-color: var(--border-light); }
.light-phase .phase-item:last-child { border-bottom-color: var(--border-light); }
.light-phase .phase-content h4 { color: var(--text); }
.light-phase .phase-content p { color: var(--text-mid); }

/* Fit grid */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 56px auto 0; }
.fit-card { padding: 32px; border-radius: var(--radius); }
.fit-card.good { background: rgba(196,133,58,0.08); border: 1px solid rgba(196,133,58,0.2); }
.fit-card.what { background: var(--cream-dark); }
.fit-card h4 { margin-bottom: 16px; color: var(--text); }
.fit-list { display: flex; flex-direction: column; gap: 10px; }
.fit-item { display: flex; gap: 10px; font-size: 0.875rem; color: var(--text-mid); }
.fit-check { color: var(--amber); font-weight: 700; flex-shrink: 0; }
.fit-arrow { color: var(--navy); font-weight: 700; flex-shrink: 0; }

/* Channel grid */
.channel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border-dark); border: 1px solid var(--border-dark); border-radius: var(--radius); overflow: hidden; margin-top: 56px; }
.channel-card { background: var(--navy-light); padding: 36px 32px; transition: background 0.2s; }
.channel-card:hover { background: rgba(255,255,255,0.05); }
.cc-icon { font-size: 1.8rem; margin-bottom: 14px; }
.channel-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.channel-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* Deliverable grid */
.deliverable-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.deliverable-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 32px 28px; transition: all 0.25s; }
.deliverable-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--amber-pale); }
.dc-icon { font-size: 2rem; margin-bottom: 16px; }
.deliverable-card h4 { color: var(--text); margin-bottom: 10px; }
.deliverable-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.dc-bullets { display: flex; flex-direction: column; gap: 6px; }
.dc-bullet { font-size: 0.8rem; color: var(--text-soft); display: flex; align-items: center; gap: 8px; }
.dc-bullet::before { content: ''; width: 12px; height: 1.5px; background: var(--amber); flex-shrink: 0; }

/* ============== ABOUT ============== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }
.about-left { background: var(--navy); padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; }
.about-right { background: var(--cream); padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; }
.about-right h2 { color: var(--text); }
.about-right p { color: var(--text-mid); }
.about-right .eyebrow { color: var(--amber); }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border-dark); border-radius: var(--radius); overflow: hidden; margin-top: 48px; }
.stat-item { padding: 36px 28px; border-right: 1px solid var(--border-dark); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: 8px; }
.stat-item span { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.5; }
.values-list { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.value-row { display: flex; gap: 20px; align-items: flex-start; }
.v-icon { width: 40px; height: 40px; background: var(--amber-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.v-text h5 { font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.v-text p { font-size: 0.85rem; color: var(--text-mid); }
.team-section { background: var(--navy); padding: 100px 40px; }
.team-card { max-width: 520px; margin: 56px auto 0; background: var(--navy-light); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--navy-mid); border: 2px solid var(--border-dark); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(255,255,255,0.15); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { color: var(--white); margin-bottom: 4px; }
.team-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 20px; display: block; }
.team-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.8; }

/* ============== BLOG ARTICLE ============== */
.blog-article-bg { background: var(--white); }
.blog-article-header { background: var(--navy); padding: 80px 40px 0; }
.blog-article-inner { max-width: 760px; margin: 0 auto; padding: 56px 40px 100px; }
.blog-article-inner h2 { font-size: 1.8rem; margin: 44px 0 14px; color: var(--text); }
.blog-article-inner h3 { font-size: 1.25rem; margin: 32px 0 10px; color: var(--text); }
.blog-article-inner p { font-size: 1rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 20px; }
.blog-article-inner ul { margin: 0 0 20px 24px; }
.blog-article-inner li { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.tip-box { background: var(--amber-pale); border-left: 3px solid var(--amber); padding: 20px 24px; margin: 24px 0; border-radius: 0 8px 8px 0; }
.tip-box p { margin: 0; color: var(--text); }
.tip-box strong { color: var(--amber); }
.article-cta { background: var(--navy); border-radius: var(--radius); padding: 40px; margin-top: 56px; text-align: center; }
.article-cta h3 { color: var(--white); margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 32px; transition: color 0.2s; }
.back-link:hover { color: var(--amber-light); }

/* Blog listing */
.blog-listing-section { background: var(--navy); padding: 80px 40px; }
.blog-listing-section .sh h2 { color: var(--white); }
.blog-listing-featured { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border-dark); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; color: inherit; transition: border-color 0.2s; }
.blog-listing-featured:hover { border-color: rgba(196,133,58,0.3); }
.blf-img { background: var(--navy-light); min-height: 320px; overflow: hidden; }
.blf-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.blf-body { background: var(--navy-light); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.blf-body h2 { color: var(--white); font-size: 1.8rem; margin: 14px 0 16px; line-height: 1.25; }
.blf-body p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.blog-listing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.blg-card { background: var(--navy-light); border: 1px solid var(--border-dark); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 120px 1fr; color: inherit; transition: border-color 0.2s; }
.blg-card:hover { border-color: rgba(196,133,58,0.3); }
.blg-thumb { background: var(--navy-mid); overflow: hidden; }
.blg-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.blg-body { padding: 24px 20px; }
.blg-body h4 { color: var(--white); font-size: 0.95rem; margin: 8px 0 10px; line-height: 1.35; }
.blg-body .blog-meta { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.newsletter-section { background: var(--navy-mid); padding: 80px 40px; border-top: 1px solid var(--border-dark); }
.newsletter-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.newsletter-inner h3 { color: var(--white); margin: 14px 0; }
.newsletter-inner p { color: rgba(255,255,255,0.45); margin-bottom: 28px; font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1px solid var(--border-dark); border-radius: 6px; background: rgba(255,255,255,0.05); color: var(--white); font-family: var(--font-body); font-size: 0.9rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.2); }
.newsletter-form input:focus { border-color: var(--amber); }

/* Services overview */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border-dark); border: 1px solid var(--border-dark); border-radius: var(--radius); overflow: hidden; margin-top: 56px; }
.why-item { background: var(--navy-light); padding: 36px 32px; transition: background 0.2s; }
.why-item:hover { background: rgba(255,255,255,0.04); }
.wi-icon { font-size: 1.8rem; margin-bottom: 14px; }
.why-item h4 { color: var(--white); margin-bottom: 10px; }
.why-item p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.featured-service { background: var(--navy-light); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 24px; }
.featured-service .eyebrow { color: var(--amber-light); margin-bottom: 16px; display: block; }
.featured-service h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 16px; }
.featured-service > div:first-child p { color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.fs-bullets { display: flex; flex-direction: column; gap: 14px; }
.fs-bullet { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: 8px; padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.fs-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.fs-bullet h5 { color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.fs-bullet p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.service-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-mini { background: var(--navy-light); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 36px 32px; transition: border-color 0.25s; }
.service-mini:hover { border-color: rgba(196,133,58,0.3); }
.sm-icon { font-size: 2rem; margin-bottom: 16px; }
.service-mini h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 10px; }
.service-mini p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.75; margin-bottom: 24px; }
.sm-bullets { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.sm-bullet { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.sm-bullet::before { content: ''; width: 14px; height: 1.5px; background: var(--amber); flex-shrink: 0; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .section-pad { padding: 80px 28px; }
  .service-row { grid-template-columns: 1fr; }
  .srv-content { padding: 48px 28px; }
  .service-row.rev .srv-content { order: 1; padding: 48px 28px; }
  .service-row.rev .srv-visual { order: 2; border-right: none; border-top: 1px solid var(--border-dark); }
  .srv-visual { border-left: none; border-top: 1px solid var(--border-dark); min-height: 180px; }
  .problem-section { grid-template-columns: 1fr; }
  .problem-left, .problem-right { padding: 72px 48px; }
  .about-split { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 72px 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-listing-featured { grid-template-columns: 1fr; }
  .featured-service { grid-template-columns: 1fr; }
  .service-pair { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .who-row { grid-template-columns: 60px 1fr; }
  .who-desc { display: none; }
  .fit-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr 1fr; }
  .deliverable-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid rgba(15,30,45,0.1); }
  .deliverables-4col { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .section-pad { padding: 64px 24px; }
  .nav-links, .nav-cta .btn, .nav-social { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 24px; height: 100px; }
  .nav-logo-icon { height: 80px; }
  .mobile-menu { top: 100px; }
  .footer-grid { padding: 0 24px; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .why-grid, .channel-grid { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(15,30,45,0.1); }
  .deliverable-grid { grid-template-columns: 1fr; }
  .deliverables-4col { grid-template-columns: 1fr !important; }
  .problem-left, .problem-right { padding: 56px 28px; }
  .about-left, .about-right { padding: 56px 28px; }
  .featured-service { padding: 32px; }
  .newsletter-form { flex-direction: column; }
  .blf-body { padding: 36px 28px; }
  .blog-article-inner { padding: 48px 24px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
  .who-row { grid-template-columns: 1fr; gap: 8px; }
  .footer-grid { padding: 0; }
}
/* ============== CASE STUDIES ============== */
.cs-card { background: var(--navy-light); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; transition: border-color 0.25s; }
.cs-card:hover { border-color: rgba(196,133,58,0.3); }
.cs-header { padding: 40px 48px; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; border-bottom: 1px solid var(--border-dark); flex-wrap: wrap; }
.cs-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); border: 1px solid rgba(196,133,58,0.3); padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
.cs-card h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--white); margin-bottom: 4px; }
.cs-industry { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin: 0; }
.cs-metrics { display: flex; gap: 32px; flex-shrink: 0; }
.cs-metric { text-align: center; }
.cs-metric strong { display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: 6px; }
.cs-metric span { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }
.cs-body { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.cs-col { padding: 32px 36px; border-right: 1px solid var(--border-dark); }
.cs-col:last-child { border-right: none; }
.cs-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 12px; }
.cs-col p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 0; }
@media (max-width: 1024px) {
  .cs-header { flex-direction: column; padding: 32px; }
  .cs-body { grid-template-columns: 1fr; }
  .cs-col { border-right: none; border-bottom: 1px solid var(--border-dark); padding: 24px 32px; }
  .cs-col:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .cs-header { padding: 24px; }
  .cs-metrics { gap: 24px; }
  .cs-metric strong { font-size: 2rem; }
  .cs-col { padding: 20px 24px; }
}

/* ============== FAQ ============== */
.faq-category { margin-bottom: 48px; }
.faq-category:last-child { margin-bottom: 0; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 0; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--text); text-align: left; gap: 16px; transition: color 0.2s; }
.faq-question:hover { color: var(--amber); }
.faq-question svg { flex-shrink: 0; transition: transform 0.25s; color: var(--amber); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-answer { max-height: 800px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.925rem; color: var(--text-mid); line-height: 1.8; margin: 0; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
