/* ============================================================
   Nestor Forge — styles.css
   Shared stylesheet for all pages.
   Apple-inspired: bold type, generous space, one message per viewport.
   ============================================================ */

/* VARIABLES */
:root {
  --navy-deep:   #1B2047;
  --navy-mid:    #2D3470;
  --navy-light:  #3D4A5C;
  --gold:        #B8952A;
  --gold-light:  #D4AE45;
  --gray-warm:   #C4BDB5;
  --gray-light:  #EDEAE5;
  --white:       #FFFFFF;
  --text-muted:  #6B7A90;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--gray-light); color: var(--navy-deep); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 52px; height: 76px; background: var(--navy-deep); border-bottom: 1px solid rgba(184,149,42,0.25); }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-nestor { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: 3px; text-transform: uppercase; }
.nav-forge { font-family: var(--font-display); font-size: 11px; font-weight: 400; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; display: flex; align-items: center; gap: 5px; }
.nav-forge::before, .nav-forge::after { content: '\2014'; opacity: 0.5; font-size: 9px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy-deep) !important; padding: 10px 22px; border-radius: 2px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy-deep) !important; }

/* HAMBURGER */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.75); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 76px; left: 0; right: 0; background: var(--navy-deep); border-bottom: 1px solid rgba(184,149,42,0.2); z-index: 99; padding: 24px 24px 32px; flex-direction: column; gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta { background: var(--gold); color: var(--navy-deep) !important; padding: 14px 22px; border-radius: 2px; text-align: center; font-weight: 600; margin-top: 16px; border-bottom: none; }

/* PAGE HERO — Apple-style full-viewport opening statement */
.page-hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 76px 52px 0; }
.page-hero.dark { background: var(--navy-deep); }
.page-hero.mid { background: var(--navy-mid); }
.hero-pattern { position: absolute; inset: 0; pointer-events: none; }
@keyframes heroSlideUp { from { clip-path: inset(110% 0 0 0); transform: translateY(16px); } to { clip-path: inset(0% 0 -30% 0); transform: translateY(0); } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.page-hero.home .hero-line-1 { display: inline-block; animation: heroSlideUp 0.75s cubic-bezier(0.22,1,0.36,1) both; }
.page-hero.home .hero-headline em { display: inline-block; animation: heroSlideUp 0.75s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.page-hero.home .hero-sub { animation: heroFadeUp 0.7s ease 0.5s both; }
.page-hero.home .hero-actions { animation: heroFadeUp 0.6s ease 0.75s both; }
.page-hero.home .hero-stat-line { animation: heroFadeUp 0.5s ease 0.95s both; }
@media (prefers-reduced-motion: reduce) { .page-hero.home .hero-line-1, .page-hero.home .hero-headline em, .page-hero.home .hero-sub, .page-hero.home .hero-actions, .page-hero.home .hero-stat-line { animation: none; } }
.hero-glow { position: absolute; width: 900px; height: 900px; background: radial-gradient(circle, rgba(23,36,66,0.8) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1240px; margin: 0 auto; padding: 80px 0 60px; text-align: center; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-headline { font-family: var(--font-display); font-size: clamp(52px, 7vw, 96px); font-weight: 700; line-height: 1.2; color: var(--white); margin-bottom: 28px; padding-bottom: 0.05em; }
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.52); margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 72px; }

/* Hero stats (homepage) */
.hero-stats-intro { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; text-align: center; margin-bottom: 16px; }
.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(184,149,42,0.15); border-bottom: 1px solid rgba(184,149,42,0.15); width: 100%; max-width: 900px; margin: 0 auto; }
.hero-stat { flex: 1; padding: 28px 24px; text-align: center; border-right: 1px solid rgba(184,149,42,0.12); position: relative; cursor: default; transition: background 0.3s; }
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(184,149,42,0.05); }
.hero-stat-num { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.hero-stat-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; }
.hero-stat-bar { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--gold); width: 0; transition: width 1.2s ease; }
.hero-stat.counted .hero-stat-bar { width: 100%; }

/* Page hero — subpage variant (shorter, no pattern) */
.page-hero.sub { min-height: 70vh; }
.page-hero.sub .hero-headline { font-size: clamp(44px, 6vw, 84px); }
.page-hero.sub .hero-sub { max-width: 640px; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--navy-deep); padding: 15px 34px; font-size: 14px; font-weight: 600; font-family: var(--font-body); border: none; border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.75); padding: 15px 34px; font-size: 14px; font-weight: 500; font-family: var(--font-body); border: 1px solid rgba(255,255,255,0.18); border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-submit { background: var(--gold); color: var(--navy-deep); border: none; border-radius: 2px; padding: 17px; font-size: 15px; font-weight: 700; font-family: var(--font-body); cursor: pointer; transition: background 0.2s; width: 100%; }
.btn-submit:hover { background: var(--gold-light); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* "Learn more" link — Apple-style inline CTA */
.link-more { font-size: 18px; font-weight: 500; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.link-more:hover { gap: 14px; }
.link-more::after { content: '\2192'; font-size: 20px; transition: transform 0.2s; }
.link-more.light { color: var(--gold); }

/* TRUST BAR */
.trust-bar { background: var(--navy-mid); padding: 22px 52px; display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; border-bottom: 1px solid rgba(184,149,42,0.15); }
.trust-lbl { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }
.trust-items { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; }
.trust-item { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 7px; }
.trust-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* TRUST BAR V2 */
.trust-bar-v2 { background: var(--navy-light); border-top: 1px solid var(--gold); border-bottom: 1px solid rgba(184,149,42,0.15); padding: 28px 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.trust-col { display: flex; flex-direction: column; gap: 10px; }
.trust-col-logos { align-items: flex-start; }
.trust-col-badge { align-items: center; }
.trust-col-pills { align-items: flex-end; flex-direction: row; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.trust-logo-ribbon { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.trust-logo { width: 32px; height: 32px; object-fit: contain; filter: grayscale(1) brightness(0.7); transition: filter 0.2s; }
.trust-logo:hover { filter: grayscale(0) brightness(1); }
.trust-badge { width: 120px; height: auto; object-fit: contain; filter: grayscale(1) brightness(0.7); }
.trust-pill { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.55); border: 1px solid rgba(184,149,42,0.25); padding: 5px 13px; border-radius: 2px; white-space: nowrap; }

/* PLACEHOLDER ASSET */
.placeholder-asset { background: rgba(61,74,92,0.35); border: 1px dashed rgba(61,74,92,0.8); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 9px; font-family: var(--font-body); text-align: center; }

/* SECTIONS — shared structure */
section { padding: 140px 52px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.section-eyebrow.center { justify-content: center; }
.section-eyebrow.center::after { content: ''; width: 22px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 54px); font-weight: 700; line-height: 1.08; margin-bottom: 20px; color: var(--navy-deep); }
.section-title.light { color: var(--white); }
.section-sub { font-size: 17px; line-height: 1.75; color: var(--text-muted); max-width: 580px; margin-bottom: 60px; }
.section-sub.light { color: rgba(255,255,255,0.52); }

/* SHOWCASE CARDS — Apple-style homepage posters */
.showcase { padding: 0; }
.showcase-card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 140px 52px; min-height: 80vh; position: relative; overflow: hidden; }
.showcase-card.dark { background: var(--navy-deep); }
.showcase-card.mid { background: var(--navy-mid); }
.showcase-card.light-bg { background: var(--white); }
.showcase-card.gray { background: var(--gray-light); }
.showcase-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.showcase-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.showcase-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px); font-weight: 700; line-height: 1.06; margin-bottom: 24px; }
.showcase-title.light { color: var(--white); }
.showcase-title.dark-text { color: var(--navy-deep); }
.showcase-desc { font-size: 18px; line-height: 1.8; max-width: 600px; margin: 0 auto 40px; }
.showcase-desc.light { color: rgba(255,255,255,0.5); }
.showcase-desc.dark-text { color: var(--text-muted); }
.showcase-highlights { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.showcase-highlight { text-align: center; }
.showcase-highlight-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.showcase-highlight-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }
.showcase-highlight-label.dark-text { color: var(--text-muted); }
.showcase-tags { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.showcase-tag { font-size: 13px; font-weight: 500; padding: 8px 20px; border-radius: 2px; border: 1px solid rgba(184,149,42,0.25); color: var(--gold); background: rgba(184,149,42,0.06); }

/* SERVICES — card grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(27,32,71,0.09); }
.svc-card { padding: 44px 36px; border-right: 1px solid rgba(27,32,71,0.07); border-bottom: 1px solid rgba(27,32,71,0.07); position: relative; overflow: hidden; transition: background 0.3s; cursor: default; display: flex; flex-direction: column; }
.svc-card:hover { background: var(--gray-light); }
.svc-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: transform 0.35s ease; }
.svc-card:hover::before { transform: scaleY(1); }
.svc-bg-num { position: absolute; top: 16px; right: 22px; font-family: var(--font-display); font-size: 60px; font-weight: 700; color: rgba(27,32,71,0.04); line-height: 1; user-select: none; transition: color 0.3s; }
.svc-card:hover .svc-bg-num { color: rgba(184,149,42,0.07); }
.svc-ico { width: 44px; height: 44px; color: var(--gold); margin-bottom: 22px; }
.svc-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy-deep); margin-bottom: 10px; line-height: 1.2; }
.svc-desc { font-size: 14px; line-height: 1.75; color: var(--text-muted); }
.svc-reveal { margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 6px; opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; }
.svc-reveal::after { content: '\2192'; }
.svc-card:hover .svc-reveal { opacity: 1; transform: translateY(0); }
.svc-price { font-size: 0.78rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; margin-top: auto; padding-top: 0.75rem; }

/* Services — immersive section layout (services page) */
.svc-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 120px 0; border-bottom: 1px solid rgba(27,32,71,0.08); }
.svc-section:last-child { border-bottom: none; }
.svc-section.reverse { direction: rtl; }
.svc-section.reverse > * { direction: ltr; }
.svc-section-num { font-family: var(--font-display); font-size: 120px; font-weight: 700; color: rgba(27,32,71,0.04); line-height: 1; margin-bottom: 16px; }
.svc-section-num.on-dark { color: rgba(184,149,42,0.08); }
.svc-section-title { font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 48px); font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
.svc-section-title.light { color: var(--white); }
.svc-section-desc { font-size: 16px; line-height: 1.85; margin-bottom: 24px; }
.svc-section-desc.light { color: rgba(255,255,255,0.52); }
.svc-section-desc.dark { color: var(--text-muted); }
.svc-section-price { font-size: 15px; font-weight: 600; color: var(--gold); margin-bottom: 28px; }
.svc-section-visual { display: flex; align-items: center; justify-content: center; }
.svc-section-icon { width: 180px; height: 180px; color: var(--gold); opacity: 0.15; }

/* AGENTS — tabbed */
.agent-tabs { display: flex; border-bottom: 1px solid rgba(184,149,42,0.18); }
.agent-tab { flex: 1; padding: 20px 26px; background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer; text-align: left; position: relative; top: 1px; transition: all 0.2s; }
.tab-num { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(184,149,42,0.3); margin-bottom: 5px; transition: color 0.2s; }
.tab-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: rgba(255,255,255,0.3); transition: color 0.2s; display: block; }
.agent-tab:hover .tab-name { color: rgba(255,255,255,0.6); }
.agent-tab.active { border-bottom-color: var(--gold); }
.agent-tab.active .tab-num { color: var(--gold); }
.agent-tab.active .tab-name { color: var(--white); }
.agent-panel { display: none; padding: 60px 0 16px; }
.agent-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; animation: panelIn 0.4s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.panel-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.panel-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.panel-title { font-family: var(--font-display); font-size: clamp(30px, 3vw, 48px); font-weight: 700; color: var(--white); margin-bottom: 18px; line-height: 1.08; }
.panel-body { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.52); margin-bottom: 32px; }
.panel-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.panel-tag { font-size: 11px; font-weight: 500; color: var(--gold); background: rgba(184,149,42,0.1); border: 1px solid rgba(184,149,42,0.22); padding: 5px 13px; border-radius: 2px; }
.panel-cta { display: inline-block; background: var(--gold); color: var(--navy-deep); padding: 13px 30px; font-size: 13px; font-weight: 600; font-family: var(--font-body); border-radius: 2px; text-decoration: none; transition: background 0.2s; }
.panel-cta:hover { background: var(--gold-light); }
.panel-feats { list-style: none; }
.panel-feat { display: flex; gap: 18px; align-items: flex-start; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.panel-feat:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.feat-ico { width: 38px; height: 38px; flex-shrink: 0; background: rgba(184,149,42,0.1); border: 1px solid rgba(184,149,42,0.2); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.feat-h { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.feat-p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.38); }
.data-flow { margin-top: 52px; background: rgba(255,255,255,0.03); border: 1px solid rgba(184,149,42,0.13); border-radius: 3px; padding: 28px 36px; }
.flow-head { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; text-align: center; }
.flow-nodes { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.flow-node { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 2px; white-space: nowrap; }
.flow-arr { color: var(--gold); font-size: 15px; opacity: 0.65; }
.flow-sep { color: rgba(255,255,255,0.1); font-size: 20px; margin: 0 10px; }

/* HOW — vertical timeline */
.timeline { position: relative; max-width: 860px; }
.timeline::before { content: ''; position: absolute; left: 39px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, var(--gold), rgba(184,149,42,0.04)); }
.t-step { display: flex; gap: 48px; align-items: flex-start; margin-bottom: 60px; }
.t-step:last-child { margin-bottom: 0; }
.t-num { width: 80px; height: 80px; background: var(--gold); color: var(--navy-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 30px; font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 0 0 8px var(--navy-mid); }
.t-body { padding-top: 18px; }
.t-title { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.t-desc { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.52); max-width: 540px; }
.t-badge { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 600; color: var(--gold); background: rgba(184,149,42,0.1); border: 1px solid rgba(184,149,42,0.22); padding: 4px 13px; border-radius: 2px; }

/* IMPACT */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(27,32,71,0.1); margin-bottom: 48px; }
.stat-block { background: var(--navy-deep); padding: 48px 36px; position: relative; border-right: 1px solid rgba(255,255,255,0.05); }
.stat-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.stat-num { font-family: var(--font-display); font-size: 68px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-unit { font-size: 32px; font-weight: 400; opacity: 0.6; margin-left: 2px; }
.stat-lbl { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.stat-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.42); margin-bottom: 12px; }
.stat-src { font-size: 11px; color: rgba(184,149,42,0.55); font-style: italic; }
.stat-src a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(184,149,42,0.3); transition: color 0.2s, border-color 0.2s; }
.stat-src a:hover { color: rgba(184,149,42,0.85); border-color: rgba(184,149,42,0.65); }
.impact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.i-card { background: var(--white); border: 1px solid rgba(27,32,71,0.08); border-radius: 3px; padding: 34px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.i-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(27,32,71,0.09); }
.i-card-ico { width: 44px; height: 44px; background: rgba(184,149,42,0.08); border: 1px solid rgba(184,149,42,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 18px; }
.i-card-head { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy-deep); line-height: 1.3; margin-bottom: 12px; }
.i-card-body { font-size: 13px; line-height: 1.75; color: var(--text-muted); margin-bottom: 14px; }
.i-card-src { font-size: 11px; color: rgba(61,74,92,0.5); font-style: italic; border-top: 1px solid rgba(27,32,71,0.06); padding-top: 12px; }
.i-card-src a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(61,74,92,0.2); transition: color 0.2s, border-color 0.2s; }
.i-card-src a:hover { color: rgba(61,74,92,0.75); border-color: rgba(61,74,92,0.45); }
.impact-callout { background: var(--navy-deep); border: 1px solid rgba(184,149,42,0.2); border-radius: 3px; padding: 52px; display: grid; grid-template-columns: auto 1px 1fr; gap: 52px; align-items: center; }
.callout-num { font-family: var(--font-display); font-size: 54px; font-weight: 700; color: var(--gold); line-height: 1; white-space: nowrap; }
.callout-lbl { font-size: 13px; color: rgba(255,255,255,0.38); margin-top: 7px; }
.callout-div { width: 1px; height: 80px; background: rgba(184,149,42,0.18); }
.callout-body p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.52); }

/* SOLUTION LADDER */
.ladder-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 60px; align-items: end; }
.ladder-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(184,149,42,0.1); }
.l-item { padding: 40px; display: flex; gap: 24px; align-items: flex-start; border-right: 1px solid rgba(184,149,42,0.07); border-bottom: 1px solid rgba(184,149,42,0.07); transition: background 0.3s; cursor: default; }
.l-item:hover { background: rgba(255,255,255,0.03); }
.l-num { font-family: var(--font-display); font-size: 50px; font-weight: 700; color: rgba(184,149,42,0.1); line-height: 1; flex-shrink: 0; width: 52px; transition: color 0.3s; }
.l-item:hover .l-num { color: rgba(184,149,42,0.22); }
.l-when { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; opacity: 0.75; }
.l-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.l-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.38); }
.l-badges { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.l-badge { font-size: 11px; color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 3px 9px; border-radius: 2px; }
.l-item.full { grid-column: 1 / -1; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(27,32,71,0.08); }
.v-card { padding: 44px 36px; border-right: 1px solid rgba(27,32,71,0.07); border-bottom: 1px solid rgba(27,32,71,0.07); position: relative; overflow: hidden; transition: background 0.3s; }
.v-card:hover { background: var(--gray-light); }
.v-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.v-card:hover::after { transform: scaleX(1); }
.v-num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 14px; letter-spacing: 1px; }
.v-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy-deep); margin-bottom: 8px; }
.v-motto { font-family: var(--font-display); font-size: 14px; font-style: italic; color: var(--navy-mid); margin-bottom: 12px; line-height: 1.5; }
.v-desc { font-size: 13px; line-height: 1.75; color: var(--text-muted); }

/* FAQ */
.faq-wrap { max-width: 780px; }
.faq-item { border-bottom: 1px solid rgba(27,32,71,0.1); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left; gap: 24px; }
.faq-q { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy-deep); line-height: 1.3; }
.faq-ico { width: 28px; height: 28px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--navy-deep); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-ans { font-size: 15px; line-height: 1.8; color: var(--text-muted); max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-ans { max-height: 320px; padding-bottom: 24px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.contact-motto { font-family: var(--font-display); font-size: 18px; font-style: italic; color: var(--gold); margin-bottom: 26px; line-height: 1.55; }
.contact-body { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.72); margin-bottom: 42px; }
.contact-deets { list-style: none; }
.contact-deets li { font-size: 15px; color: rgba(255,255,255,0.82); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; gap: 14px; }
.contact-deets li strong { color: var(--gold); min-width: 76px; font-weight: 500; }
.contact-deets a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-deets a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-lbl { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.form-input, .form-textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.18); border-radius: 2px; padding: 13px 16px; font-size: 15px; font-family: var(--font-body); color: var(--white); outline: none; transition: border-color 0.2s; width: 100%; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.38); }
.form-textarea { resize: vertical; min-height: 112px; }
.svc-sel { display: flex; flex-direction: column; gap: 9px; }
.svc-opt { display: flex; align-items: flex-start; gap: 13px; padding: 13px 15px; border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.svc-opt:hover { border-color: rgba(184,149,42,0.35); }
.svc-opt.selected { border-color: var(--gold); background: rgba(184,149,42,0.07); }
.svc-opt input[type="radio"] { display: none; }
.svc-radio { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.22); border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.svc-opt.selected .svc-radio { border-color: var(--gold); }
.svc-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; opacity: 0; transition: opacity 0.2s; }
.svc-opt.selected .svc-dot { opacity: 1; }
.svc-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.72); margin-bottom: 2px; }
.svc-sub { font-size: 12px; color: rgba(255,255,255,0.28); }
.form-note { font-size: 12px; color: rgba(255,255,255,0.22); text-align: center; margin-top: 8px; }
.form-success { display: none; background: rgba(184,149,42,0.1); border: 1px solid rgba(184,149,42,0.3); border-radius: 3px; padding: 32px; text-align: center; }
.form-success.show { display: block; }
.form-success-ico { font-size: 32px; margin-bottom: 12px; }
.form-success-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.form-success-body { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* CTA STRIP — full-width call to action between sections */
.cta-strip { padding: 100px 52px; text-align: center; position: relative; overflow: hidden; }
.cta-strip.dark { background: var(--navy-deep); }
.cta-strip.gold-border { border-top: 1px solid rgba(184,149,42,0.2); border-bottom: 1px solid rgba(184,149,42,0.2); }
.cta-strip-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.cta-strip-sub { font-size: 17px; color: rgba(255,255,255,0.45); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* FOOTER */
footer { background: var(--navy-deep); border-top: 1px solid rgba(184,149,42,0.15); padding: 40px 52px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 4px; letter-spacing: 2px; text-transform: uppercase; }
.footer-tag { font-size: 12px; color: rgba(255,255,255,0.28); font-style: italic; }
.footer-links { list-style: none; display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.38); text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.16); font-style: italic; margin-top: 5px; letter-spacing: 0.3px; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* SCROLL TO TOP */
.scroll-top { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--gold); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.2s; z-index: 90; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-2px); background: var(--gold-light); }
.scroll-top svg { color: var(--navy-deep); }


/* PAGE HERO — light variant (services page) */
.page-hero.light { background: var(--gray-light); }
.page-hero.light .hero-headline { color: var(--navy-deep); }
.page-hero.light .hero-sub { color: var(--text-muted); }
.page-hero.light .hero-eyebrow { color: var(--gold); }

.page-hero.light .hero-glow { background: radial-gradient(circle, rgba(237,234,229,0.95) 0%, transparent 70%); }
.page-hero.light .btn-ghost { color: rgba(27,32,71,0.65); border-color: rgba(27,32,71,0.22); }
.page-hero.light .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* SERVICES — overview grid (all 6 at a glance) */
.svc-overview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(27,32,71,0.08); border: 1px solid rgba(27,32,71,0.08); }
.svc-overview-card { background: var(--white); padding: 36px 32px; position: relative; overflow: hidden; transition: background 0.3s; display: flex; flex-direction: column; text-decoration: none; }
.svc-overview-card:hover { background: var(--gray-light); }
.svc-overview-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.32s; }
.svc-overview-card:hover::before { transform: scaleX(1); }
.svc-ov-num { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.svc-ov-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy-deep); margin-bottom: 14px; line-height: 1.2; }
.svc-ov-examples { list-style: none; margin-bottom: 16px; flex: 1; }
.svc-ov-examples li { font-size: 13px; color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid rgba(27,32,71,0.05); display: flex; gap: 10px; line-height: 1.5; }
.svc-ov-examples li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.svc-ov-price { font-size: 13px; font-weight: 600; color: var(--gold); margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(184,149,42,0.15); }

/* SERVICES — condensed section variant (overrides 120px inner padding) */
.svc-section.condensed { padding: 40px 0; }

/* SERVICES — detail columns (replaces SVG visual) */
.svc-detail-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.svc-col-head { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.svc-col-head.on-dark { color: rgba(184,149,42,0.75); }
.svc-list { list-style: none; }
.svc-list li { font-size: 13px; line-height: 1.65; padding: 9px 0; border-bottom: 1px solid rgba(27,32,71,0.06); display: flex; gap: 10px; color: var(--text-muted); }
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.svc-list.on-dark li { color: rgba(255,255,255,0.45); border-bottom-color: rgba(255,255,255,0.06); }
.svc-list.on-dark li:last-child { border-bottom: none; }

/* SERVICES — tier table (AI Guidance Partner) */
.svc-tier-wrap { margin: 24px 0 28px; overflow-x: auto; }
.svc-tier-table { width: 100%; border-collapse: collapse; }
.svc-tier-table th { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); padding: 10px 14px; text-align: left; border-bottom: 1px solid rgba(184,149,42,0.2); white-space: nowrap; }
.svc-tier-table td { font-size: 13px; color: var(--text-muted); padding: 13px 14px; border-bottom: 1px solid rgba(27,32,71,0.06); line-height: 1.55; vertical-align: top; }
.svc-tier-table tr:last-child td { border-bottom: none; }
.tier-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--navy-deep); display: block; margin-bottom: 2px; }
.tier-price { font-size: 13px; font-weight: 600; color: var(--gold); white-space: nowrap; }
.svc-tier-note { font-size: 12px; color: var(--text-muted); font-style: italic; margin-top: 12px; }

/* AI SUITE — day-in-the-life timeline */
.day-timeline { margin-top: 80px; padding-top: 64px; border-top: 1px solid rgba(184,149,42,0.14); }
.day-tl-head { font-family: var(--font-display); font-size: clamp(26px,3vw,40px); font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.1; }
.day-tl-sub { font-size: 15px; color: rgba(255,255,255,0.42); margin-bottom: 52px; max-width: 520px; }
.day-tl-list { display: flex; flex-direction: column; border-left: 1px solid rgba(184,149,42,0.22); margin-left: 24px; }
.day-tl-item { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 22px 0 22px 32px; border-bottom: 1px solid rgba(255,255,255,0.04); position: relative; }
.day-tl-item:last-child { border-bottom: none; }
.day-tl-item::before { content: ''; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: absolute; left: -5px; top: 28px; box-shadow: 0 0 0 4px var(--navy-deep); }
.day-tl-time { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gold); line-height: 1.5; padding-top: 2px; }
.day-tl-agent { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(184,149,42,0.55); margin-bottom: 4px; }
.day-tl-desc { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.7; }

/* AI SUITE — industries strip */
.industries-strip { margin-top: 56px; padding: 40px 0 0; border-top: 1px solid rgba(184,149,42,0.12); }
.industries-label { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.industries-list { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-tag { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.52); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 9px 20px; border-radius: 2px; transition: border-color 0.2s, color 0.2s; cursor: default; }
.industry-tag:hover { border-color: rgba(184,149,42,0.4); color: var(--gold); }

/* FINAL CTA */
.final-cta { background: var(--navy-deep); border-top: 1px solid rgba(184,149,42,0.2); border-bottom: 1px solid rgba(184,149,42,0.2); padding: 100px 52px; text-align: center; }
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.final-cta-sub { font-size: 17px; color: rgba(255,255,255,0.45); margin-bottom: 40px; line-height: 1.75; }
.final-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ABOUT TEASER — two-column homepage block */
.about-teaser { background: var(--navy-mid); padding: 100px 52px; }
.about-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-teaser-left { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.about-teaser-body { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.52); max-width: 380px; }
.about-teaser-right { display: flex; flex-direction: column; gap: 20px; }
.about-person-card { display: flex; gap: 20px; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(184,149,42,0.12); border-radius: 3px; padding: 20px 24px; }
.about-headshot { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.about-person-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.about-person-title { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.about-person-bio { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.42); }

/* PROOF — case study two-card layout */
.proof-section { background: var(--gray-light); padding: 100px 52px; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; margin-bottom: 24px; }
.proof-card { background: var(--white); border: 1px solid rgba(27,32,71,0.09); border-radius: 3px; padding: 40px 36px; }
.proof-card-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.proof-card-name { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--navy-deep); margin-bottom: 14px; line-height: 1.15; }
.proof-card-desc { font-size: 14px; color: var(--text-muted); font-style: italic; line-height: 1.7; }
.proof-nda { font-size: 12px; color: var(--text-muted); font-style: italic; }

/* SOLUTION LADDER — homepage vertical timeline */
.ladder-section { background: var(--white); padding: 100px 52px; }
.rung-list { position: relative; max-width: 680px; margin-top: 48px; padding-left: 56px; }
.rung-list::before { content: ''; position: absolute; left: 19px; top: 12px; bottom: 12px; width: 1px; background: linear-gradient(to bottom, var(--gold), rgba(184,149,42,0.08)); }
.rung { display: flex; gap: 32px; align-items: flex-start; position: relative; }
.rung + .rung { margin-top: 36px; }
.rung-num { width: 40px; height: 40px; background: var(--gold); color: var(--navy-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; flex-shrink: 0; position: absolute; left: -56px; top: 0; box-shadow: 0 0 0 6px var(--white); }
.rung-body { padding-top: 6px; }
.rung-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy-deep); margin-bottom: 4px; line-height: 1.2; }
.rung-meta { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* DIFFERENTIATORS — three-column why section */
.diff-section { background: var(--navy-mid); padding: 100px 52px; }
.diff-section .section-eyebrow { color: var(--gold); margin-bottom: 56px; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.diff-col { border-top: 2px solid rgba(184,149,42,0.3); padding-top: 28px; }
.diff-head { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.diff-body { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.48); }

/* ENGAGEMENTS — 2x2 card grid (homepage) */
.engagements-section { background: var(--white); padding: 100px 52px; }
.eng-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.eng-card { background: var(--gray-light); border: 1px solid rgba(27,32,71,0.09); border-radius: 3px; padding: 40px 36px; display: flex; flex-direction: column; position: relative; transition: box-shadow 0.3s; }
.eng-card:hover { box-shadow: 0 8px 32px rgba(27,32,71,0.08); }
.eng-card-primary { border-color: var(--gold); background: var(--white); }
.eng-start-pill { position: absolute; top: 20px; right: 20px; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy-deep); background: var(--gold); padding: 4px 11px; border-radius: 2px; }
.eng-num { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.eng-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy-deep); margin-bottom: 8px; line-height: 1.15; }
.eng-price { font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 16px; }
.eng-desc { font-size: 14px; line-height: 1.75; color: var(--text-muted); flex: 1; margin-bottom: 28px; }
.eng-cta { display: inline-block; background: var(--gold); color: var(--navy-deep); padding: 11px 26px; font-size: 13px; font-weight: 600; font-family: var(--font-body); border-radius: 2px; text-decoration: none; transition: background 0.2s; align-self: flex-start; }
.eng-cta:hover { background: var(--gold-light); }
.eng-cta-ghost { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 13px; font-weight: 500; font-family: var(--font-body); text-decoration: none; align-self: flex-start; transition: gap 0.2s; }
.eng-cta-ghost::after { content: '\2192'; }
.eng-cta-ghost:hover { gap: 10px; }

/* HOMEPAGE — showcase service mini-grid */
.showcase-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(27,32,71,0.1); border: 1px solid rgba(27,32,71,0.1); width: 100%; max-width: 860px; margin: 0 auto 40px; }
.showcase-svc-card { background: var(--white); padding: 24px 22px; text-align: left; transition: background 0.25s; }
.showcase-svc-card:hover { background: var(--gray-light); }
.showcase-svc-num { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.showcase-svc-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy-deep); margin-bottom: 6px; line-height: 1.25; }
.showcase-svc-ex { font-size: 12px; color: var(--text-muted); line-height: 1.55; margin-bottom: 8px; }
.showcase-svc-price { font-size: 11px; font-weight: 600; color: var(--gold); }

/* ABOUT — process section on white background */
.t-num.on-light { box-shadow: 0 0 0 8px var(--white); }
.t-title.on-light { color: var(--navy-deep); }
.t-desc.on-light { color: var(--text-muted); }
.t-badge.on-light { color: var(--gold); background: rgba(184,149,42,0.08); border-color: rgba(184,149,42,0.2); }

/* CONTACT — what happens next */
.next-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(184,149,42,0.14); border: 1px solid rgba(184,149,42,0.14); }
.next-step { background: var(--navy-deep); padding: 40px 32px; }
.next-step-num { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: rgba(184,149,42,0.18); line-height: 1; margin-bottom: 16px; }
.next-step-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.next-step-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.4); }

/* HOMEPAGE — single sourced stat line (replaces animated counters) */
.hero-stat-line { font-size: 13px; color: rgba(255,255,255,0.32); margin-top: 32px; line-height: 1.6; }
.hero-stat-line strong { color: rgba(255,255,255,0.58); }
.hero-stat-line a { color: rgba(184,149,42,0.55); text-decoration: none; border-bottom: 1px solid rgba(184,149,42,0.2); transition: color 0.2s, border-color 0.2s; }
.hero-stat-line a:hover { color: var(--gold); border-color: var(--gold); }

/* HOMEPAGE — proof / case studies placeholder */
.proof-placeholder { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px auto 0; max-width: 640px; }
.proof-slot { border: 1px solid rgba(27,32,71,0.12); border-radius: 2px; padding: 28px 24px; background: var(--white); text-align: left; }
.proof-slot-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.proof-slot-desc { font-size: 13px; color: var(--text-muted); font-style: italic; }

/* ABOUT — team section */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 20px; }
.team-card { background: var(--navy-deep); border: 1px solid rgba(184,149,42,0.15); border-radius: 2px; padding: 40px 36px; }
.team-card-photo { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid rgba(184,149,42,0.35); margin-bottom: 20px; display: block; }
.team-card-role { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.team-card-name { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.1; }
.team-card-bio { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.52); }
.team-card-cert { display: inline-block; margin-top: 16px; font-size: 11px; font-weight: 600; color: var(--gold); background: rgba(184,149,42,0.1); border: 1px solid rgba(184,149,42,0.22); padding: 4px 13px; border-radius: 2px; }

/* CONTACT — select field */
.form-select { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.18); border-radius: 2px; padding: 13px 16px; font-size: 15px; font-family: var(--font-body); color: var(--white); outline: none; transition: border-color 0.2s; width: 100%; appearance: none; cursor: pointer; }
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--navy-deep); color: var(--white); }

/* SERVICES — 2-column overview grid override (4 items as 2×2) */
.svc-overview-grid.cols-2 { grid-template-columns: repeat(2,1fr); }

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 80px 24px; }
  .page-hero { padding: 76px 24px 0; }
  .page-hero.sub { min-height: 60vh; }
  .hero-inner { padding: 60px 0 40px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(184,149,42,0.12); }
  .trust-bar { padding: 20px 24px; gap: 14px; flex-direction: column; align-items: flex-start; }
  .trust-bar-v2 { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
  .trust-col-pills { justify-content: flex-start; }
  .showcase-card { padding: 80px 24px; min-height: 60vh; }
  .showcase-highlights { gap: 32px; }
  .services-grid, .values-grid { grid-template-columns: 1fr; }
  .svc-section { grid-template-columns: 1fr; gap: 40px; }
  .svc-section.reverse { direction: ltr; }
  .svc-section-icon { width: 120px; height: 120px; }
  .agent-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .agent-tabs { flex-direction: column; border-bottom: none; }
  .agent-tab { border-bottom: 1px solid rgba(184,149,42,0.12); top: 0; }
  .stat-grid, .impact-cards { grid-template-columns: 1fr; }
  .impact-callout { grid-template-columns: 1fr; gap: 28px; }
  .callout-div { display: none; }
  .ladder-grid, .ladder-intro { grid-template-columns: 1fr; }
  .l-item.full { grid-column: 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .scroll-top { bottom: 20px; right: 20px; }
  .cta-strip { padding: 72px 24px; }
  .svc-overview-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail-cols { grid-template-columns: 1fr; gap: 20px; }
  .showcase-svc-grid { grid-template-columns: 1fr 1fr; }
  .day-tl-list { margin-left: 12px; }
  .day-tl-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .next-steps { grid-template-columns: 1fr; }
  .day-timeline { margin-top: 52px; padding-top: 48px; }
  .final-cta { padding: 72px 24px; }
  .about-teaser { padding: 72px 24px; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 48px; }
  .proof-section { padding: 72px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .ladder-section { padding: 72px 24px; }
  .diff-section { padding: 72px 24px; }
  .diff-grid { grid-template-columns: 1fr; gap: 36px; }
  .engagements-section { padding: 72px 24px; }
  .eng-grid { grid-template-columns: 1fr; }
  .proof-placeholder { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .svc-overview-grid.cols-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .svc-overview-grid { grid-template-columns: 1fr; }
  .showcase-svc-grid { grid-template-columns: 1fr; }
}
