/* ============================================
   INSPIRITO — DESIGN SYSTEM
   Conversion-engineered websites + Google Search Ads
   ============================================ */

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

/* ── VARIABLES ─────────────────────────────── */
:root {
  /* Brand v9 — indigo + orange (logo-locked) */
  --ink:        #0E0726;        /* deep indigo (was #0E0726 ink) */
  --ink-2:      #1A1240;        /* slightly lighter indigo for body text */
  --ink-3:      #2D2055;        /* tertiary indigo */
  --paper:      #F7F4EE;        /* unchanged - cream paper */
  --paper-2:    #EDE8DD;        /* unchanged - secondary cream */
  --canvas:     #FFFFFF;
  --amber:      #F47A2F;        /* warm orange (was #F47A2F) */
  --amber-d:    #D86918;        /* darker orange for hover/dark text */
  --amber-l:    #FDE5D2;        /* light orange tint */
  --mid:        #5A4F75;        /* mid-tone with indigo undertone */
  --mid-2:      #8A82A1;        /* lighter mid-tone */
  --divider:    #D9D2C5;        /* unchanged */
  --divider-2:  #E8E2D4;        /* unchanged */
  --ff-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-wordmark:'Cormorant Garamond', 'Fraunces', Georgia, serif;
  --space-1: 0.5rem; --space-2: 1rem; --space-3: 1.5rem; --space-4: 2rem;
  --space-5: 2.4rem; --space-6: 3rem; --space-7: 4rem; --space-8: 5.5rem;
  --radius:    4px;
  --radius-lg: 10px;
  --shadow:    0 1px 2px rgba(14,7,38,0.04), 0 8px 24px rgba(14,7,38,0.08);
  --shadow-lg: 0 4px 12px rgba(14,7,38,0.10), 0 24px 60px rgba(14,7,38,0.14);
  --trans:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--trans); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4, h5, p, li, a, blockquote, td, th { overflow-wrap: break-word; }

/* ── TYPOGRAPHY ────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); letter-spacing: -0.035em; font-weight: 700; line-height: 1.05; }
h2 { font-size: clamp(1.85rem, 3.6vw, 3rem); letter-spacing: -0.03em; font-weight: 700; line-height: 1.1; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -0.02em; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; }

@media (max-width: 520px) {
  h1 { font-size: clamp(1.85rem, 7vw, 2.4rem); line-height: 1.1; }
  h2 { font-size: clamp(1.5rem, 5.6vw, 1.85rem); line-height: 1.18; }
  h3 { font-size: 1.2rem; }
}

p { font-size: 1rem; line-height: 1.7; color: var(--ink-2); }
p.lead { font-size: 1.18rem; line-height: 1.6; color: var(--ink-2); font-weight: 400; }
.eyebrow {
  font-family: var(--ff-body); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-d);
  display: inline-block;
}
.muted { color: var(--mid); }
.fine { font-size: 0.86rem; color: var(--mid); }
::selection { background: var(--ink); color: var(--paper); }

/* ── LAYOUT ────────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 520px) {
  .container, .container-narrow { padding: 0 18px; }
}
.section { padding: var(--space-7) 0; position: relative; }
.section-tight { padding: var(--space-6) 0; }
.section-loose { padding: var(--space-8) 0; }
@media (max-width: 760px) {
  .section { padding: var(--space-5) 0; }
  .section-tight { padding: var(--space-4) 0; }
  .section-loose { padding: var(--space-6) 0; }
}
.section-light { background: var(--canvas); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--paper); }
.section-dark p { color: rgba(247,244,238,0.78); }
.section-warm { background: var(--paper-2); }

/* ── TOP BAR ─────────────────────────────── */
.top-bar { background: var(--ink); color: var(--paper); font-size: 0.82rem; padding: 9px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 22px; }
.top-bar a { color: rgba(247,244,238,0.85); font-weight: 400; }
.top-bar a:hover { color: var(--amber); }
.top-bar-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(247,244,238,0.3); }
@media(max-width:780px) { .top-bar-left { display: none; } .top-bar-inner { justify-content: flex-end; } }

/* ── NAV ───────────────────────────────────── */
.nav {
  border-bottom: 1px solid var(--divider);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(247,244,238,0.92);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand {
  font-family: var(--ff-wordmark); font-size: 1.55rem; font-weight: 500;
  letter-spacing: -0.02em; color: var(--ink);
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.nav-brand img {
  height: 38px; width: auto; display: block;
}
@media(max-width:520px) {
  .nav-brand img { height: 32px; }
}
.nav-brand-dot { width: 7px; height: 7px; background: var(--amber); border-radius: 50%; display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links > li > a {
  font-size: 0.92rem; font-weight: 400; color: var(--ink-2);
  position: relative; padding: 6px 0;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--amber-d); }
.nav-links > li > a.active::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--amber);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ↓'; font-size: 0.72rem; margin-left: 3px; opacity: 0.5; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: -16px;
  background: var(--canvas); border: 1px solid var(--divider);
  border-radius: var(--radius-lg); padding: 10px;
  min-width: 240px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--trans);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 14px; font-size: 0.9rem;
  color: var(--ink-2); border-radius: var(--radius);
}
.dropdown-menu a:hover { background: var(--paper); color: var(--amber-d); }
.dropdown-menu a small { display: block; font-size: 0.74rem; color: var(--mid); font-weight: 400; margin-top: 2px; }
.nav-cta {
  background: var(--ink); color: var(--paper) !important;
  padding: 11px 20px; border-radius: 50px;
  font-size: 0.86rem !important; font-weight: 500 !important;
  letter-spacing: 0.01em; border: 1px solid var(--ink); transition: var(--trans);
}
.nav-cta:hover { background: var(--amber); border-color: var(--amber); color: var(--paper) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--ink); transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper);
  padding: 28px 24px calc(48px + env(safe-area-inset-bottom, 0px));
  height: calc(100dvh - 72px);
  flex-direction: column; gap: 4px;
  z-index: 99; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@supports not (height: 100dvh) {
  .nav-mobile { height: calc(100vh - 72px); }
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.05rem; padding: 13px 4px; border-bottom: 1px solid var(--divider); color: var(--ink);
}
.nav-mobile a.nm-cta {
  background: var(--ink); color: var(--paper); text-align: center;
  border-radius: 50px; margin-top: 22px; border-bottom: none;
  padding: 14px 20px; font-weight: 500;
}
.nav-mobile .nm-section {
  font-family: var(--ff-display); font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--mid); font-weight: 600;
  margin: 18px 0 4px; padding: 0; border: none;
}
@media(max-width:1080px) { .nav-links { display: none; } .hamburger { display: flex; } }
@media(max-width:520px) {
  .nav-inner { height: 64px; }
  .nav-mobile { height: calc(100dvh - 64px); padding: 22px 18px calc(48px + env(safe-area-inset-bottom, 0px)); }
  @supports not (height: 100dvh) {
    .nav-mobile { height: calc(100vh - 64px); }
  }
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 50px;
  font-size: 0.94rem; font-weight: 500; letter-spacing: 0.005em;
  transition: var(--trans); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--amber); border-color: var(--amber); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(244,122,47,0.25); }
.btn-amber { background: var(--amber); color: var(--paper); border-color: var(--amber); }
.btn-amber:hover { background: var(--amber-d); border-color: var(--amber-d); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink-3); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.94rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 3px;
  transition: var(--trans);
}
.btn-arrow .arrow-icon { display: inline-block; transition: var(--trans); }
.btn-arrow:hover { color: var(--amber-d); border-color: var(--amber); }
.btn-arrow:hover .arrow-icon { transform: translateX(4px); }

/* ── HERO ──────────────────────────────────── */
.hero { padding: 90px 0 110px; position: relative; overflow: hidden; }
.hero h1 { margin-bottom: 28px; max-width: 950px; }
.hero h1 .accent { font-style: italic; color: var(--amber-d); font-weight: 700; }
.hero p.lead { max-width: 620px; margin-bottom: 36px; font-size: 1.22rem; color: var(--ink-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 56px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--divider); padding-top: 36px; max-width: 880px;
}
.hero-stat { padding-right: 28px; border-right: 1px solid var(--divider); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--ff-display); font-size: 2rem; font-weight: 700;
  letter-spacing: -0.025em; color: var(--ink); line-height: 1.05;
  margin-bottom: 6px;
}
.hero-stat-num .num-accent { color: var(--amber-d); }
.hero-stat-label { font-size: 0.84rem; color: var(--mid); letter-spacing: 0.01em; }
@media(max-width:780px) {
  .hero { padding: 60px 0 70px; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; padding-top: 24px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--divider); padding: 0 0 18px 0; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ── DIAGNOSIS / PROBLEM SECTION ──────────── */
.diagnosis { padding: var(--space-7) 0; position: relative; }
.diagnosis-flag {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px; padding: 8px 16px;
  background: var(--amber-l); border-radius: 50px;
  font-size: 0.86rem; font-weight: 500; color: var(--amber-d);
}
.diagnosis-flag::before { content: ''; width: 8px; height: 8px; background: var(--amber); border-radius: 50%; }
.diagnosis h2 { margin-bottom: 28px; max-width: 920px; }
.diagnosis h2 em { font-style: italic; color: var(--amber-d); font-weight: 700; }
.diagnosis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; margin-top: 60px; }
.diagnosis-grid > div:first-child { display: flex; flex-direction: column; }
.diagnosis-grid > div:first-child .diagnosis-points { flex: 0 0 auto; }
.diagnosis-points { display: flex; flex-direction: column; gap: 28px; }
.diagnosis-point { display: grid; grid-template-columns: 32px 1fr; gap: 18px; }
.diagnosis-point-num {
  font-family: var(--ff-display); font-size: 1.4rem; font-style: italic;
  color: var(--amber-d); font-weight: 400; line-height: 1; padding-top: 6px;
}
.diagnosis-point h4 { margin-bottom: 6px; }
.diagnosis-point p { font-size: 0.95rem; color: var(--ink-2); }
@media(max-width:780px) { .diagnosis-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── METHODOLOGY ───────────────────────────── */
.methodology { padding: var(--space-7) 0; background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.methodology::before {
  content: ''; position: absolute; top: -400px; left: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(244,122,47,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.methodology .container { position: relative; z-index: 1; }
.methodology h2 { margin-bottom: 28px; max-width: 800px; color: var(--paper); }
.methodology p.lead { max-width: 720px; color: rgba(247,244,238,0.8); margin-bottom: 40px; }
.method-phases { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid rgba(247,244,238,0.15); }
.method-phase { padding: 36px 24px 0 0; border-right: 1px solid rgba(247,244,238,0.15); position: relative; }
.method-phase:last-child { border-right: none; padding-right: 0; }
.method-phase-num {
  font-family: var(--ff-display); font-size: 0.84rem; font-style: italic;
  color: var(--amber); font-weight: 400; letter-spacing: 0.06em; margin-bottom: 16px;
}
.method-phase h3 { font-size: 1.55rem; color: var(--paper); margin-bottom: 14px; letter-spacing: -0.01em; }
.method-phase p { font-size: 0.92rem; line-height: 1.6; color: rgba(247,244,238,0.7); }
@media(max-width:980px) {
  .method-phases { grid-template-columns: 1fr 1fr; }
  .method-phase { padding: 28px 18px 28px 0; border-right: 1px solid rgba(247,244,238,0.15); border-bottom: 1px solid rgba(247,244,238,0.15); }
  .method-phase:nth-child(2n) { border-right: none; padding-right: 0; }
  .method-phase:nth-last-child(-n+2) { border-bottom: none; }
}
@media(max-width:600px) {
  .method-phases { grid-template-columns: 1fr; }
  .method-phase { padding: 28px 0; border-right: none !important; border-bottom: 1px solid rgba(247,244,238,0.15); }
  .method-phase:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ── ENGAGEMENTS ────────────────────────────── */
.engagements { padding: 110px 0; }
.eng-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  margin-top: 60px; border: 1px solid var(--divider);
  border-radius: var(--radius-lg); overflow: hidden; background: var(--canvas);
}
.eng-card { padding: 44px 36px; border-right: 1px solid var(--divider); display: flex; flex-direction: column; transition: var(--trans); }
.eng-card:last-child { border-right: none; }
.eng-card:hover { background: var(--paper); }
.eng-card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); margin-bottom: 18px;
}
.eng-card.featured .eng-card-tag { color: var(--amber-d); }
.eng-card h3 { margin-bottom: 14px; font-size: 1.7rem; }
.eng-card-tagline {
  font-style: italic; font-family: var(--ff-display);
  color: var(--amber-d); margin-bottom: 22px; font-size: 1rem; font-weight: 400;
}
.eng-card-desc { font-size: 0.95rem; color: var(--ink-2); margin-bottom: 28px; line-height: 1.65; }
.eng-card-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px; flex: 1; }
.eng-card-list li {
  font-size: 0.9rem; color: var(--ink-2); padding-left: 22px;
  position: relative; line-height: 1.5;
}
.eng-card-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 1px; background: var(--amber); }
.eng-card-foot { font-size: 0.82rem; color: var(--mid); padding-top: 20px; border-top: 1px solid var(--divider); margin-top: auto; }
.eng-card-foot strong { color: var(--ink); font-weight: 500; }
@media(max-width:920px) {
  .eng-grid { grid-template-columns: 1fr; }
  .eng-card { border-right: none; border-bottom: 1px solid var(--divider); }
  .eng-card:last-child { border-bottom: none; }
}

/* ── VERTICALS ─────────────────────────────── */
.verticals { padding: var(--space-7) 0; background: var(--paper-2); }
.vert-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 56px; }
.vert-card {
  background: var(--canvas); border-radius: var(--radius-lg); padding: 38px 32px;
  display: flex; flex-direction: column; transition: var(--trans);
  border: 1px solid var(--divider); position: relative; overflow: hidden;
}
.vert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--amber); }
.vert-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper); border-radius: 50%; margin-bottom: 22px;
  font-family: var(--ff-display); font-size: 1.1rem; font-style: italic;
  color: var(--amber-d); font-weight: 400;
}
.vert-card h3 { font-size: 1.55rem; margin-bottom: 14px; }
.vert-card-desc { font-size: 0.94rem; color: var(--ink-2); margin-bottom: 22px; line-height: 1.65; }
.vert-card-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.vert-card-list span {
  font-size: 0.78rem; padding: 4px 10px; background: var(--paper);
  border-radius: 50px; color: var(--ink-2); font-weight: 400;
}
.vert-card-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--divider); padding-bottom: 3px;
  align-self: flex-start; transition: var(--trans);
}
.vert-card-link:hover { color: var(--amber-d); border-color: var(--amber); gap: 10px; }
@media(max-width:920px) { .vert-grid { grid-template-columns: 1fr; } }

/* ── CASE STUDIES ──────────────────────────── */
.cases { padding: var(--space-7) 0; }
.case-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center; margin-top: 56px; padding: 56px 56px;
  background: var(--canvas); border-radius: var(--radius-lg); border: 1px solid var(--divider);
}
.case-feature-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: var(--radius); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-family: var(--ff-display);
  font-size: 2.4rem; font-style: italic; font-weight: 300;
}
.case-feature-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(244,122,47,0.18) 0%, transparent 60%); }
.case-feature-img > span { position: relative; z-index: 1; }
.case-feature-content .eyebrow { margin-bottom: 16px; }
.case-feature-content h3 { font-size: 2.2rem; margin-bottom: 18px; }
.case-feature-content p { margin-bottom: 24px; color: var(--ink-2); }
.case-feature-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 28px 0; padding: 22px 0;
  border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider);
}
.case-stat-num {
  font-family: var(--ff-display); font-size: 2rem; font-weight: 400;
  color: var(--amber-d); font-style: italic; letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 4px;
}
.case-stat-label { font-size: 0.82rem; color: var(--mid); }
@media(max-width:920px) {
  .case-feature { grid-template-columns: 1fr; padding: 32px 28px; gap: 32px; }
  .case-feature-stats { grid-template-columns: 1fr; }
}

/* ── DIFFERENTIATION ─────── */
.different { padding: var(--space-7) 0; background: var(--paper-2); }
.diff-rows {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 56px;
  background: var(--canvas); border-radius: var(--radius-lg);
  border: 1px solid var(--divider); overflow: hidden;
}
.diff-col { padding: 44px 40px; }
.diff-col-no { border-right: 1px solid var(--divider); background: var(--paper); }
.diff-col h4 { margin-bottom: 22px; font-size: 1.05rem; font-weight: 500; letter-spacing: 0.01em; }
.diff-col-no h4 { color: var(--mid); }
.diff-col-yes h4 { color: var(--amber-d); }
.diff-col ul { display: flex; flex-direction: column; gap: 14px; }
.diff-col li { font-size: 0.98rem; line-height: 1.55; padding-left: 24px; position: relative; }
.diff-col-no li { color: var(--mid); text-decoration: line-through; text-decoration-color: rgba(154,167,184,0.5); }
.diff-col-no li::before { content: '×'; position: absolute; left: 0; top: -2px; color: var(--mid); font-size: 1.2rem; }
.diff-col-yes li { color: var(--ink); }
.diff-col-yes li::before { content: ''; position: absolute; left: 0; top: 11px; width: 12px; height: 1.5px; background: var(--amber); }
@media(max-width:780px) {
  .diff-rows { grid-template-columns: 1fr; }
  .diff-col-no { border-right: none; border-bottom: 1px solid var(--divider); }
}

/* ── CTA BAND ──────────────────────────────── */
.cta-band { padding: var(--space-7) 0; background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; bottom: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,122,47,0.12) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--paper); margin-bottom: 24px; max-width: 800px; }
.cta-band h2 em { color: var(--amber); font-style: italic; font-weight: 400; }
.cta-band p { color: rgba(247,244,238,0.78); max-width: 580px; margin-bottom: 40px; font-size: 1.15rem; }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.cta-band .btn-outline { border-color: rgba(247,244,238,0.3); color: var(--paper); }
.cta-band .btn-outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
@media (max-width: 600px) {
  .cta-band-actions { flex-direction: column; gap: 10px; align-items: stretch; width: 100%; }
  .cta-band-actions > * { width: 100%; justify-content: center; }
}

/* ── FOOTER ────────────────────────────────── */
footer { background: var(--ink); color: var(--paper); padding: 70px 0 40px; border-top: 1px solid rgba(247,244,238,0.08); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.foot-brand {
  font-family: var(--ff-wordmark); font-size: 1.6rem; font-weight: 500;
  margin-bottom: 16px; color: var(--paper);
  display: flex; align-items: center; gap: 6px;
}
.foot-brand img {
  height: 42px; width: auto; display: block;
}
.foot-brand-dot { width: 7px; height: 7px; background: var(--amber); border-radius: 50%; }
.foot-tag { font-size: 0.92rem; color: rgba(247,244,238,0.65); margin-bottom: 22px; max-width: 320px; line-height: 1.6; }
.foot-section h5 {
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247,244,238,0.5); margin-bottom: 18px;
}
.foot-section ul { display: flex; flex-direction: column; gap: 11px; }
.foot-section a { font-size: 0.92rem; color: rgba(247,244,238,0.78); }
.foot-section a:hover { color: var(--amber); }
.foot-bottom {
  border-top: 1px solid rgba(247,244,238,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.84rem; color: rgba(247,244,238,0.55);
  flex-wrap: wrap; gap: 16px;
}
.foot-bottom a { color: rgba(247,244,238,0.7); }
.foot-bottom a:hover { color: var(--amber); }
.foot-addresses {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(247,244,238,0.08);
}
.foot-addresses p { font-size: 0.85rem; color: rgba(247,244,238,0.7); line-height: 1.55; }
.foot-addresses h6 {
  font-family: var(--ff-body); font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(247,244,238,0.5);
  margin-bottom: 8px; font-weight: 500;
}
@media(max-width:920px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:600px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-addresses { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── PAGE HEADER (subpages) ─────────────────── */
.page-head { padding: 70px 0 60px; border-bottom: 1px solid var(--divider); }
.page-head .eyebrow { margin-bottom: 18px; }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 900px; margin-bottom: 24px; }
.page-head p.lead { max-width: 700px; font-size: 1.18rem; }

/* ── ABOUT — STORY ─────────────────── */
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 40px; }
.story-block .story-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--ink) 0%, var(--amber-d) 100%);
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 36px; color: var(--paper);
}
.story-block .story-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 0%, rgba(14,7,38,0.4) 100%); }
.story-block .story-img-caption {
  position: relative; z-index: 1; font-family: var(--ff-display);
  font-size: 1rem; font-style: italic; color: var(--paper); font-weight: 300;
}
.story-text h3 { margin-bottom: 24px; }
.story-text p { margin-bottom: 18px; }
.story-text blockquote {
  font-family: var(--ff-display); font-size: 1.45rem; font-style: italic;
  font-weight: 300; line-height: 1.4; color: var(--ink);
  border-left: 2px solid var(--amber); padding: 8px 0 8px 24px; margin: 28px 0;
}
@media(max-width:920px) { .story-block { grid-template-columns: 1fr; gap: 40px; } }

/* ── TEAM ──────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-top: 56px; }
.team-card {
  background: var(--canvas); border: 1px solid var(--divider);
  border-radius: var(--radius-lg); padding: 36px 32px; transition: var(--trans);
}
.team-card:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-photo {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--paper-2) 0%, var(--amber-l) 100%);
  border: 2px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-family: var(--ff-display);
  font-size: 1.8rem; color: var(--amber-d); font-weight: 400; font-style: italic;
}
.team-card h4 { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 500; margin-bottom: 4px; }
.team-card .team-role { font-size: 0.84rem; color: var(--amber-d); margin-bottom: 18px; letter-spacing: 0.04em; font-weight: 500; }
.team-card p { font-size: 0.94rem; color: var(--ink-2); line-height: 1.6; }
.team-links { margin-top: 18px; display: flex; gap: 12px; }
.team-links a { font-size: 0.84rem; color: var(--mid); border-bottom: 1px solid var(--divider); padding-bottom: 2px; }
.team-links a:hover { color: var(--amber-d); border-color: var(--amber); }
@media(max-width:920px) { .team-grid { grid-template-columns: 1fr; } }

/* ── METHODOLOGY DETAIL ─────── */
.method-detail { padding: 90px 0; }
.method-detail-row { display: grid; grid-template-columns: 200px 1fr; gap: 60px; padding: 50px 0; border-bottom: 1px solid var(--divider); }
.method-detail-row:last-child { border-bottom: none; }
.method-detail-num {
  font-family: var(--ff-display); font-size: 4.5rem; font-style: italic;
  color: var(--amber-d); font-weight: 300; letter-spacing: -0.02em; line-height: 1;
}
.method-detail-num span {
  display: block; font-size: 0.78rem; font-style: normal; color: var(--mid);
  letter-spacing: 0.16em; text-transform: uppercase; margin-top: 14px;
  font-family: var(--ff-body); font-weight: 500;
}
.method-detail-content h3 { font-size: 2.2rem; margin-bottom: 18px; }
.method-detail-content p { margin-bottom: 16px; }
.method-detail-deliverables { margin-top: 24px; padding: 22px 28px; background: var(--paper); border-radius: var(--radius-lg); }
.method-detail-deliverables strong {
  display: block; font-family: var(--ff-body); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-d); margin-bottom: 12px; font-weight: 500;
}
.method-detail-deliverables ul { display: flex; flex-wrap: wrap; gap: 6px; }
.method-detail-deliverables li {
  font-size: 0.86rem; background: var(--canvas); padding: 6px 12px;
  border-radius: 50px; color: var(--ink); border: 1px solid var(--divider);
}
@media(max-width:780px) {
  .method-detail-row { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .method-detail-num { font-size: 3rem; }
}

/* ── CASE STUDY DETAIL ─────────────────────── */
.case-detail-meta {
  display: flex; flex-wrap: wrap; gap: 24px; margin: 32px 0;
  padding: 24px 0; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider);
}
.case-detail-meta-item { font-size: 0.86rem; }
.case-detail-meta-item strong {
  display: block; font-family: var(--ff-body); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 4px; font-weight: 500;
}
.case-section { padding: 50px 0; border-bottom: 1px solid var(--divider); }
.case-section:last-child { border-bottom: none; }
.case-section h3 { margin-bottom: 22px; font-size: 1.7rem; }
.case-section p { margin-bottom: 16px; max-width: 760px; }
.case-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.case-result-card {
  padding: 32px 28px; background: var(--paper);
  border-radius: var(--radius-lg); border: 1px solid var(--divider);
}
.case-result-num {
  font-family: var(--ff-display); font-size: 3rem; font-weight: 400;
  font-style: italic; color: var(--amber-d); letter-spacing: -0.025em;
  line-height: 1; margin-bottom: 8px;
}
.case-result-label { font-size: 0.88rem; color: var(--ink-2); font-weight: 400; }
.case-quote {
  font-family: var(--ff-display); font-size: 1.5rem; line-height: 1.4;
  font-style: italic; font-weight: 300; color: var(--ink);
  border-left: 2px solid var(--amber); padding: 12px 0 12px 32px;
  margin: 32px 0; max-width: 800px;
}
.case-quote-cite {
  display: block; font-style: normal; font-family: var(--ff-body);
  font-size: 0.88rem; color: var(--mid); margin-top: 16px; font-weight: 500;
}
@media(max-width:780px) { .case-results-grid { grid-template-columns: 1fr; } }

/* ── VERTICAL DETAIL PAGES ─────────────────── */
.vert-detail-hero { padding: 80px 0 60px; background: var(--paper-2); }
.vert-detail-pain { padding: 80px 0; }
.vert-detail-pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 40px; }
.vert-detail-pain-points li {
  padding: 18px 0; border-bottom: 1px solid var(--divider);
  font-size: 1.02rem; color: var(--ink-2); line-height: 1.55;
  display: grid; grid-template-columns: 32px 1fr; gap: 16px;
}
.vert-detail-pain-points li:last-child { border-bottom: none; }
.vert-detail-pain-points li::before {
  content: ''; align-self: flex-start; margin-top: 10px;
  width: 18px; height: 1px; background: var(--amber);
}
@media(max-width:780px) { .vert-detail-pain-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── CONTACT ──────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-top: 50px; }
.contact-info-block { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--divider); }
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block h4 {
  font-family: var(--ff-body); font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber-d); margin-bottom: 12px; font-weight: 500;
}
.contact-info-block p { font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.contact-info-block a { color: var(--ink); border-bottom: 1px solid var(--divider); transition: var(--trans); }
.contact-info-block a:hover { color: var(--amber-d); border-color: var(--amber); }
.contact-form { background: var(--canvas); border: 1px solid var(--divider); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: var(--ff-body); font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 8px; font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--divider);
  border-radius: var(--radius); font-family: var(--ff-body);
  font-size: 0.98rem; color: var(--ink); background: var(--canvas); transition: var(--trans);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(244,122,47,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:920px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
@media(max-width:780px) { .form-group-row { grid-template-columns: 1fr; } .contact-form { padding: 28px 24px; } }

/* ── THINKING ───────────────────────── */
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.article-card {
  background: var(--canvas); border: 1px solid var(--divider);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--trans); display: flex; flex-direction: column;
}
.article-card:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.article-card-meta { font-size: 0.78rem; color: var(--mid); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.article-card h3 { font-size: 1.6rem; margin-bottom: 14px; line-height: 1.2; }
.article-card p { font-size: 0.94rem; color: var(--ink-2); margin-bottom: 24px; flex: 1; }
.article-card .btn-arrow { align-self: flex-start; font-size: 0.86rem; }
@media(max-width:780px) { .article-grid { grid-template-columns: 1fr; } }

.article-body { max-width: 720px; margin: 0 auto; padding: 60px 28px 100px; }
.article-body p { font-size: 1.1rem; line-height: 1.75; color: var(--ink); margin-bottom: 22px; }
.article-body p.lead {
  font-size: 1.3rem; font-family: var(--ff-display); font-weight: 300;
  line-height: 1.5; color: var(--ink); margin-bottom: 36px;
}
.article-body h2 { font-size: 1.8rem; margin: 48px 0 18px; }
.article-body h3 { font-size: 1.35rem; margin: 36px 0 14px; }
.article-body blockquote {
  font-family: var(--ff-display); font-size: 1.4rem; font-style: italic;
  font-weight: 300; line-height: 1.4; color: var(--ink);
  border-left: 2px solid var(--amber); padding: 8px 0 8px 28px; margin: 36px 0;
}
.article-body ul { margin: 22px 0 22px 18px; }
.article-body ul li { font-size: 1.05rem; color: var(--ink); margin-bottom: 12px; line-height: 1.65; list-style: disc; }

/* ── REVEAL ─────────────────────── */
/* Default: visible (no-JS fallback) */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1); }
/* When JS marks document, hide until .visible */
.js-reveal-ready .reveal:not(.visible) { opacity: 0; transform: translateY(20px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.section-head { max-width: 800px; margin-bottom: 40px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p.lead { color: var(--ink-2); }

/* ── 404 ───────────────────────────────────── */
.fourofour {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 80px 28px;
}
.fourofour h1 {
  font-size: clamp(4rem, 12vw, 8rem); font-style: italic;
  color: var(--amber-d); font-weight: 300; margin-bottom: 16px;
}
.fourofour p { max-width: 480px; margin-bottom: 32px; }

/* ============================================
   v3 ADDITIONS — icons, CTAs, grid tiers, anim
   ============================================ */

/* ── ICONS ─────────────────────────────────── */
.icon { display: inline-block; width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 18px; height: 18px; stroke-width: 1.7; }
.icon-lg { width: 32px; height: 32px; stroke-width: 1.4; }
.icon-amber { color: var(--amber-d); }
.icon-ink { color: var(--ink); }
.icon-mid { color: var(--mid); }
.icon-circle {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--amber-l); color: var(--amber-d);
  margin-bottom: 22px; transition: var(--trans);
}
.icon-circle .icon { width: 26px; height: 26px; stroke-width: 1.6; }
.icon-square {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: var(--paper-2); color: var(--amber-d);
  margin-bottom: 18px; transition: var(--trans);
}
.icon-square .icon { width: 22px; height: 22px; stroke-width: 1.6; }
.diagnosis-point-num + div .icon { margin-bottom: 6px; }

/* ── WHATSAPP & EMAIL CTA BUTTONS ──────────── */
.btn-whatsapp {
  background: #25D366; color: #FFFFFF; padding: 14px 26px;
  border-radius: 50px; font-weight: 500; font-size: 0.94rem;
  display: inline-flex; align-items: center; gap: 9px; letter-spacing: 0.005em;
  transition: var(--trans); border: 1px solid #25D366;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1FB855; border-color: #1FB855; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,211,102,0.25); }
.btn-whatsapp .icon { width: 18px; height: 18px; stroke-width: 0; fill: currentColor; }
.btn-email {
  background: var(--ink); color: var(--paper); padding: 14px 26px;
  border-radius: 50px; font-weight: 500; font-size: 0.94rem;
  display: inline-flex; align-items: center; gap: 9px; letter-spacing: 0.005em;
  transition: var(--trans); border: 1px solid var(--ink);
  white-space: nowrap;
}
.btn-email:hover { background: var(--ink-2); border-color: var(--ink-2); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(14,7,38,0.18); }
.btn-email .icon { width: 18px; height: 18px; stroke-width: 1.8; }

/* ── CTA STRIP (mid-page) ──────────────────── */
.cta-strip {
  background: var(--ink); color: var(--paper); padding: 48px 0;
  margin: 0; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; right: -120px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%; background: rgba(244,122,47,0.08);
}
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; z-index: 1; flex-wrap: wrap;
}
.cta-strip-text { flex: 1; min-width: 280px; }
.cta-strip h3 {
  color: var(--paper); font-size: 1.6rem; font-weight: 600; margin-bottom: 4px;
  letter-spacing: -0.02em; line-height: 1.2;
}
.cta-strip p { color: rgba(247,244,238,0.72); font-size: 0.96rem; margin: 0; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media(max-width:640px) {
  .cta-strip { padding: 36px 0; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-strip-actions { width: 100%; }
  .cta-strip-actions .btn-whatsapp, .cta-strip-actions .btn-email { width: 100%; justify-content: center; }
}

/* ── INLINE WHATSAPP CHIP ──────────────────── */
.wa-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: rgba(37,211,102,0.1); color: #1FB855; border: 1px solid rgba(37,211,102,0.25);
  border-radius: 100px; font-size: 0.84rem; font-weight: 600;
  transition: var(--trans);
}
.wa-chip:hover { background: rgba(37,211,102,0.18); transform: translateY(-1px); }
.wa-chip .icon { width: 14px; height: 14px; fill: currentColor; stroke-width: 0; }

/* ── INDUSTRIES (PRIORITY + SECONDARY) ─────── */
.industries-priority {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 64px;
}
.industries-priority .vert-card {
  position: relative;
  border: 1px solid var(--divider);
  background: var(--canvas);
}
.industries-priority .vert-card::before {
  content: "Priority vertical"; position: absolute; top: 16px; right: 16px;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-d); background: var(--amber-l); padding: 4px 10px; border-radius: 100px;
}
.industries-secondary-head {
  display: flex; align-items: center; gap: 18px; margin-bottom: 28px;
}
.industries-secondary-head h3 { font-size: 1.3rem; font-weight: 600; margin: 0; }
.industries-secondary-head .rule { flex: 1; height: 1px; background: var(--divider); }
.industries-secondary {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.vert-mini-card {
  padding: 22px 20px; background: var(--canvas);
  border: 1px solid var(--divider); border-radius: var(--radius-lg);
  transition: var(--trans); cursor: pointer; display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit; min-height: 140px;
}
.vert-mini-card:hover {
  border-color: var(--amber); transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14,7,38,0.08);
}
.vert-mini-card .icon-square { width: 38px; height: 38px; margin: 0; border-radius: 6px; }
.vert-mini-card .icon-square .icon { width: 18px; height: 18px; }
.vert-mini-card h4 { font-size: 0.98rem; font-weight: 600; margin: 0; line-height: 1.25; }
.vert-mini-card p { font-size: 0.82rem; color: var(--mid); margin: 0; line-height: 1.45; }
.vert-mini-card .vert-mini-arrow { font-size: 0.84rem; color: var(--amber-d); margin-top: auto; }
@media(max-width:980px) {
  .industries-priority { grid-template-columns: 1fr; }
  .industries-secondary { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:520px) {
  .industries-secondary { grid-template-columns: 1fr; }
}

/* ── TRAVOCRM SECTION ──────────────────────── */
.travo-section {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper); padding: var(--space-7) 0;
  position: relative; overflow: hidden;
}
.travo-section::before {
  content: ""; position: absolute; right: -160px; bottom: -160px;
  width: 480px; height: 480px; border-radius: 50%; background: rgba(244,122,47,0.06);
}
.travo-section .eyebrow { color: var(--amber); }
.travo-section h2 { color: var(--paper); margin-bottom: 16px; }
.travo-section p { color: rgba(247,244,238,0.78); }
.travo-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.travo-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.travo-stat {
  background: rgba(247,244,238,0.04);
  border: 1px solid rgba(247,244,238,0.1);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: var(--trans);
}
.travo-stat:hover { background: rgba(247,244,238,0.06); border-color: rgba(244,122,47,0.3); }
.travo-stat-num {
  font-size: 2.6rem; font-weight: 700; color: var(--amber);
  line-height: 1; letter-spacing: -0.03em; margin-bottom: 6px;
}
.travo-stat-label {
  font-size: 0.86rem; color: rgba(247,244,238,0.72);
  letter-spacing: -0.005em; line-height: 1.4;
}
.travo-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--amber); font-weight: 600; font-size: 0.96rem;
  border-bottom: 1px solid rgba(244,122,47,0.4); padding-bottom: 2px;
  transition: var(--trans);
}
.travo-link:hover { color: var(--paper); border-bottom-color: var(--paper); }
@media(max-width:880px) {
  .travo-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── ENGAGEMENT CARDS WITH ICONS ───────────── */
.eng-card {
  background: var(--canvas); border: 1px solid var(--divider);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--trans); position: relative; height: 100%;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.eng-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px); box-shadow: 0 8px 28px rgba(14,7,38,0.08);
}
.eng-card .icon-square { background: var(--amber-l); }
.eng-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.015em; }
.eng-card p { font-size: 0.92rem; color: var(--mid); line-height: 1.55; margin-bottom: 14px; }
.eng-card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber-d); padding: 3px 10px;
  background: var(--amber-l); border-radius: 100px; margin-top: auto; align-self: flex-start;
}

/* ── BETTER REVEALS ────────────────────────── */
/* Defaults: visible (no-JS fallback) */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1); }
/* When JS marks document, hide until .visible */
.js-reveal-ready .reveal-up:not(.visible) { opacity: 0; transform: translateY(28px); }
.js-reveal-ready .reveal-left:not(.visible) { opacity: 0; transform: translateX(-32px); }
.js-reveal-ready .reveal-right:not(.visible) { opacity: 0; transform: translateX(32px); }
.js-reveal-ready .reveal-scale:not(.visible) { opacity: 0; transform: scale(0.96); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0,0); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-up[data-delay="1"], .reveal-left[data-delay="1"], .reveal-right[data-delay="1"], .reveal-scale[data-delay="1"] { transition-delay: 0.08s; }
.reveal-up[data-delay="2"], .reveal-left[data-delay="2"], .reveal-right[data-delay="2"], .reveal-scale[data-delay="2"] { transition-delay: 0.16s; }
.reveal-up[data-delay="3"], .reveal-left[data-delay="3"], .reveal-right[data-delay="3"], .reveal-scale[data-delay="3"] { transition-delay: 0.24s; }
.reveal-up[data-delay="4"], .reveal-left[data-delay="4"], .reveal-right[data-delay="4"], .reveal-scale[data-delay="4"] { transition-delay: 0.32s; }
.reveal-up[data-delay="5"], .reveal-left[data-delay="5"], .reveal-right[data-delay="5"], .reveal-scale[data-delay="5"] { transition-delay: 0.4s; }

/* ── COUNTER ANIM ──────────────────────────── */
.counter { font-variant-numeric: tabular-nums; }

/* ── HERO PARALLAX HINT ────────────────────── */
.hero-bg-deco {
  position: absolute; pointer-events: none; z-index: 0; opacity: 0.06;
  font-family: var(--ff-wordmark); font-style: italic; font-weight: 400;
  font-size: clamp(8rem, 20vw, 20rem); color: var(--ink);
  right: -40px; top: 40px; line-height: 0.85; letter-spacing: -0.04em;
  user-select: none; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.hero { position: relative; }
.hero .container { position: relative; z-index: 1; }

/* ── MICRO-INTERACTIONS ────────────────────── */
.lift { transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s cubic-bezier(0.22,1,0.36,1); }
.lift:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(14,7,38,0.08); }

/* ── FIX EM AND ITALIC WEIGHTS FOR INTER ───── */
.cta-band h2 em { color: var(--amber); font-style: italic; font-weight: 700; }
.cta-band-inverse h2 em { color: var(--amber); font-style: italic; font-weight: 700; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ── INDUSTRY HERO ICON ────────────────────── */
.industry-hero-icon {
  width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--amber-l); color: var(--amber-d);
  border-radius: 14px; margin-bottom: 28px;
}
.industry-hero-icon .icon { width: 32px; height: 32px; stroke-width: 1.6; }

/* ── WIDER DROPDOWN (10 verticals) ─────────── */
.dropdown-menu-wide {
  min-width: 580px; padding: 16px;
  display: grid !important; grid-template-columns: 1fr 1fr; gap: 4px;
}
.dropdown-menu-wide a {
  padding: 12px 14px; border-radius: 6px;
}
.dropdown-menu-wide a:hover {
  background: var(--paper-2);
}
.dropdown-menu-wide a small {
  display: block; font-size: 0.74rem; color: var(--mid); margin-top: 2px;
  font-weight: 400; letter-spacing: 0;
}
@media(max-width:980px) {
  .dropdown-menu-wide { display: none !important; }
}

/* ── GHOST LIGHT BUTTON (for dark backgrounds) ── */
.btn-ghost-light {
  background: transparent; color: var(--paper);
  border: 1px solid rgba(247,244,238,0.3);
  padding: 14px 26px; border-radius: 50px;
  font-weight: 500; font-size: 0.94rem;
  display: inline-flex; align-items: center; gap: 9px;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-ghost-light:hover {
  background: rgba(247,244,238,0.08);
  border-color: rgba(247,244,238,0.5);
  transform: translateY(-1px);
}

/* ============================================
   v4 ADDITIONS — image-rich layouts
   ============================================ */

/* ── HERO V4 — split with media ────────────── */
.hero-v4 {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  padding: 80px 0 100px;
}
.hero-v4-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-v4-text h1 { margin: 14px 0 22px; font-size: clamp(2.2rem, 4.8vw, 3.8rem); line-height: 1.05; }
.hero-v4-text .accent { font-style: italic; color: var(--amber-d); font-weight: 700; }
.hero-v4-media {
  position: relative; aspect-ratio: 1.2/1;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(14,7,38,0.15), 0 4px 12px rgba(14,7,38,0.08);
  background: var(--ink);
}
.hero-v4-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-v4-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,7,38,0) 0%, rgba(14,7,38,0.45) 100%);
  pointer-events: none;
}
.hero-v4-badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(10px);
  padding: 14px 18px; border-radius: 10px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(14,7,38,0.12);
}
.hero-v4-badge-dot { width: 10px; height: 10px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 4px rgba(37,211,102,0.2); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(37,211,102,0.2); } 50% { box-shadow: 0 0 0 8px rgba(37,211,102,0.0); } }
.hero-v4-badge-text { font-size: 0.84rem; color: var(--ink-2); font-weight: 500; }
.hero-v4-badge-text strong { color: var(--ink); display: block; font-weight: 700; font-size: 0.92rem; }
.hero-v4-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  background: var(--amber-l); color: var(--amber-d); border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
}
.hero-v4-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.hero-v4-trust {
  display: flex; gap: 32px; margin-top: 36px; padding-top: 32px;
  border-top: 1px solid var(--divider);
}
.hero-v4-trust-item { display: flex; flex-direction: column; }
.hero-v4-trust-num { font-weight: 700; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.hero-v4-trust-label { font-size: 0.78rem; color: var(--mid); margin-top: 4px; line-height: 1.3; }
@media(max-width:980px) {
  .hero-v4 { padding: 50px 0 70px; }
  .hero-v4-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-v4-media { aspect-ratio: 16/10; }
  .hero-v4-trust { gap: 22px; }
}

/* ── SERVICES 3 VERTICAL DIVS ──────────────── */
.services-grid-v4 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card-v4 {
  background: var(--canvas); border: 1px solid var(--divider);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s cubic-bezier(0.22,1,0.36,1);
  text-decoration: none; color: inherit;
}
.service-card-v4:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(14,7,38,0.10);
}
.service-card-v4-media {
  aspect-ratio: 1.4/1; background: var(--paper-2); position: relative; overflow: hidden;
}
.service-card-v4-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.service-card-v4:hover .service-card-v4-media img { transform: scale(1.05); }
.service-card-v4-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,7,38,0) 50%, rgba(14,7,38,0.5) 100%);
}
.service-card-v4-tag {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #FFF; background: rgba(14,7,38,0.7); backdrop-filter: blur(10px);
  padding: 6px 12px; border-radius: 100px;
}
.service-card-v4-body { padding: 28px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card-v4-body h3 {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em;
}
.service-card-v4-body p {
  color: var(--mid); font-size: 0.94rem; line-height: 1.6; margin-bottom: 20px;
}
.service-card-v4-features {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.service-card-v4-features li {
  display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink-2);
}
.service-card-v4-features li svg {
  width: 16px; height: 16px; color: var(--amber-d); flex-shrink: 0;
}
.service-card-v4-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  color: var(--amber-d); font-weight: 600; font-size: 0.92rem;
  border-bottom: 1px solid transparent; transition: var(--trans);
  align-self: flex-start;
}
.service-card-v4:hover .service-card-v4-link { border-bottom-color: var(--amber-d); gap: 10px; }
.services-footnote {
  text-align: center; margin-top: 32px; font-size: 0.92rem; color: var(--mid);
}
.services-footnote a { color: var(--amber-d); font-weight: 600; }
@media(max-width:980px) {
  .services-grid-v4 { grid-template-columns: 1fr; gap: 18px; }
}

/* ── TECH COMPANY / PRODUCT SHOWCASE ──────── */
.tech-showcase {
  background: linear-gradient(135deg, var(--ink) 0%, #0A1522 100%);
  color: var(--paper); padding: var(--space-7) 0;
  position: relative; overflow: hidden;
}
.tech-showcase::before {
  content: ""; position: absolute; right: -180px; top: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,122,47,0.12) 0%, transparent 70%);
}
.tech-showcase::after {
  content: ""; position: absolute; left: -100px; bottom: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.06) 0%, transparent 70%);
}
.tech-showcase-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
@media (max-width: 880px) {
  .tech-showcase-grid { grid-template-columns: 1fr; gap: 36px; }
  .tech-showcase-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tech-showcase-actions .btn,
  .tech-showcase-actions .btn-primary,
  .tech-showcase-actions .btn-amber,
  .tech-showcase-actions .btn-ghost-light { width: 100%; justify-content: center; }
}
.tech-showcase .eyebrow { color: var(--amber); }
.tech-showcase h2 { color: var(--paper); margin-bottom: 20px; }
.tech-showcase h2 em { font-style: italic; color: var(--amber); font-weight: 700; }
.tech-showcase p { color: rgba(247,244,238,0.78); margin-bottom: 16px; }
.tech-showcase-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin: 28px 0 32px;
}
.tech-stat-mini {
  background: rgba(247,244,238,0.04); border: 1px solid rgba(247,244,238,0.1);
  border-radius: 10px; padding: 18px 20px;
}
.tech-stat-mini-num {
  font-size: 1.8rem; font-weight: 700; color: var(--amber);
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 4px;
}
.tech-stat-mini-label {
  font-size: 0.82rem; color: rgba(247,244,238,0.7); line-height: 1.35;
}
.tech-showcase-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.tech-showcase-media {
  position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.2);
  aspect-ratio: 1.4/1; background: #0A1522;
}
.tech-showcase-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tech-showcase-media-frame {
  position: absolute; inset: 0; pointer-events: none;
  border: 1px solid rgba(247,244,238,0.08); border-radius: 14px;
}
.tech-showcase-launch-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(14,7,38,0.85); backdrop-filter: blur(10px);
  padding: 8px 14px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--paper);
}
.tech-showcase-launch-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25D366; box-shadow: 0 0 0 3px rgba(37,211,102,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@media(max-width:980px) {
  .tech-showcase-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── INDUSTRIES V4 — equal cards w/ images ── */
.industries-v4 {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.industries-v4 a {
  background: var(--canvas); border: 1px solid var(--divider);
  border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s cubic-bezier(0.22,1,0.36,1);
}
.industries-v4 a:hover {
  transform: translateY(-4px); box-shadow: 0 14px 36px rgba(14,7,38,0.10);
}
.industry-v4-media { aspect-ratio: 1.2/1; overflow: hidden; position: relative; background: var(--paper-2); }
.industry-v4-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.industries-v4 a:hover .industry-v4-media img { transform: scale(1.08); }
.industry-v4-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,7,38,0) 40%, rgba(14,7,38,0.55) 100%);
}
.industry-v4-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.industry-v4-body h4 {
  font-size: 0.96rem; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.015em; line-height: 1.25;
}
.industry-v4-body p { font-size: 0.78rem; color: var(--mid); line-height: 1.4; margin: 0; }
.industry-v4-arrow {
  font-size: 0.78rem; color: var(--amber-d); margin-top: 12px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
@media(max-width:1080px) { .industries-v4 { grid-template-columns: repeat(4, 1fr); } }
@media(max-width:880px) { .industries-v4 { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:600px) { .industries-v4 { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ── METHODOLOGY MEDIA STRIP ───────────────── */
.method-strip-media {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; margin-bottom: 36px;
}
.method-strip-media-img {
  border-radius: 14px; overflow: hidden; aspect-ratio: 1.3/1;
  box-shadow: 0 12px 36px rgba(14,7,38,0.10);
}
.method-strip-media-img img { width: 100%; height: 100%; object-fit: cover; }
@media(max-width:880px) { .method-strip-media { grid-template-columns: 1fr; } }

/* ── CASE FEATURE MEDIA UPGRADE ────────────── */
.case-feature-img-v4 {
  aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  position: relative; background: var(--ink);
  box-shadow: 0 16px 40px rgba(14,7,38,0.12);
}
.case-feature-img-v4 img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0.9; transition: opacity 0.4s, transform 0.6s;
}
.case-feature-img-v4:hover img { opacity: 1; transform: scale(1.03); }
.case-feature-img-v4-label {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(14,7,38,0.85); backdrop-filter: blur(10px);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: var(--paper);
  letter-spacing: 0.06em;
}

/* ── PRODUCT PAGE STYLES ───────────────────── */
.product-hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  padding: 70px 0 90px; position: relative; overflow: hidden;
}
.product-hero-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
  align-items: center; position: relative; z-index: 1;
}
.product-logo-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; background: var(--canvas); border: 1px solid var(--divider);
  border-radius: 100px; font-weight: 700; font-size: 0.92rem;
  margin-bottom: 22px;
}
.product-logo-pill-icon {
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-d) 100%);
  display: inline-flex; align-items: center; justify-content: center; color: #FFF;
  font-size: 0.7rem; font-weight: 800;
}
.product-hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--divider);
}
.product-feat-card {
  background: var(--canvas); padding: 28px 26px;
  border: 1px solid var(--divider); border-radius: 12px;
  height: 100%; transition: var(--trans);
}
.product-feat-card:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(14,7,38,0.08); }
.product-feat-card .icon-square { background: var(--amber-l); }
.product-feat-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.product-feat-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.55; }
@media(max-width:880px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── BG TEXTURE FOR LIGHT SECTIONS ─────────── */
.bg-pattern-dots {
  position: relative;
}
.bg-pattern-dots::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--divider) 1px, transparent 1px);
  background-size: 28px 28px; opacity: 0.4; pointer-events: none;
}
.bg-pattern-dots > * { position: relative; z-index: 1; }


/* ============================================
   v5 — bg hero, discovery, comparison
   ============================================ */

/* ── HERO V5 — full-width background image ── */
.hero-v5 {
  position: relative;
  min-height: 620px;
  padding: 96px 0 100px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.hero-v5-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.45) saturate(0.85);
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.hero-v5::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,7,38,0.35) 0%, rgba(14,7,38,0.55) 60%, rgba(14,7,38,0.78) 100%);
  pointer-events: none;
}
.hero-v5::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(14,7,38,0.6));
  pointer-events: none;
}
.hero-v5 .container { position: relative; z-index: 2; }
.hero-v5-content { max-width: 820px; }
.hero-v5-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(247,244,238,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(247,244,238,0.18);
  color: var(--paper); border-radius: 100px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.hero-v5-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 0 4px rgba(244,122,47,0.3);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero-v5 h1 {
  color: var(--paper); margin-bottom: 22px;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  letter-spacing: -0.035em; line-height: 1.05;
}
.hero-v5 h1 .accent { font-style: italic; color: var(--amber); font-weight: 700; }
.hero-v5 .lead { color: rgba(247,244,238,0.85); font-size: 1.18rem; max-width: 720px; }
.hero-v5 .lead strong { color: var(--paper); font-weight: 700; }
.hero-v5-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-v5 .btn-primary { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.hero-v5 .btn-primary:hover { background: var(--amber-d); border-color: var(--amber-d); }
.hero-v5 .btn-outline { color: var(--paper); border-color: rgba(247,244,238,0.4); }
.hero-v5 .btn-outline:hover { background: rgba(247,244,238,0.08); border-color: var(--paper); }
.hero-v5-trust {
  display: flex; flex-wrap: wrap; gap: 36px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(247,244,238,0.18);
}
.hero-v5-trust-item { display: flex; flex-direction: column; }
.hero-v5-trust-num { font-weight: 700; font-size: 1.5rem; color: var(--paper); letter-spacing: -0.02em; line-height: 1; }
.hero-v5-trust-label { font-size: 0.78rem; color: rgba(247,244,238,0.65); margin-top: 6px; line-height: 1.35; }
@media(max-width:760px) {
  .hero-v5 { min-height: 540px; padding: 72px 0 80px; }
  .hero-v5 h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-v5-trust { gap: 22px; }
  .hero-v5-trust-num { font-size: 1.25rem; }
  .hero-v5-actions { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero-v5-actions .btn,
  .hero-v5-actions .btn-primary,
  .hero-v5-actions .btn-outline,
  .hero-v5-actions .btn-whatsapp { width: 100%; justify-content: center; }
}

/* ── DISCOVERY / "HOW WE WORK" SECTION ────── */
.discovery {
  background: var(--canvas); padding: var(--space-7) 0;
  position: relative;
}
.discovery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 8px;
}
.discovery-step {
  background: var(--paper); border: 1px solid var(--divider);
  border-radius: 12px; padding: 28px 24px;
  position: relative; transition: var(--trans);
  display: flex; flex-direction: column; gap: 10px;
}
.discovery-step:hover {
  border-color: var(--amber); transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(14,7,38,0.07);
}
.discovery-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--ink); color: var(--paper);
  border-radius: 8px; font-weight: 700; font-size: 0.92rem;
  letter-spacing: -0.01em; margin-bottom: 4px;
}
.discovery-step-icon {
  position: absolute; top: 24px; right: 24px;
  width: 22px; height: 22px; color: var(--amber-d); opacity: 0.55;
}
.discovery-step h4 {
  font-size: 1rem; font-weight: 700; letter-spacing: -0.015em;
  line-height: 1.3; margin: 4px 0 4px;
}
.discovery-step p {
  font-size: 0.86rem; color: var(--mid); line-height: 1.55; margin: 0;
}
.discovery-arrow {
  position: absolute; top: 50%; right: -14px; z-index: 2;
  transform: translateY(-50%);
  color: var(--amber-d); opacity: 0.4;
}
.discovery-arrow svg { width: 18px; height: 18px; }
.discovery-step:last-child .discovery-arrow { display: none; }
@media(max-width:980px) {
  .discovery-grid { grid-template-columns: repeat(2, 1fr); }
  .discovery-arrow { display: none; }
}
@media(max-width:520px) {
  .discovery-grid { grid-template-columns: 1fr; }
}

/* ── COMPARISON TABLE ─────────────────────── */
.comparison {
  background: var(--paper); padding: var(--space-7) 0;
}
.comparison-table-wrap {
  background: var(--canvas);
  border: 1px solid var(--divider);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(14,7,38,0.04);
}
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table thead th {
  padding: 22px 18px;
  text-align: center; font-weight: 700;
  font-size: 0.86rem; letter-spacing: -0.01em;
  color: var(--ink); background: var(--paper-2);
  border-bottom: 1px solid var(--divider);
  vertical-align: middle;
}
.comparison-table thead th:first-child {
  text-align: left; padding-left: 26px;
  font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mid);
  font-weight: 600;
}
.comparison-table thead th.col-us {
  background: var(--ink); color: var(--paper);
  position: relative;
}
.comparison-table thead th.col-us::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--amber);
}
.comparison-table thead th.col-us .col-us-tag {
  display: block; font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber); font-weight: 700;
  margin-bottom: 4px;
}
.comparison-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--divider-2);
  text-align: center; vertical-align: middle;
  font-size: 0.86rem; color: var(--ink-2);
}
.comparison-table tbody td:not(:first-child) > * { vertical-align: middle; }
.comparison-table tbody td:not(:first-child) {
  text-align: center;
}
.comparison-table tbody td:not(:first-child) .cmp-yes,
.comparison-table tbody td:not(:first-child) .cmp-no,
.comparison-table tbody td:not(:first-child) .cmp-partial {
  margin: 0 auto 6px;
}
.comparison-table tbody td:first-child {
  text-align: left; padding-left: 26px;
  font-weight: 600; color: var(--ink);
  font-size: 0.86rem;
}
.comparison-table tbody td.col-us {
  background: rgba(14,7,38,0.04);
  color: var(--ink); font-weight: 600;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.cmp-yes, .cmp-no, .cmp-partial {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  flex-shrink: 0;
}
.cmp-yes { background: rgba(37,211,102,0.12); color: #1FB855; }
.cmp-no { background: rgba(14,7,38,0.06); color: var(--mid); }
.cmp-partial { background: rgba(244,122,47,0.12); color: var(--amber-d); }
.cmp-yes svg, .cmp-no svg, .cmp-partial svg { width: 13px; height: 13px; stroke-width: 2.5; }
.cmp-cell-text {
  display: block; font-size: 0.78rem;
  line-height: 1.3; color: var(--mid);
  font-weight: 500; max-width: 160px; margin: 0 auto;
}
.col-us .cmp-cell-text { color: var(--ink-2); font-weight: 600; }
.comparison-summary {
  text-align: center; max-width: 760px; margin: 36px auto 0;
  font-size: 0.96rem; color: var(--mid);
}
.comparison-summary strong { color: var(--ink); }
@media(max-width:880px) {
  .comparison-table-wrap { overflow-x: auto; }
  .comparison-table { min-width: 720px; }
}

/* ── REDUCE CTA-BAND PADDING ──────────────── */
.cta-band { padding: var(--space-6) 0; }

/* ── REDUCE PAGE-HEAD PADDING ─────────────── */
.page-head { padding: 80px 0 50px; }
@media(max-width:760px) { .page-head { padding: 56px 0 36px; } }


/* ============================================
   v6 — Service page layouts
   ============================================ */

/* ── SERVICE HERO ──────────────────────────── */
.svc-hero {
  position: relative;
  min-height: 480px;
  padding: 76px 0 70px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.svc-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35) saturate(0.85);
}
.svc-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,7,38,0.4) 0%, rgba(14,7,38,0.7) 60%, rgba(14,7,38,0.85) 100%);
  pointer-events: none;
}
.svc-hero .container { position: relative; z-index: 2; }
.svc-hero-content { max-width: 820px; }
.svc-hero-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(247,244,238,0.7); font-size: 0.84rem; font-weight: 500;
  margin-bottom: 22px; letter-spacing: -0.005em;
  transition: var(--trans);
}
.svc-hero-back:hover { color: var(--paper); }
.svc-hero-back svg { width: 14px; height: 14px; transform: rotate(180deg); }
.svc-hero-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: rgba(244,122,47,0.18);
  border: 1px solid rgba(244,122,47,0.3);
  border-radius: 14px;
  color: var(--amber);
  margin-bottom: 22px;
}
.svc-hero-icon svg { width: 30px; height: 30px; }
.svc-hero h1 {
  color: var(--paper); margin: 6px 0 16px;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}
.svc-hero .lead {
  color: var(--amber); font-size: 1.24rem; font-weight: 600;
  margin-bottom: 18px; letter-spacing: -0.01em;
}
.svc-hero-sub {
  color: rgba(247,244,238,0.85); font-size: 1.04rem;
  max-width: 720px; margin-bottom: 18px; line-height: 1.6;
}
.svc-hero-meta {
  display: inline-block; padding: 6px 14px;
  background: rgba(247,244,238,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(247,244,238,0.15);
  border-radius: 100px;
  color: var(--paper); font-size: 0.84rem; font-weight: 500;
  margin: 6px 0 28px;
}
.svc-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 8px; }
.svc-hero .btn-primary { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.svc-hero .btn-primary:hover { background: var(--amber-d); border-color: var(--amber-d); }
.svc-hero .btn-whatsapp,
.svc-hero .btn-primary { padding: 13px 26px; font-size: 0.95rem; }
@media(max-width:760px) {
  .svc-hero { min-height: 420px; padding: 56px 0 50px; }
  .svc-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .svc-hero .lead { font-size: 1.08rem; }
  .svc-hero-actions { gap: 10px; }
  .svc-hero-actions .btn-whatsapp,
  .svc-hero-actions .btn-primary,
  .svc-hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── AUDIENCE GRID ─────────────────────────── */
.svc-audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc-audience-card {
  background: var(--canvas);
  border: 1px solid var(--divider);
  border-radius: 12px; padding: 28px 24px;
  transition: var(--trans);
}
.svc-audience-card:hover {
  border-color: var(--amber); transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(14,7,38,0.07);
}
.svc-audience-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amber-l); color: var(--amber-d);
  border-radius: 10px; margin-bottom: 16px;
}
.svc-audience-icon svg { width: 22px; height: 22px; }
.svc-audience-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.015em; }
.svc-audience-card p { font-size: 0.92rem; color: var(--mid); line-height: 1.6; margin: 0; }
@media(max-width:880px) {
  .svc-audience-grid { grid-template-columns: 1fr; }
}

/* ── INCLUDES GRID ─────────────────────────── */
.svc-includes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc-include-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 22px;
  background: var(--canvas);
  border: 1px solid var(--divider);
  border-radius: 12px;
  transition: var(--trans);
}
.svc-include-item:hover {
  border-color: var(--amber);
  box-shadow: 0 6px 20px rgba(14,7,38,0.06);
}
.svc-include-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amber-l); color: var(--amber-d);
  border-radius: 8px;
}
.svc-include-icon svg { width: 18px; height: 18px; }
.svc-include-content h4 { font-size: 0.96rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; letter-spacing: -0.01em; }
.svc-include-content p { font-size: 0.85rem; color: var(--mid); line-height: 1.55; margin: 0; }
@media(max-width:980px) { .svc-includes-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px) { .svc-includes-grid { grid-template-columns: 1fr; } }

/* ── PROCESS GRID ──────────────────────────── */
.svc-process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  position: relative;
}
.svc-process-step {
  background: var(--canvas);
  border: 1px solid var(--divider);
  border-radius: 12px; padding: 26px 22px;
  position: relative;
  transition: var(--trans);
}
.svc-process-step:hover {
  border-color: var(--amber); transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(14,7,38,0.07);
}
.svc-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--ink); color: var(--paper);
  border-radius: 8px; font-weight: 700; font-size: 0.92rem;
  margin-bottom: 14px;
}
.svc-process-when {
  font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber-d);
  font-weight: 600; margin-bottom: 6px;
}
.svc-process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.015em; }
.svc-process-step p { font-size: 0.86rem; color: var(--mid); line-height: 1.55; margin: 0; }
@media(max-width:1080px) { .svc-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:540px) { .svc-process-grid { grid-template-columns: 1fr; } }

/* ── PRICING CARD ──────────────────────────── */
.svc-pricing-card {
  display: flex; gap: 28px;
  background: var(--ink); color: var(--paper);
  border-radius: 14px; padding: 36px 36px;
  align-items: flex-start;
}
.svc-pricing-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(244,122,47,0.15); color: var(--amber);
  border-radius: 10px;
}
.svc-pricing-card-icon svg { width: 24px; height: 24px; stroke-width: 2.4; }
.svc-pricing-card h3 { color: var(--paper); font-size: 1.35rem; font-weight: 700; margin: 0; }
.svc-pricing-card p { color: rgba(247,244,238,0.78); font-size: 0.94rem; line-height: 1.6; }
@media(max-width:600px) {
  .svc-pricing-card { flex-direction: column; padding: 28px 24px; gap: 18px; }
}

/* ── CAVEAT BOX ─────────────────────────────── */
.svc-caveat {
  display: flex; gap: 16px; padding: 22px 24px;
  background: var(--amber-l); border-left: 3px solid var(--amber);
  border-radius: 8px;
}
.svc-caveat-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  color: var(--amber-d); margin-top: 2px;
}
.svc-caveat p { font-size: 0.94rem; color: var(--ink-2); margin: 0; line-height: 1.6; }
.svc-caveat strong { color: var(--ink); }


/* ============================================
   v7 — bank details, team, careers, credentials
   ============================================ */

/* ── BANK DETAILS PAGE ─────────────────────── */
.bank-card {
  border: 1.5px solid var(--divider);
  border-radius: 12px; overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 6px 24px rgba(14,7,38,0.07);
  background: var(--paper);
}
.bank-card-header {
  background: var(--ink); color: var(--paper);
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  position: relative;
}
.bank-card-header::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--amber);
}
.bank-card-header-l p {
  color: rgba(247,244,238,0.7); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin: 0 0 4px;
}
.bank-card-header-l h2 {
  color: var(--paper); font-size: 1.12rem; margin: 0;
  font-weight: 700; letter-spacing: -0.01em;
}
.bank-card-header-r {
  background: rgba(247,244,238,0.12);
  border: 1px solid rgba(247,244,238,0.28);
  border-radius: 8px; padding: 8px 16px; text-align: center;
  backdrop-filter: blur(8px);
}
.bank-card-header-r p:first-child {
  color: rgba(247,244,238,0.7); font-size: 0.66rem;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin: 0 0 2px;
}
.bank-card-header-r p:last-child {
  color: var(--paper); font-weight: 700;
  font-size: 0.92rem; margin: 0;
}
.bank-row {
  display: grid; grid-template-columns: 170px 1fr;
  align-items: center; padding: 13px 22px;
  border-bottom: 1px solid var(--divider);
  background: var(--canvas);
}
.bank-row:nth-child(even) { background: var(--amber-l); }
.bank-row:last-child { border-bottom: none; }
.bank-row-label {
  font-size: 0.74rem; color: var(--mid);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bank-row-value {
  font-size: 1rem; color: var(--ink);
  font-weight: 600;
}
.bank-row-value-mono {
  font-size: 1.05rem; color: var(--ink);
  font-weight: 700; font-family: var(--ff-mono, ui-monospace, "SF Mono", Menlo, monospace);
  letter-spacing: 0.04em;
}
.bank-row-value-wrap {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.copy-btn {
  background: var(--ink); color: var(--paper);
  border: none; padding: 5px 14px;
  border-radius: 5px; font-size: 0.74rem;
  font-weight: 600; cursor: pointer;
  font-family: inherit; transition: var(--trans);
  letter-spacing: 0.02em;
}
.copy-btn:hover { background: var(--amber); color: var(--ink); }
.copy-btn.copied { background: #1FB855; color: var(--paper); }
.bank-info-card {
  background: var(--canvas); border: 1px solid var(--divider);
  border-radius: 10px; padding: 18px 22px; margin-bottom: 18px;
}
.bank-info-card h4 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber-d); margin: 0 0 12px;
}
.bank-info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bank-info-grid > div p:first-child {
  font-size: 0.72rem; color: var(--mid); margin: 0 0 3px;
  font-weight: 500;
}
.bank-info-grid > div p:last-child {
  font-size: 0.92rem; font-weight: 600; color: var(--ink);
  margin: 0; font-family: var(--ff-mono, ui-monospace, "SF Mono", Menlo, monospace);
  letter-spacing: 0.02em;
}
.bank-warning {
  background: var(--amber-l); border-left: 3px solid var(--amber);
  border-radius: 6px; padding: 14px 18px;
  margin-bottom: 18px; font-size: 0.92rem;
  color: var(--ink-2); line-height: 1.55;
}
.bank-warning strong { color: var(--ink); }
@media(max-width:560px) {
  .bank-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .bank-info-grid { grid-template-columns: 1fr; }
}

/* ── TEAM PAGE ─────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.team-card {
  background: var(--paper); border: 1px solid var(--divider);
  border-radius: 14px; overflow: hidden;
  transition: var(--trans);
}
.team-card:hover {
  border-color: var(--amber); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14,7,38,0.08);
}
.team-card-photo {
  aspect-ratio: 4/5; background: var(--paper-2);
  position: relative; overflow: hidden;
}
.team-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.team-card:hover .team-card-photo img { transform: scale(1.04); }
.team-card-photo-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; flex-direction: column; gap: 8px;
  color: var(--mid); background: linear-gradient(135deg, var(--paper-2), var(--canvas));
}
.team-card-photo-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.team-card-photo-placeholder span { font-size: 0.78rem; font-weight: 500; }
.team-card-body { padding: 22px 22px 24px; }
.team-card-body h3 {
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: -0.015em; margin: 0 0 4px;
}
.team-card-role {
  font-size: 0.78rem; color: var(--amber-d);
  font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 12px;
}
.team-card-bio {
  font-size: 0.92rem; color: var(--mid);
  line-height: 1.6; margin: 0;
}
.team-card-links {
  display: flex; gap: 10px; margin-top: 14px;
}
.team-card-links a {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper-2); color: var(--mid);
  border-radius: 6px; transition: var(--trans);
}
.team-card-links a:hover {
  background: var(--ink); color: var(--paper);
}
.team-card-links svg { width: 16px; height: 16px; }
@media(max-width:980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:560px) { .team-grid { grid-template-columns: 1fr; } }

.team-soon {
  background: var(--canvas); border: 1px dashed var(--divider);
  border-radius: 12px; padding: 30px 28px; text-align: center;
  margin-top: 28px;
}
.team-soon h4 {
  font-size: 1.05rem; font-weight: 700; margin: 0 0 8px;
  color: var(--ink);
}
.team-soon p { font-size: 0.92rem; color: var(--mid); margin: 0; }

/* ── CAREERS PAGE ──────────────────────────── */
.careers-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.career-card {
  background: var(--paper);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 24px 24px;
  transition: var(--trans);
  display: flex; flex-direction: column;
  position: relative;
}
.career-card:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 24px rgba(14,7,38,0.06);
}
.career-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 14px;
}
.career-tag {
  font-size: 0.7rem; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.career-tag-type { background: var(--amber-l); color: var(--amber-d); }
.career-tag-loc { background: var(--paper-2); color: var(--mid); }
.career-card h3 {
  font-size: 1.18rem; font-weight: 700;
  letter-spacing: -0.015em; margin: 0 0 10px;
}
.career-card p {
  font-size: 0.92rem; color: var(--mid);
  line-height: 1.6; margin: 0 0 16px;
}
.career-card ul {
  margin: 0 0 18px; padding: 0; list-style: none;
}
.career-card ul li {
  font-size: 0.86rem; color: var(--ink-2);
  padding: 4px 0 4px 22px; position: relative;
  line-height: 1.55;
}
.career-card ul li::before {
  content: ""; position: absolute; left: 6px; top: 12px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber);
}
.career-card-footer {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--divider);
  display: flex; justify-content: space-between;
  align-items: center; gap: 12px;
}
.career-apply {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--amber-d);
}
.career-apply:hover { color: var(--ink); }
.career-apply svg { width: 14px; height: 14px; }
@media(max-width:740px) { .careers-grid { grid-template-columns: 1fr; } }

/* ── CREDENTIALS / TRUST BLOCK ─────────────── */
.credentials {
  background: var(--paper-2);
  padding: var(--space-7) 0;
}
.credentials-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 980px; margin: 0 auto;
}
.credential-card {
  background: var(--paper); border: 1px solid var(--divider);
  border-radius: 12px; padding: 26px 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: var(--trans);
}
.credential-card:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 24px rgba(14,7,38,0.06);
}
.credential-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amber-l); color: var(--amber-d);
  border-radius: 10px;
}
.credential-icon svg { width: 24px; height: 24px; }
.credential-card h4 {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid);
  margin: 0 0 4px;
}
.credential-card .cred-value {
  font-size: 1.08rem; font-weight: 700; color: var(--ink);
  letter-spacing: 0.01em; margin: 0 0 8px;
  font-family: var(--ff-mono, ui-monospace, "SF Mono", Menlo, monospace);
  word-break: break-all;
}
.credential-card .cred-meta {
  font-size: 0.86rem; color: var(--mid); line-height: 1.55;
  margin: 0 0 12px;
}
.credential-download {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 600;
  color: var(--amber-d);
}
.credential-download:hover { color: var(--ink); }
.credential-download svg { width: 14px; height: 14px; }
@media(max-width:760px) { .credentials-grid { grid-template-columns: 1fr; } }

/* ── COMPLIANCE NOTE (FORMER NAME) ────────── */
.compliance-note {
  max-width: 720px; margin: 32px auto 0;
  font-size: 0.84rem; color: var(--mid);
  text-align: center; line-height: 1.6;
  padding: 14px 22px;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

/* ── FOOTER COMPLIANCE STRIP ──────────────── */
.foot-compliance {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(247,244,238,0.1);
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(247,244,238,0.65);
}
.foot-compliance-item {
  display: inline-flex; align-items: center; gap: 6px;
}
.foot-compliance-item strong {
  color: rgba(247,244,238,0.85); font-weight: 600;
  font-family: var(--ff-mono, ui-monospace, "SF Mono", Menlo, monospace);
  letter-spacing: 0.02em;
}
.foot-compliance-item a {
  color: var(--amber); display: inline-flex; align-items: center; gap: 4px;
  font-weight: 500;
}
.foot-compliance-item a:hover { color: var(--paper); }
.foot-compliance-item svg { width: 11px; height: 11px; }


/* ============================================
   v8 — social proof, faq, team intro, thinking, floating WA
   ============================================ */

/* ── LOGO STRIP ────────────────────────────── */
.logo-strip {
  padding: 38px 0;
  background: var(--paper);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.logo-strip-label {
  text-align: center;
  font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mid);
  font-weight: 600; margin-bottom: 22px;
}
.logo-strip-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 18px 36px; align-items: center; justify-items: center;
  max-width: 1080px; margin: 0 auto;
}
.logo-item {
  color: var(--mid); opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
  font-family: var(--ff-body);
  font-size: 1rem; letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-item:hover { opacity: 1; color: var(--ink); }
.logo-item.logo-bold { font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.92rem; }
.logo-item.logo-italic { font-family: var(--ff-wordmark); font-style: italic; font-weight: 500; font-size: 1.1rem; }
.logo-item.logo-thin { font-weight: 300; letter-spacing: 0.06em; }
.logo-item.logo-mark::before { content: "▲ "; color: var(--amber-d); }
.logo-item.logo-dot::after { content: "."; color: var(--amber-d); }
.logo-item-img {
  height: 40px; width: auto; max-width: 100%;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.logo-item-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@media(max-width:880px) {
  .logo-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 32px; }
  .logo-item-img { height: 36px; }
}
@media(max-width:480px) {
  .logo-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
  .logo-item-img { height: 32px; }
}

/* ── PORTFOLIO GRID ────────────────────────── */
.portfolio { padding: var(--space-7) 0; background: var(--canvas); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.portfolio-card {
  background: var(--paper); border: 1px solid var(--divider);
  border-radius: 12px; overflow: hidden;
  transition: var(--trans); display: flex; flex-direction: column;
  position: relative;
}
.portfolio-card:hover {
  border-color: var(--amber); transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(14,7,38,0.08);
}
.portfolio-card-media {
  aspect-ratio: 4/3; background: var(--paper-2);
  overflow: hidden; position: relative;
}
.portfolio-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.portfolio-card:hover .portfolio-card-media img { transform: scale(1.04); }
.portfolio-card-status {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(14,7,38,0.85); backdrop-filter: blur(6px);
  color: var(--paper); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.portfolio-card-status-soon {
  background: rgba(244,122,47,0.92); color: var(--ink);
}
.portfolio-card-body {
  padding: 22px 24px 24px; display: flex; flex-direction: column;
  flex: 1;
}
.portfolio-card-vertical {
  font-size: 0.72rem; color: var(--amber-d);
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 8px;
}
.portfolio-card h3 {
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: -0.015em; margin: 0 0 8px;
}
.portfolio-card p {
  font-size: 0.9rem; color: var(--mid);
  line-height: 1.55; margin: 0 0 16px;
}
.portfolio-card-outcome {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--divider);
  display: flex; gap: 10px; align-items: flex-start;
}
.portfolio-card-outcome-icon {
  flex-shrink: 0; width: 18px; height: 18px;
  color: var(--amber-d); margin-top: 1px;
}
.portfolio-card-outcome-text {
  font-size: 0.84rem; color: var(--ink); font-weight: 600;
  line-height: 1.45;
}
@media(max-width:980px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ──────────────────────────── */
.testimonials {
  padding: var(--space-7) 0;
  background: var(--ink); color: var(--paper);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: ""; position: absolute; top: 0; left: 50%;
  width: 600px; height: 600px; transform: translate(-50%, -40%);
  background: radial-gradient(circle, rgba(244,122,47,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-head h2 { color: var(--paper); }
.testimonials .section-head p.lead { color: rgba(247,244,238,0.7); }
.testimonials .section-head .eyebrow { color: var(--amber); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.testimonial-card {
  background: rgba(247,244,238,0.04);
  border: 1px solid rgba(247,244,238,0.1);
  border-radius: 14px; padding: 30px 28px;
  display: flex; flex-direction: column;
  transition: var(--trans);
}
.testimonial-card:hover {
  background: rgba(247,244,238,0.06);
  border-color: rgba(244,122,47,0.3);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 18px;
  color: var(--amber);
}
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-quote {
  font-size: 1rem; line-height: 1.65;
  color: rgba(247,244,238,0.92);
  margin: 0; flex: 1;
  font-style: italic;
}
.testimonial-quote::before {
  content: "\201C"; font-family: var(--ff-wordmark);
  font-size: 2.6rem; color: var(--amber); line-height: 0;
  vertical-align: -0.4em; margin-right: 4px; font-style: normal;
}
.testimonial-author {
  display: flex; gap: 14px; align-items: center;
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid rgba(247,244,238,0.1);
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  flex-shrink: 0; display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  color: var(--ink); letter-spacing: -0.01em;
}
.testimonial-author-info p:first-child {
  font-size: 0.94rem; font-weight: 700;
  color: var(--paper); margin: 0; letter-spacing: -0.01em;
}
.testimonial-author-info p:last-child {
  font-size: 0.78rem; color: rgba(247,244,238,0.6);
  margin: 2px 0 0; line-height: 1.4;
}
@media(max-width:980px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; } }

/* ── FAQ ───────────────────────────────────── */
.faq { padding: var(--space-7) 0; }
.faq-grid {
  display: grid; grid-template-columns: 360px 1fr; gap: 80px;
  align-items: flex-start;
}
.faq-aside { position: sticky; top: 90px; }
.faq-aside .eyebrow { margin-bottom: 14px; }
.faq-aside h2 { margin-bottom: 16px; font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.faq-aside p { color: var(--mid); font-size: 0.96rem; line-height: 1.6; margin-bottom: 24px; }
.faq-aside .btn { display: inline-flex; align-items: center; gap: 6px; }
.faq-list {}
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-item:first-child { border-top: 1px solid var(--divider); }
.faq-item summary {
  padding: 22px 40px 22px 0;
  font-size: 1.04rem; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
  cursor: pointer; list-style: none;
  position: relative; transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--amber-d); }
.faq-item summary::after {
  content: ""; position: absolute; right: 4px; top: 50%;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D97824' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
.faq-item[open] summary { color: var(--amber-d); }
.faq-item-body {
  padding: 0 40px 24px 0;
  font-size: 0.96rem; color: var(--mid); line-height: 1.65;
}
.faq-item-body p { margin: 0 0 10px; }
.faq-item-body p:last-child { margin-bottom: 0; }
.faq-item-body strong { color: var(--ink); font-weight: 600; }
@media(max-width:880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-aside { position: static; }
}

/* ── TEAM INTRO (Homepage) ─────────────────── */
.team-intro { padding: var(--space-7) 0; background: var(--paper-2); }
.team-intro-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; max-width: 920px; margin: 0 auto;
}
.team-intro-card {
  text-align: center; padding: 26px 20px;
  background: var(--paper); border: 1px solid var(--divider);
  border-radius: 14px; transition: var(--trans);
}
.team-intro-card:hover {
  border-color: var(--amber); transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14,7,38,0.07);
}
.team-intro-avatar {
  width: 78px; height: 78px; border-radius: 50%;
  margin: 0 auto 14px; display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.6rem;
  color: var(--paper); letter-spacing: -0.02em;
}
.team-intro-card h4 {
  font-size: 0.98rem; font-weight: 700;
  margin: 0 0 4px; letter-spacing: -0.01em;
}
.team-intro-card p {
  font-size: 0.78rem; color: var(--amber-d);
  font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin: 0;
}
@media(max-width:760px) { .team-intro-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── THINKING TEASER ───────────────────────── */
.thinking-teaser { padding: var(--space-7) 0; }
.thinking-teaser-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.thinking-card {
  background: var(--paper); border: 1px solid var(--divider);
  border-radius: 12px; padding: 26px 26px 28px;
  transition: var(--trans); display: flex; flex-direction: column;
}
.thinking-card:hover {
  border-color: var(--amber); transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14,7,38,0.07);
}
.thinking-card-tag {
  display: inline-block; padding: 4px 10px;
  background: var(--amber-l); color: var(--amber-d);
  border-radius: 100px; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 14px;
  align-self: flex-start;
}
.thinking-card h4 {
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.35;
  margin: 0 0 10px;
}
.thinking-card p {
  font-size: 0.92rem; color: var(--mid);
  line-height: 1.6; margin: 0 0 18px; flex: 1;
}
.thinking-card-link {
  font-size: 0.86rem; font-weight: 600;
  color: var(--amber-d); display: inline-flex;
  align-items: center; gap: 6px;
}
.thinking-card-link:hover { color: var(--ink); }
.thinking-card-link svg { width: 14px; height: 14px; }
@media(max-width:880px) { .thinking-teaser-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

/* ── FLOATING WHATSAPP ─────────────────────── */
.float-wa {
  position: fixed; bottom: 22px; right: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45),
              0 4px 12px rgba(14,7,38,0.15);
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s;
  text-decoration: none;
}
.float-wa::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid #25D366;
  opacity: 0; animation: floatWaPulse 2.4s ease-out infinite;
}
@keyframes floatWaPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55),
              0 6px 16px rgba(14,7,38,0.2);
}
.float-wa svg { width: 30px; height: 30px; }
.float-wa-tooltip {
  position: absolute; right: 70px; top: 50%;
  transform: translateY(-50%);
  background: var(--ink); color: var(--paper);
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.84rem; font-weight: 500;
  white-space: nowrap; opacity: 0;
  pointer-events: none; transition: opacity 0.2s;
  box-shadow: 0 4px 12px rgba(14,7,38,0.2);
}
.float-wa-tooltip::after {
  content: ""; position: absolute; right: -5px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px; background: var(--ink);
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }
@media(max-width:520px) {
  .float-wa { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .float-wa svg { width: 26px; height: 26px; }
  .float-wa-tooltip { display: none; }
}


/* ============================================
   v11 — Image enrichment for homepage sections
   ============================================ */

/* ── DIAGNOSIS: Add decorative side image ── */
.diagnosis-image-side {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-2);
  margin-bottom: 28px;
}
.diagnosis-image-side img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.diagnosis-image-side:hover img { transform: scale(1.03); }
.diagnosis-image-side::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,7,38,0.35) 0%, transparent 50%, rgba(244,122,47,0.18) 100%);
  pointer-events: none;
}
.diagnosis-image-overlay {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(14,7,38,0.18);
  max-width: calc(100% - 44px);
}
.diagnosis-image-overlay-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-d);
  font-weight: 700;
  margin-bottom: 4px;
}
.diagnosis-image-overlay-text {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* ── DISCOVERY: Add illustration column ── */
.discovery-with-image {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: flex-start;
  margin-top: 8px;
}
.discovery-with-image .discovery-grid {
  margin-top: 0;
}
.discovery-image-col {
  position: sticky;
  top: 100px;
}
.discovery-image-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.discovery-image-frame img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.discovery-image-frame:hover img { transform: scale(1.04); }
.discovery-image-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,7,38,0.55) 100%);
  pointer-events: none;
}
.discovery-image-caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  color: var(--paper);
}
.discovery-image-caption-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber);
  font-weight: 700; margin-bottom: 6px;
  display: block;
}
.discovery-image-caption-text {
  font-size: 1rem; line-height: 1.4;
  margin: 0; font-style: italic;
  color: rgba(247,244,238,0.95);
}
@media(max-width:980px) {
  .discovery-with-image {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .discovery-image-col { position: static; max-width: 480px; margin: 0 auto; }
}

/* ── METHODOLOGY: Add header decorative image ── */
.methodology-header-image {
  position: relative;
  aspect-ratio: 16/7;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 56px;
  background: rgba(247,244,238,0.04);
}
.methodology-header-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5) saturate(0.9);
}
.methodology-header-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,7,38,0.5) 0%, rgba(14,7,38,0.2) 50%, rgba(244,122,47,0.2) 100%);
}

/* ── THINKING TEASER: Add cover images to cards ── */
.thinking-card {
  padding: 0 !important;
  overflow: hidden;
}
.thinking-card-cover {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.thinking-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.thinking-card:hover .thinking-card-cover img { transform: scale(1.05); }
.thinking-card-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,7,38,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.thinking-card-body-padded {
  padding: 24px 26px 26px;
  display: flex; flex-direction: column; flex: 1;
}

/* ── FAQ: Add side image column ── */
.faq-aside-image {
  margin-top: 32px;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.faq-aside-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.faq-aside-image:hover img { transform: scale(1.03); }
.faq-aside-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,7,38,0.6) 100%);
}
.faq-aside-image-caption {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  color: var(--paper);
  z-index: 2;
}
.faq-aside-image-caption p {
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.45;
  margin: 0;
  color: rgba(247,244,238,0.95);
}
@media(max-width:880px) {
  .faq-aside-image { display: none; }
}

/* ── COMPARISON: Subtle decorative element ── */
.comparison {
  position: relative;
  overflow: hidden;
}
.comparison::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,122,47,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.comparison::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,7,38,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── CTA: Add decorative image background ── */
.cta-band-with-image {
  position: relative;
  overflow: hidden;
}
.cta-band-bg-image {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.18;
  background-size: cover;
  background-position: center;
  filter: saturate(0.7);
}
.cta-band-with-image .container {
  position: relative; z-index: 2;
}
.cta-band-with-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,7,38,0.85) 0%, rgba(14,7,38,0.7) 100%);
  z-index: 1;
}

/* ── TESTIMONIALS: Replace gradient avatars with image avatars ── */
.testimonial-avatar.avatar-img {
  background: var(--paper-2);
  overflow: hidden;
  padding: 0;
}
.testimonial-avatar.avatar-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── TEAM INTRO: Replace gradient avatars with photos ── */
.team-intro-avatar.avatar-img {
  overflow: hidden;
  padding: 0;
  background: var(--paper-2);
}
.team-intro-avatar.avatar-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


/* ── FAQ aside founder quote (replaces image) ── */
.faq-aside-quote {
  margin-top: 32px;
  padding: 24px 24px 22px;
  background: var(--paper);
  border-radius: 10px;
  border: 1px solid var(--divider);
  position: relative;
}
.faq-aside-quote-mark {
  width: 28px; height: 28px;
  fill: var(--amber);
  opacity: 0.85;
  margin-bottom: 10px;
  display: block;
}
.faq-aside-quote p {
  font-size: 0.96rem !important;
  line-height: 1.55;
  color: var(--ink-2) !important;
  font-style: italic;
  margin: 0 0 14px !important;
}
.faq-aside-quote-attrib {
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media(max-width:980px) {
  .faq-aside-quote { display: none; }
}

/* ── Diagnosis CTA panel (fills empty space below 3 points) ── */
.diagnosis-cta-panel {
  margin-top: 36px;
  flex: 1 1 auto;
  background: var(--ink);
  border-radius: 10px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.diagnosis-cta-panel::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(244,122,47,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.diagnosis-cta-panel-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.diagnosis-cta-panel-icon svg { width: 22px; height: 22px; }
.diagnosis-cta-panel h4 {
  color: var(--paper);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.diagnosis-cta-panel p {
  color: rgba(247,244,238,0.78);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 20px;
}
.diagnosis-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.96rem;
  margin-top: auto;
  padding-top: 4px;
  border-bottom: 1px solid transparent;
  transition: var(--trans);
  align-self: flex-start;
}
.diagnosis-cta-link:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}
.diagnosis-cta-link .icon {
  transition: transform 0.3s;
}
.diagnosis-cta-link:hover .icon {
  transform: translateX(4px);
}
@media(max-width:780px) {
  .diagnosis-cta-panel { margin-top: 24px; padding: 24px; }
}

/* ── Thinking featured (single-article hero layout) ── */
.thinking-featured {
  margin-top: 56px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.thinking-featured-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--paper); border-radius: 14px;
  border: 1px solid var(--divider); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: var(--trans);
}
.thinking-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(14,7,38,0.12);
}
.thinking-featured-cover {
  position: relative; min-height: 320px;
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
}
.thinking-featured-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.thinking-featured-body {
  padding: 44px 44px 40px; display: flex; flex-direction: column; justify-content: center;
}
.thinking-featured-body .thinking-card-tag {
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-d); font-weight: 700; margin-bottom: 16px;
}
.thinking-featured-body h3 {
  font-size: 1.55rem; line-height: 1.25; margin-bottom: 14px;
  letter-spacing: -0.015em; color: var(--ink);
}
.thinking-featured-body p {
  font-size: 0.96rem; line-height: 1.62; color: var(--ink-2);
  margin-bottom: 20px;
}
.thinking-featured-body .thinking-card-link {
  color: var(--amber-d); font-weight: 600; font-size: 0.94rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.thinking-featured-body .thinking-card-link svg { width: 16px; height: 16px; }
.thinking-coming {
  max-width: 780px; margin: 32px auto 0;
  text-align: center; padding-top: 32px;
  border-top: 1px dashed var(--divider);
}
.thinking-coming p {
  font-size: 0.9rem; line-height: 1.7; color: var(--mid);
  margin: 0;
}
.thinking-coming strong { color: var(--ink); }
@media(max-width:780px) {
  .thinking-featured-card { grid-template-columns: 1fr; }
  .thinking-featured-cover { min-height: 220px; }
  .thinking-featured-body { padding: 28px; }
  .thinking-featured-body h3 { font-size: 1.3rem; }
}

/* ── Discovery banner image ── */
.discovery-banner {
  position: relative;
  margin: 48px 0 60px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(14,7,38,0.12);
}
.discovery-banner img {
  width: 100%; display: block;
  aspect-ratio: 12/5;
  object-fit: cover;
}
@media (max-width: 760px) {
  .discovery-banner { margin: 32px 0 40px; border-radius: 10px; }
  .discovery-banner img { aspect-ratio: 4/3; }
  .discovery-banner-caption { padding: 22px 22px 20px; }
  .discovery-banner-caption p { font-size: 0.95rem; }
}
.discovery-banner-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 36px 28px;
  background: linear-gradient(to top, rgba(14,7,38,0.92) 0%, rgba(14,7,38,0.7) 60%, transparent 100%);
}
.discovery-banner-label {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); font-weight: 700;
  margin-bottom: 8px;
}
.discovery-banner-caption p {
  color: rgba(247,244,238,0.92);
  font-size: 1.02rem; line-height: 1.55;
  max-width: 680px; margin: 0;
}
@media(max-width:780px) {
  .discovery-banner img { aspect-ratio: 4/3; }
  .discovery-banner-caption { padding: 22px 24px 20px; }
  .discovery-banner-caption p { font-size: 0.92rem; }
}

/* ── Diagnosis evidence strip ── */
.diagnosis-evidence {
  display: grid; grid-template-columns: 5fr 6fr; gap: 0;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 18px 42px rgba(14,7,38,0.10);
  margin: 56px 0 60px;
  background: var(--paper);
  border: 1px solid var(--divider);
}
.diagnosis-evidence-image {
  position: relative;
}
.diagnosis-evidence-image img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  min-height: 320px;
}
.diagnosis-evidence-text {
  padding: 44px 44px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.diagnosis-evidence-text .eyebrow { margin-bottom: 14px; }
.diagnosis-evidence-text h3 {
  font-size: 1.6rem; line-height: 1.22;
  letter-spacing: -0.015em; margin-bottom: 14px;
  color: var(--ink);
}
.diagnosis-evidence-text p {
  font-size: 0.96rem; line-height: 1.6; color: var(--ink-2);
  margin: 0;
}
@media(max-width:780px) {
  .diagnosis-evidence { grid-template-columns: 1fr; }
  .diagnosis-evidence-image img { min-height: 200px; max-height: 260px; }
  .diagnosis-evidence-text { padding: 28px; }
  .diagnosis-evidence-text h3 { font-size: 1.3rem; }
}

/* ── Methodology banner image ── */
.methodology-banner {
  position: relative;
  margin: 36px 0 48px;
  border-radius: 14px;
  overflow: hidden;
}
.methodology-banner img {
  width: 100%; display: block;
  aspect-ratio: 16/7;
  object-fit: cover;
}
.methodology-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,7,38,0.55) 0%, rgba(14,7,38,0.30) 60%, rgba(14,7,38,0.85) 100%);
}
.methodology-banner-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 36px 26px;
  background: linear-gradient(to top, rgba(14,7,38,0.95) 0%, rgba(14,7,38,0.0) 100%);
}
.methodology-banner-label {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); font-weight: 700;
  margin-bottom: 6px;
}
.methodology-banner-caption p {
  color: rgba(247,244,238,0.92);
  font-size: 1rem; line-height: 1.55;
  max-width: 720px; margin: 0;
}
@media(max-width:780px) {
  .methodology-banner img { aspect-ratio: 4/3; }
  .methodology-banner-caption { padding: 20px 22px 18px; }
  .methodology-banner-caption p { font-size: 0.9rem; }
}

/* ── Skip-to-main-content link (a11y) ─────── */
.skip-link {
  position: absolute; left: 0; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; border-radius: 0 0 6px 0;
  transform: translateY(-100%);
  transition: transform 0.18s ease;
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--amber); outline-offset: 2px;
}

/* ── CASE SHOWCASE — Samyati feature, mirror of tech-showcase ── */
.case-showcase {
  background: var(--canvas);
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}
.case-showcase::before {
  content: ""; position: absolute; left: -180px; top: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,122,47,0.10) 0%, transparent 70%);
  z-index: 0;
}
.case-showcase::after {
  content: ""; position: absolute; right: -100px; bottom: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,7,38,0.05) 0%, transparent 70%);
  z-index: 0;
}
.case-showcase-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.case-showcase .eyebrow { color: var(--amber-d); }
.case-showcase h2 em { font-style: italic; color: var(--amber-d); font-weight: 700; }
.case-showcase p { color: var(--ink-2); margin-bottom: 16px; }
.case-showcase-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin: 28px 0 32px;
}
.case-stat-mini {
  background: var(--paper); border: 1px solid var(--divider);
  border-radius: 10px; padding: 18px 20px;
}
.case-stat-mini-num {
  font-size: 1.8rem; font-weight: 700; color: var(--amber-d);
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 4px;
}
.case-stat-mini-label {
  font-size: 0.82rem; color: var(--mid); line-height: 1.35;
}
.case-showcase-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.case-showcase-media {
  position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(14,7,38,0.18), 0 4px 12px rgba(14,7,38,0.06);
  aspect-ratio: 1.4/1; background: var(--paper-2);
}
.case-showcase-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-showcase-launch-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(14,7,38,0.92); backdrop-filter: blur(10px);
  padding: 8px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--paper);
  display: inline-flex; align-items: center; gap: 8px;
}
.case-showcase-launch-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25D366; box-shadow: 0 0 0 3px rgba(37,211,102,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@media (max-width: 880px) {
  .case-showcase-grid { grid-template-columns: 1fr; gap: 36px; }
  .case-showcase-stats { grid-template-columns: 1fr; }
  .case-showcase-actions .btn,
  .case-showcase-actions .btn-primary,
  .case-showcase-actions .btn-outline { width: 100%; justify-content: center; }
}

/* ── RESPONSIVE GRID UTILITIES ─────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ── PRODUCT FEATURE CARD (products.html) ── */
.product-feature-card { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; }
.product-feature-card-media { aspect-ratio: 1.1/1; }
@media (max-width: 760px) {
  .product-feature-card { grid-template-columns: 1fr; }
  .product-feature-card-media { aspect-ratio: 16/10; }
}

/* ── SECTION VERTICAL PADDING — MOBILE COMPRESSION ───────── */
@media (max-width: 760px) {
  .diagnosis,
  .methodology,
  .verticals,
  .cases,
  .different,
  .cta-band,
  .travo-section,
  .tech-showcase,
  .case-showcase,
  .discovery,
  .portfolio,
  .testimonials,
  .comparison,
  .faq { padding-top: var(--space-5); padding-bottom: var(--space-5); }
}
