/* ============================================================
   Triune Capital Group — Global Stylesheet
   Navy (#001F3F) · Gold (#D4A853) · Maroon (#800020)
   Instrument Serif (display) + DM Sans (body) + JetBrains Mono (accent)
   ============================================================ */

/* ----- Custom Properties / Design Tokens ----- */
:root {
  /* Brand palette */
  --navy:        #001F3F;
  --navy-light:  #002B57;
  --navy-dark:   #00152B;
  --gold:        #D4A853;
  --gold-light:  #E0BC72;
  --gold-dark:   #B8941E;
  --maroon:      #800020;
  --maroon-light:#9A1035;

  /* Extended navy palette */
  --navy-950: #000D1A;
  --navy-900: #001F3F;
  --navy-800: #002B57;
  --navy-700: #003870;
  --navy-600: #004D99;

  /* Extended gold palette */
  --gold-500: #D4A853;
  --gold-400: #E0BC72;
  --gold-300: #EBD092;
  --gold-200: #F5E4B8;
  --gold-100: #FDF6E7;

  /* Slate palette */
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;

  /* Accent colors */
  --green-500: #00C48C;
  --blue-500:  #4E8CFF;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-300:    #D1D5DB;
  --gray-400:    #9CA3AF;
  --gray-500:    #6B7280;
  --gray-600:    #4B5563;
  --gray-700:    #374151;
  --gray-800:    #1F2937;
  --gray-900:    #111827;

  /* Semantic */
  --text:        var(--gray-800);
  --text-muted:  var(--gray-500);
  --text-light:  var(--gray-400);
  --bg:          var(--white);
  --bg-alt:      var(--off-white);
  --border:      var(--gray-200);
  --success:     #059669;
  --info:        #2563EB;

  /* Typography — Font families */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'IBM Plex Mono', monospace;

  /* Typography — Scale */
  --text-xs:  0.75rem;
  --text-sm:  0.875rem;
  --text-base: 1rem;
  --text-lg:  1.125rem;
  --text-xl:  1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width:   1200px;
  --nav-height:  88px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-full: 50px;

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration:      0.3s;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 32px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(212,168,83,0.25);
}


/* ----- Reset ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.loaded {
  opacity: 1;
}

@keyframes forceReveal {
  to { opacity: 1; }
}

body {
  animation: forceReveal 0s 0.5s forwards;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ----- Focus Indicators (WCAG AA) ----- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: var(--space-md); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }


/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}


/* ----- Buttons ----- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  min-height: 44px;
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  min-height: 44px;
}
.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  min-height: 44px;
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost--gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost--gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-ghost--white {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost--white:hover {
  background: var(--white);
  color: var(--navy);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 7000;
  background: rgba(0,31,63,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--nav-height);
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.nav--scrolled {
  background: rgba(0,31,63,0.95);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}
.nav__logo img {
  width: 140px;
  height: 140px;
  margin: -26px -16px -34px 0;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: 'Cormorant Garamond', 'Instrument Serif', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Hide logo text on mobile, show only shield */
@media (max-width: 600px) {
  .nav__logo-text { display: none; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--duration) var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--white); }

/* Active page indicator */
.nav__links a.active {
  color: var(--white);
}
.nav__links a.active::after {
  width: 100%;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 0.6rem 1.3rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__cta::after { display: none; }
.nav__cta:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  color: var(--navy) !important;
}

.nav__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger svg { width: 24px; height: 24px; }

/* Mobile nav */
@media (max-width: 900px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    padding: var(--space-2xl) 24px;
    gap: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
    pointer-events: none;
    text-align: center;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
  }
  .nav__links a::after { display: none; }
  .nav__links a.active { color: var(--white); }
}


/* ============================================================
   HERO — Asymmetric two-column, editorial layout
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--navy-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-height: 1000px) {
  .hero { min-height: 90vh; }
}

/* ---- Animated gradient mesh orbs ---- */
.hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero__mesh-orb--1 {
  width: 600px; height: 600px;
  top: -10%; left: 15%;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
  animation: meshDrift1 60s ease-in-out infinite;
}
.hero__mesh-orb--2 {
  width: 500px; height: 500px;
  top: 40%; right: -5%;
  background: radial-gradient(circle, rgba(212,168,83,0.05) 0%, transparent 70%);
  animation: meshDrift2 55s ease-in-out infinite;
}
.hero__mesh-orb--3 {
  width: 400px; height: 400px;
  bottom: -10%; left: 40%;
  background: radial-gradient(circle, rgba(212,168,83,0.04) 0%, transparent 70%);
  animation: meshDrift3 50s ease-in-out infinite;
}

@keyframes meshDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, 30px) scale(1.05); }
  66%      { transform: translate(-20px, -15px) scale(0.97); }
}
@keyframes meshDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-30px, 20px) scale(1.03); }
  66%      { transform: translate(25px, -25px) scale(0.96); }
}
@keyframes meshDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(20px, -20px) scale(1.04); }
  66%      { transform: translate(-35px, 15px) scale(0.98); }
}

/* ---- Hero inner — two-column grid ---- */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-3xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 5rem) 24px 4rem;
  padding-left: max(24px, 8vw);
}

/* ---- Left column — Content ---- */
.hero__content {
  max-width: 620px;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-500);
  margin-bottom: var(--space-lg);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-xl);
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-500);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate-400);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero__trust-micro {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-500);
  letter-spacing: 0.5px;
}

/* ---- Right column — Logo centrepiece with decorative aura ---- */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 420px;
}

.hero__logo-img {
  display: block;
  position: relative;
  z-index: 2;
  width: 180%;
  max-width: 1100px;
  margin: -20% -40%;
  filter: drop-shadow(0 0 40px rgba(212,168,83,0.18));
  image-rendering: -webkit-optimize-contrast;
}

/* — Radial glow — */
.hero__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.10) 0%, rgba(212,168,83,0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.7; transform: translate(-50%, -50%) scale(1.08); }
}

/* — Orbital ring — */
.hero__orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 380px; height: 380px;
  margin-top: -190px; margin-left: -190px;
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: 50%;
  pointer-events: none;
  animation: orbitSpin 90s linear infinite;
}
.hero__orbit::before,
.hero__orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--gold-500);
}
.hero__orbit::before {
  width: 6px; height: 6px;
  top: -3px; left: 50%; margin-left: -3px;
  opacity: 0.6;
  box-shadow: 0 0 10px rgba(212,168,83,0.4);
}
.hero__orbit::after {
  width: 4px; height: 4px;
  bottom: 20%; right: -2px;
  opacity: 0.35;
  box-shadow: 0 0 8px rgba(212,168,83,0.3);
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

/* — Floating particles — */
.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-500);
  pointer-events: none;
}
.hero__particle--1 {
  width: 5px; height: 5px;
  top: 10%; left: 15%;
  opacity: 0.4;
  animation: particleDrift1 10s ease-in-out infinite;
}
.hero__particle--2 {
  width: 3px; height: 3px;
  top: 20%; right: 10%;
  opacity: 0.25;
  animation: particleDrift2 14s ease-in-out infinite;
}
.hero__particle--3 {
  width: 4px; height: 4px;
  bottom: 22%; left: 10%;
  opacity: 0.3;
  animation: particleDrift3 12s ease-in-out infinite;
}
.hero__particle--4 {
  width: 3px; height: 3px;
  bottom: 15%; right: 18%;
  opacity: 0.2;
  animation: particleDrift4 16s ease-in-out infinite;
}
.hero__particle--5 {
  width: 2px; height: 2px;
  top: 45%; right: 5%;
  opacity: 0.35;
  animation: particleDrift5 11s ease-in-out infinite;
}
@keyframes particleDrift1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  50%      { transform: translate(12px, -18px); opacity: 0.15; }
}
@keyframes particleDrift2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.25; }
  50%      { transform: translate(-14px, 10px); opacity: 0.1; }
}
@keyframes particleDrift3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50%      { transform: translate(10px, 14px); opacity: 0.12; }
}
@keyframes particleDrift4 {
  0%, 100% { transform: translate(0, 0); opacity: 0.2; }
  50%      { transform: translate(-8px, -12px); opacity: 0.08; }
}
@keyframes particleDrift5 {
  0%, 100% { transform: translate(0, 0); opacity: 0.35; }
  50%      { transform: translate(-6px, 16px); opacity: 0.15; }
}

/* ---- Bottom trust strip ---- */
.hero__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: 0 24px var(--space-2xl);
}
.hero__bottom-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.3;
}
.hero__bottom-text {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--slate-500);
  white-space: nowrap;
}

/* ---- Hero responsive ---- */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 2rem;
    text-align: center;
  }
  .hero__visual {
    display: flex;
    justify-content: center;
  }
  .hero__logo-img { width: 160%; max-width: 800px; margin: -15% -30%; }
  .hero__geo { display: none; }
  .hero__content { margin: 0 auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__headline {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__logo-img { width: 150%; max-width: 600px; margin: -12% -25%; }
  .hero__bottom {
    padding-bottom: var(--space-xl);
  }
  .hero__bottom-line { width: 30px; }
}


/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__text .section-sub { margin-bottom: var(--space-xl); }

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.about__highlight {
  padding: var(--space-lg);
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.about__highlight-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.1);
  color: var(--gold-dark);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}
.about__highlight-icon svg { width: 20px; height: 20px; }

.about__highlight h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.about__highlight p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about__image { order: -1; }
}


/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.service-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
  position: relative;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, var(--white) 100%);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.1);
  color: var(--gold-dark);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}
.service-card__icon svg { width: 24px; height: 24px; }

.service-card__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.service-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.service-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 0.2rem 0.6rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   AI APPS SHOWCASE
   ============================================================ */
.ai-apps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.ai-app-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--duration) var(--ease);
}
.ai-app-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.ai-app-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}
.ai-app-card__badge--marketing {
  background: rgba(37,99,235,0.1);
  color: var(--info);
}
.ai-app-card__badge--finance {
  background: rgba(5,150,105,0.1);
  color: var(--success);
}
.ai-app-card__badge svg { width: 14px; height: 14px; }

.ai-app-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.ai-app-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.ai-app-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.ai-app-card__feature {
  padding: 0.25rem 0.7rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--gray-600);
}

.ai-app-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.ai-app-card__cta svg { width: 16px; height: 16px; }

.ai-app-card__cta--marketing { color: var(--info); }
.ai-app-card__cta--finance { color: var(--success); }

@media (max-width: 768px) {
  .ai-apps__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   HOW IT WORKS / PROCESS
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  counter-reset: step;
}

.process__step {
  text-align: center;
  counter-increment: step;
  position: relative;
}

.process__step-num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
}

.process__step h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.process__step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Connector line between steps */
.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: var(--border);
}

@media (max-width: 768px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__step::after { display: none; }
}
@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.testimonial-card__stars svg { width: 16px; height: 16px; }

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq__list {
  max-width: 720px;
  margin: var(--space-2xl) auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  min-height: 44px;
  gap: var(--space-md);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold-dark);
  transition: transform var(--duration) var(--ease);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq__answer-inner {
  padding-bottom: var(--space-lg);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ============================================================
   SECTION 1 — WHAT WE DO (3 cards)
   ============================================================ */
.wwd__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.wwd__card {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.wwd__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.wwd__card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-500);
}

.wwd__card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
}

.wwd__card-desc {
  color: var(--slate-600);
  font-size: var(--text-base);
  line-height: 1.65;
  flex: 1;
}

.wwd__card-link {
  margin-top: var(--space-lg);
  color: var(--navy-900);
  font-size: var(--text-sm);
  font-weight: 600;
}

@media (max-width: 768px) {
  .wwd__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}


/* ============================================================
   SECTION 2 — SERVICES PREVIEW (stacked rows)
   ============================================================ */
.svc-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: var(--space-3xl);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(212, 168, 83, 0.1);
}

.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(0, 31, 63, 0.6);
  text-decoration: none;
  color: var(--white);
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.svc-row:hover {
  background: rgba(0, 31, 63, 0.85);
  padding-left: calc(var(--space-xl) + 8px);
}

.svc-row__left { flex: 1; }

.svc-row__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-500);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.svc-row__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: 4px;
}

.svc-row__desc {
  color: var(--slate-400);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.svc-row__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.svc-row__price {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  color: var(--gold-400);
  font-weight: 600;
}

.svc-row__arrow {
  font-size: 1.25rem;
  color: var(--slate-500);
  transition: transform 0.3s ease, color 0.3s ease;
}
.svc-row:hover .svc-row__arrow {
  transform: translateX(4px);
  color: var(--gold-400);
}

@media (max-width: 640px) {
  .svc-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-lg);
  }
  .svc-row__right { width: 100%; justify-content: space-between; }
}


/* ============================================================
   SECTION 3 — AI PRODUCTS SPOTLIGHT
   ============================================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.products__card {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.products__card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.products__card-accent {
  height: 4px;
}
.products__card-accent--marketing {
  background: linear-gradient(90deg, var(--blue-500), #7C3AED);
}
.products__card-accent--finance {
  background: linear-gradient(90deg, var(--green-500), #059669);
}

.products__card-body {
  padding: var(--space-xl) var(--space-xl) var(--space-2xl);
}

.products__card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.products__card-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
}

.products__card-desc {
  color: var(--slate-600);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.products__card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-xl);
}
.products__card-features span {
  font-size: var(--text-xs);
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-weight: 500;
}

@media (max-width: 768px) {
  .products__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}


/* ============================================================
   SECTION 4 — HOW IT WORKS (Timeline)
   ============================================================ */
.timeline {
  position: relative;
  max-width: 640px;
  margin: var(--space-3xl) auto 0;
  padding-left: 40px;
}

.timeline__line {
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500) 0%, rgba(212, 168, 83, 0.15) 100%);
}

.timeline__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding-bottom: var(--space-2xl);
}
.timeline__step:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute;
  left: -40px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 2px solid var(--gold-500);
  color: var(--gold-400);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline__content {
  padding-top: 4px;
}

.timeline__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: 6px;
}

.timeline__desc {
  color: var(--slate-400);
  font-size: var(--text-base);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .timeline { padding-left: 32px; }
  .timeline__line { left: 15px; }
  .timeline__marker { left: -32px; width: 32px; height: 32px; font-size: 12px; }
}


/* ============================================================
   SECTION 5 — TESTIMONIALS CAROUSEL
   ============================================================ */
.testi-carousel {
  max-width: 680px;
  margin: var(--space-3xl) auto 0;
  text-align: center;
}

.testi-carousel__track {
  position: relative;
  min-height: 280px;
}

.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testi-slide--active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testi-slide__quote-mark {
  width: 40px;
  height: 32px;
  color: var(--gold-500);
  margin-bottom: var(--space-lg);
  opacity: 0.4;
}

.testi-slide__text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--navy-900);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 580px;
}

.testi-slide__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testi-slide__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-slide__name {
  font-weight: 600;
  color: var(--navy-900);
  font-size: var(--text-sm);
}
.testi-slide__role {
  color: var(--slate-500);
  font-size: var(--text-xs);
}

.testi-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-xl);
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-300);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.testi-dot--active {
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .testi-slide__text { font-size: var(--text-lg); }
  .testi-carousel__track { min-height: 320px; }
}


/* ============================================================
   SECTION 6 — FAQ (gold left-border variant)
   ============================================================ */
.faq__list--gold .faq__item {
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease;
}
.faq__list--gold .faq__item.active {
  border-left-color: var(--gold-500);
}


/* ============================================================
   SECTION 7 — FINAL CTA (full-width dark)
   ============================================================ */
.cta-final {
  background: var(--navy-950);
  color: var(--white);
  padding: var(--space-4xl) 0;
  overflow: hidden;
  position: relative;
}

.cta-final__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}
.cta-final__headline em {
  font-style: italic;
  color: var(--gold-400);
}

.cta-final__sub {
  color: var(--slate-400);
  font-size: var(--text-lg);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.cta-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cta-final__actions { flex-direction: column; }
  .cta-final__actions .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   CTA SECTION (legacy — kept for backward compat)
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.cta-section .btn-primary { font-size: 1rem; padding: 1rem 2rem; }


/* ============================================================
   CONTACT / GET STARTED
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
}

.contact__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact__channel {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact__channel-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.1);
  color: var(--gold-dark);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.contact__channel-icon svg { width: 18px; height: 18px; }

.contact__channel-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact__channel-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

/* Newsletter embed */
.newsletter {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin-top: var(--space-lg);
}

.newsletter__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.newsletter__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* Contact form */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.contact__form-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.contact__form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color var(--duration) var(--ease);
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  min-height: 44px;
  border: none;
  cursor: pointer;
}
.form-submit:hover {
  background: var(--navy-light);
}

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact__channels { grid-template-columns: 1fr; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
  letter-spacing: 0.01em;
}
.footer__brand img { width: 56px; height: auto; }
.footer__brand-gold { color: var(--gold); }

.footer__desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  color: var(--slate-400);
}

.footer__email {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: var(--space-md);
}
.footer__email a {
  color: var(--slate-500);
  transition: color var(--duration) var(--ease);
}
.footer__email a:hover { color: var(--white); }

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease);
}
.footer__social a:hover {
  color: var(--gold);
}
.footer__social svg { width: 16px; height: 16px; }

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.footer__links li { margin-bottom: var(--space-sm); }
.footer__links a {
  font-size: 0.875rem;
  color: var(--slate-400);
  transition: color var(--duration) var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: var(--slate-600);
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__cookie-settings {
  color: var(--slate-600);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}
.footer__cookie-settings:hover { color: var(--gold); }

@media (max-width: 600px) {
  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   FLOATING ANNOUNCEMENT
   ============================================================ */
.float-announce {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  width: 320px;
  background: var(--navy);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  transition: all 0.5s var(--ease);
  pointer-events: none;
}
.float-announce.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.float-announce__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: all var(--duration) var(--ease);
}
.float-announce__close:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.float-announce__close svg { width: 16px; height: 16px; }

.float-announce__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.float-announce__badge {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--white);
  flex-shrink: 0;
}
.float-announce__badge svg { width: 18px; height: 18px; }

.float-announce__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.float-announce__label small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.float-announce__body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}
.float-announce__body strong { color: var(--white); }

.float-announce__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  transition: all var(--duration) var(--ease);
}
.float-announce__cta:hover { opacity: 0.9; }
.float-announce__cta svg { width: 15px; height: 15px; }

@media (max-width: 480px) {
  .float-announce { right: 12px; left: 12px; width: auto; bottom: 12px; }
}


/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-md) 24px;
  background: var(--navy);
  border-top: 1px solid rgba(212,175,55,0.25);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}

.cookie-banner p { margin: 0; flex: 1; min-width: 220px; }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-banner__link {
  color: var(--gold) !important;
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-banner__btn {
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.cookie-banner__accept {
  background: var(--gold);
  color: var(--navy);
}
.cookie-banner__accept:hover { background: var(--gold-light); }
.cookie-banner__decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-banner__decline:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}


/* ============================================================
   PORTFOLIO / RESULTS
   ============================================================ */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.portfolio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  background: var(--white);
}
.portfolio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.portfolio-card__image {
  aspect-ratio: 16/10;
  background: var(--gray-100);
  overflow: hidden;
}
.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.03);
}

.portfolio-card__body {
  padding: var(--space-lg);
}

.portfolio-card__tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}

.portfolio-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.portfolio-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}


/* ============================================================
   SCROLL REVEAL ANIMATION
   Supports .revealed (new) and .in-view (legacy) trigger classes.
   ============================================================ */
.reveal,
.reveal-stagger {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed,
.reveal.in-view,
.reveal-stagger.revealed,
.reveal-stagger.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal.reveal-scale {
  transform: scale(0.95);
}
.reveal.reveal-scale.revealed,
.reveal.reveal-scale.in-view {
  transform: scale(1);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }


/* ============================================================
   CARDS
   ============================================================ */
.card {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.card-dark {
  background: var(--navy-800, #002B57);
  color: var(--white);
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.badge-new {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  margin-left: 0.4rem;
  vertical-align: middle;
}


/* ============================================================
   SERVICES PAGE — FEATURED AI SHOWCASE
   ============================================================ */
.featured-service {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}
.featured-service::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.featured-service .container { position: relative; z-index: 1; }

.featured-service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.featured-service__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}
.featured-service__badge svg { width: 16px; height: 16px; }

.featured-service__text h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}
.featured-service__text h2 em {
  font-style: italic;
  color: var(--gold);
}

.featured-service__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.featured-service__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-xl);
}

.featured-service__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.featured-service__feature svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.featured-service__price {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-lg);
}
.featured-service__price strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.featured-service__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.featured-service__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.featured-service__card {
  padding: var(--space-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}
.featured-service__card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,55,0.3);
}

.featured-service__card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}
.featured-service__card-icon svg { width: 20px; height: 20px; }

.featured-service__card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.featured-service__card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

@media (max-width: 768px) {
  .featured-service__grid { grid-template-columns: 1fr; }
  .featured-service__cards { order: -1; }
  .featured-service__features { grid-template-columns: 1fr; }
}


/* ============================================================
   SERVICES PAGE — COMPARISON TABLE
   ============================================================ */
.comparison {
  overflow-x: auto;
  margin-top: var(--space-2xl);
  -webkit-overflow-scrolling: touch;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison__table thead th {
  padding: var(--space-md) var(--space-lg);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
.comparison__table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison__table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.comparison__table tbody td {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.comparison__table tbody tr:hover { background: var(--bg-alt); }
.comparison__table tbody tr:last-child td { border-bottom: none; }

.comparison__table .comparison__service {
  font-weight: 600;
  color: var(--navy);
}

.comparison__table .comparison__price {
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* Mobile stacked cards */
.comparison__cards { display: none; }

@media (max-width: 768px) {
  .comparison__table-wrap { display: none; }
  .comparison__cards { display: grid; gap: var(--space-md); }

  .comparison__card {
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
  }

  .comparison__card-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gold);
  }

  .comparison__card-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    font-size: 0.88rem;
  }

  .comparison__card-label {
    color: var(--text-muted);
    font-weight: 500;
  }

  .comparison__card-value {
    color: var(--navy);
    font-weight: 500;
    text-align: right;
    max-width: 60%;
  }

  .comparison__card-value--price {
    color: var(--gold-dark);
    font-weight: 600;
  }
}


/* ============================================================
   SERVICES PAGE — WHY TRIUNE DIFFERENTIATORS
   ============================================================ */
.why-triune__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.why-triune__card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--duration) var(--ease);
}
.why-triune__card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-triune__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: rgba(212,175,55,0.1);
  color: var(--gold-dark);
  border-radius: 50%;
}
.why-triune__icon svg { width: 28px; height: 28px; }

.why-triune__card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.why-triune__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-triune__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}


/* ============================================================
   SERVICES PAGE — CTA TRUST SIGNALS
   ============================================================ */
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.cta-trust__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.cta-trust__item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}


/* ============================================================
   SERVICES PAGE — HERO (redesigned)
   ============================================================ */
.svc-hero {
  background: var(--navy-950);
  color: var(--white);
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.svc-hero__inner {
  max-width: 640px;
}

.svc-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-lg);
}

.svc-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.svc-hero__headline em {
  font-style: italic;
  color: var(--gold-400);
}

.svc-hero__sub {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--slate-400);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
}


/* ============================================================
   SERVICES PAGE — FEATURED AI SECTION
   ============================================================ */
.svc-featured {
  padding: var(--space-4xl) 0;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
  overflow: hidden;
}

.svc-featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.svc-featured__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-md);
}

.svc-featured__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.svc-featured__desc {
  color: var(--slate-400);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.svc-featured__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: var(--space-xl);
}

.svc-featured__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--slate-300);
}
.svc-featured__feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-500);
}

.svc-featured__price {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  color: var(--slate-400);
  margin-bottom: var(--space-xl);
}
.svc-featured__price strong {
  color: var(--gold-400);
  font-size: 20px;
}

.svc-featured__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Flow diagram visual */
.svc-featured__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow-diagram {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* Line draw animation */
.flow-line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
}
.revealed .flow-line,
.in-view .flow-line {
  opacity: 1;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.revealed .flow-line--1, .in-view .flow-line--1 { transition-delay: 0.2s; }
.revealed .flow-line--2, .in-view .flow-line--2 { transition-delay: 0.6s; }
.revealed .flow-line--3, .in-view .flow-line--3 { transition-delay: 0.7s; }
.revealed .flow-line--4, .in-view .flow-line--4 { transition-delay: 1.1s; }
.revealed .flow-line--5, .in-view .flow-line--5 { transition-delay: 1.2s; }

/* Node pulse animation */
.flow-node {
  opacity: 0;
  transform-origin: center;
}
.revealed .flow-node,
.in-view .flow-node {
  opacity: 1;
  animation: nodePulse 2.5s ease-in-out infinite;
}
.revealed .flow-node--1, .in-view .flow-node--1 { animation-delay: 0s; }
.revealed .flow-node--2, .in-view .flow-node--2 { animation-delay: 0.4s; }
.revealed .flow-node--3, .in-view .flow-node--3 { animation-delay: 0.8s; }
.revealed .flow-node--4, .in-view .flow-node--4 { animation-delay: 1.0s; }
.revealed .flow-node--5, .in-view .flow-node--5 { animation-delay: 1.4s; }

@keyframes nodePulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@media (max-width: 768px) {
  .svc-featured__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .svc-featured__visual { display: none; }
  .svc-featured__features { grid-template-columns: 1fr; }
}


/* ============================================================
   SERVICES PAGE — ELITE SERVICE CARDS
   ============================================================ */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
}

/* Gold top border accent - animates on hover */
.svc-card__accent {
  height: 3px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.svc-card__accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-500);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212, 168, 83, 0.12);
  border-color: var(--gold-300);
}
.svc-card:hover .svc-card__accent::after {
  transform: translateX(0);
}
.svc-card:hover .svc-card__icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.3));
}

.svc-card__icon {
  padding: var(--space-xl) var(--space-xl) 0;
}
.svc-card__icon svg {
  width: 48px;
  height: 48px;
  color: var(--gold-500);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  padding: var(--space-md) var(--space-xl) 0;
}

.svc-card__desc {
  color: var(--slate-600);
  font-size: var(--text-sm);
  line-height: 1.65;
  padding: var(--space-sm) var(--space-xl) 0;
}

.svc-card__deliverables {
  list-style: none;
  padding: var(--space-md) var(--space-xl) 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-card__deliverables li {
  font-size: var(--text-sm);
  color: var(--slate-500);
  padding-left: 18px;
  position: relative;
}
.svc-card__deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

.svc-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl) 0;
  margin-top: auto;
}

.svc-card__price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-500);
}

.svc-card__timeline {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.svc-card__cta {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
  color: var(--navy-900);
  font-size: var(--text-sm);
  font-weight: 600;
}
.svc-card:hover .svc-card__cta::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .svc-cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}


/* ============================================================
   SERVICES PAGE — WHY TRIUNE (redesigned)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.why-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}
.why-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-500);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.why-card__desc {
  color: var(--slate-400);
  font-size: var(--text-sm);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}


/* ============================================================
   SERVICES PAGE — CTA TRUST TEXT
   ============================================================ */
.cta-final__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  font-size: var(--text-sm);
  color: var(--slate-500);
}


/* ============================================================
   ABOUT PAGE — STORY
   ============================================================ */
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-story__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.about-story__text p:last-child { margin-bottom: 0; }
.about-story__text strong { color: var(--navy); }

.about-story__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: var(--space-2xl);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story__quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}
.about-story__quote em { color: var(--gold); font-style: italic; }

.about-story__attribution {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.about-story__attribution strong { color: var(--gold); }

@media (max-width: 768px) {
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__visual { order: -1; min-height: auto; }
}


/* ============================================================
   ABOUT PAGE — VALUES
   ============================================================ */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.values__card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--duration) var(--ease);
}
.values__card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.values__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: rgba(212,175,55,0.1);
  color: var(--gold-dark);
  border-radius: 50%;
}
.values__icon svg { width: 26px; height: 26px; }

.values__card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.values__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .values__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   ABOUT PAGE — BY THE NUMBERS / STATS
   ============================================================ */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.stat-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--duration) var(--ease);
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-card__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.stat-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   ABOUT PAGE — APPROACH COMPARISON
   ============================================================ */
.approach__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  align-items: start;
}

.approach__col {
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.approach__col--traditional {
  background: var(--bg-alt);
}

.approach__col--triune {
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, var(--white) 100%);
  border-color: var(--gold);
}

.approach__col-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.approach__col-title svg { width: 20px; height: 20px; }

.approach__col--traditional .approach__col-title { color: var(--text-muted); }
.approach__col--triune .approach__col-title { color: var(--gold-dark); }

.approach__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.approach__item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

.approach__col--traditional .approach__item svg { color: var(--maroon); }
.approach__col--triune .approach__item svg { color: var(--success); }

.approach__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-top: var(--space-2xl);
}

@media (max-width: 768px) {
  .approach__grid { grid-template-columns: 1fr; }
  .approach__vs { padding-top: 0; }
}


/* ============================================================
   ABOUT PAGE — REDESIGNED HERO
   ============================================================ */
.abt-hero {
  background: var(--navy-950);
  color: var(--white);
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.abt-hero__inner {
  max-width: 640px;
}

.abt-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-lg);
}

.abt-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.abt-hero__headline em {
  font-style: italic;
  color: var(--gold-400);
}

.abt-hero__sub {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--slate-400);
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.abt-hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}


/* ============================================================
   ABOUT PAGE — EDITORIAL STORY
   ============================================================ */
.abt-story {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.abt-story__body {
  text-align: left;
  margin-top: var(--space-2xl);
}

.abt-story__body p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--slate-700);
  margin-bottom: var(--space-lg);
}
.abt-story__body p:last-child { margin-bottom: 0; }


/* Pull quote */
.abt-pullquote {
  margin: var(--space-3xl) 0 0;
  padding: var(--space-xl) var(--space-2xl);
  border-left: 3px solid var(--gold-500);
  text-align: left;
  background: var(--gold-100);
  border-radius: 0 12px 12px 0;
}

.abt-pullquote p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--navy-900);
  line-height: 1.6;
  margin: 0 0 var(--space-sm);
}

.abt-pullquote footer {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}


/* ============================================================
   ABOUT PAGE — VALUES GRID (redesigned)
   ============================================================ */
.abt-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.abt-value {
  padding: 0;
  overflow: hidden;
}

.abt-value__accent {
  height: 3px;
  background: var(--gold-500);
}

.abt-value__body {
  padding: var(--space-xl);
}

.abt-value__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
}

.abt-value__desc {
  color: var(--slate-600);
  font-size: var(--text-sm);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .abt-values__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}


/* ============================================================
   ABOUT PAGE — COMPARISON (redesigned)
   ============================================================ */
.abt-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: var(--space-3xl);
  max-width: 800px;
  margin-inline: auto;
}

.abt-compare__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.abt-compare__header {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: var(--space-md) var(--space-lg);
  color: var(--slate-500);
}

.abt-compare__header--gold {
  color: var(--gold-400);
}

.abt-compare__row {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-sm);
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.abt-compare__col--trad .abt-compare__row {
  color: var(--slate-500);
}

.abt-compare__col--triune .abt-compare__row {
  color: var(--white);
  border-left: 2px solid var(--gold-500);
  background: rgba(212, 168, 83, 0.04);
}

/* VS divider */
.abt-compare__vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--space-lg);
}

.abt-compare__vs-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-500), transparent);
}

.abt-compare__vs-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 1px;
  flex-shrink: 0;
  margin: var(--space-sm) 0;
}

@media (max-width: 640px) {
  .abt-compare { grid-template-columns: 1fr; gap: var(--space-xl); }
  .abt-compare__vs { flex-direction: row; padding: 0; }
  .abt-compare__vs-line { height: 1px; width: 100%; flex: 1; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
}


/* ============================================================
   AI APPS PAGE — HERO
   ============================================================ */
.apps-hero {
  position: relative;
  background: var(--navy-950);
  padding: clamp(8rem, 18vh, 12rem) 0 clamp(4rem, 10vh, 7rem);
  text-align: center;
  overflow: hidden;
}
.apps-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}
.apps-hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-500);
}

.apps-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-500);
  margin-bottom: var(--space-xl);
}
.apps-hero__badge svg { width: 18px; height: 18px; }

.apps-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--slate-400);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.apps-hero__ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}


/* ============================================================
   AI APPS PAGE — PRODUCT SECTIONS
   ============================================================ */
.apps-product {
  position: relative;
  overflow: hidden;
}
.apps-product--dark {
  background: var(--navy-950);
  color: var(--white);
}
.apps-product--dark h2 { color: var(--white); }
.apps-product--dark h2 em { color: var(--gold-500); }
.apps-product--dark .apps-product__desc { color: var(--slate-400); }
.apps-product--dark .apps-product__features li { color: rgba(255,255,255,0.85); }
.apps-product--dark .apps-product__price-sub { color: var(--slate-400); }

.apps-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.apps-product__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
}
.apps-product__label--green {
  background: rgba(16,185,129,0.1);
  color: #10b981;
}

.apps-product__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.apps-product__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.apps-product__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-lg);
}
.apps-product__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text);
}
.apps-product__features svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.apps-product__pricing {
  margin-bottom: var(--space-lg);
}
.apps-product__price {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
}
.apps-product--dark .apps-product__price { color: var(--white); }
.apps-product__price-unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.apps-product--dark .apps-product__price-unit { color: var(--slate-400); }
.apps-product__price-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}


/* ============================================================
   AI APPS PAGE — CSS MOCKUP ILLUSTRATIONS
   ============================================================ */
.apps-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.apps-mockup--glow {
  border-color: rgba(212,175,55,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.1);
}

.apps-mockup__bar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 10px 14px;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.apps-mockup__dots {
  display: flex;
  gap: 6px;
}
.apps-mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.apps-mockup__dots span:nth-child(1) { background: #ef4444; }
.apps-mockup__dots span:nth-child(2) { background: #f59e0b; }
.apps-mockup__dots span:nth-child(3) { background: #22c55e; }
.apps-mockup__url {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.apps-mockup__screen {
  display: flex;
  min-height: 300px;
}

.apps-mockup__sidebar {
  width: 56px;
  background: var(--navy-950);
  padding: var(--space-md) var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.apps-mockup__sidebar-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(212,175,55,0.2);
  margin-bottom: var(--space-sm);
}
.apps-mockup__sidebar-item {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}
.apps-mockup__sidebar-item--active {
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
}

.apps-mockup__chat {
  flex: 1;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: var(--gray-50);
}
.apps-mockup__msg {
  max-width: 85%;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  line-height: 1.5;
}
.apps-mockup__msg--user {
  align-self: flex-end;
  background: var(--navy-950);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.apps-mockup__msg--ai {
  align-self: flex-start;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.apps-mockup__input {
  margin-top: auto;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.72rem;
  color: var(--text-light);
  background: var(--white);
}

@media (max-width: 768px) {
  .apps-product__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .apps-product__features { grid-template-columns: 1fr; }
  .apps-product__visual { order: -1; }
  .apps-mockup__screen { min-height: 240px; }
}


/* ============================================================
   AI APPS PAGE — COMPARISON TABLE
   ============================================================ */
.apps-compare {
  margin-top: var(--space-2xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.apps-compare__table {
  width: 100%;
  border-collapse: collapse;
}
.apps-compare__table thead th {
  padding: var(--space-md) var(--space-lg);
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
}
.apps-compare__table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.apps-compare__table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.apps-compare__table tbody td {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.apps-compare__table tbody tr:hover { background: rgba(0,0,0,0.02); }
.apps-compare__table .check { color: var(--success); font-weight: 600; }
.apps-compare__table .dash { color: var(--text-muted); }

.apps-compare__pricing-row td {
  background: var(--slate-50);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .apps-compare__table { font-size: 0.82rem; }
  .apps-compare__table thead th,
  .apps-compare__table tbody td { padding: var(--space-sm) var(--space-md); }
}


/* ============================================================
   CAREERS PAGE — HERO
   ============================================================ */
.careers-hero {
  position: relative;
  background: var(--navy-950);
  padding: clamp(8rem, 18vh, 12rem) 0 clamp(4rem, 10vh, 7rem);
  text-align: center;
  overflow: hidden;
}
.careers-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}
.careers-hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-500);
}
.careers-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  margin-bottom: var(--space-lg);
}
.careers-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--slate-400);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============================================================
   CAREERS PAGE — SHARED EYEBROW
   ============================================================ */
.careers-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-md);
}


/* ============================================================
   CAREERS PAGE — WHO WE ARE
   ============================================================ */
.careers-about {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.careers-about__text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}


/* ============================================================
   CAREERS PAGE — ROLE LISTINGS
   ============================================================ */
.careers-roles {
  margin-top: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.careers-role .faq__question {
  align-items: flex-start;
}

.careers-role__header {
  text-align: left;
}
.careers-role__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.careers-role__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.careers-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  background: rgba(212,175,55,0.1);
  color: var(--gold-dark);
}

.careers-role__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.careers-role__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.careers-role__subhead {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.careers-role__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.careers-role__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}
.careers-role__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate-300);
}
.careers-role__list--gold li::before {
  background: var(--gold);
}

@media (max-width: 640px) {
  .careers-role__columns { grid-template-columns: 1fr; gap: var(--space-lg); }
}


/* ---- General Interest Callout ---- */
.careers-callout {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-lg) var(--space-xl);
  border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.careers-callout p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.careers-callout strong { color: var(--navy); }


/* ============================================================
   CAREERS PAGE — CREDENTIALS ("WHAT WE LOVE TO SEE")
   ============================================================ */
.creds {
  background: var(--navy-900);
  position: relative;
}

.creds__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}
@media (min-width: 1024px) {
  .creds__grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Let category 3 span full width centered below the 2-col row */
  .creds__category:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 560px;
    justify-self: center;
  }
}

.creds__category-label {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}

/* ---------- Credential Card ---------- */
.creds__card {
  display: flex;
  text-decoration: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 10px;
}
.creds__card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-500);
  box-shadow: 0 4px 20px rgba(212,168,76,0.08);
}

.creds__card-border {
  width: 3px;
  flex-shrink: 0;
  background: var(--gold-500);
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.creds__card:hover .creds__card-border {
  opacity: 1;
}

.creds__card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
}

.creds__card-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.creds__card-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.creds__card-issuer {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-500);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.creds__card-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--slate-400);
  line-height: 1.45;
  margin-top: 2px;
}

.creds__card-link-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--slate-400);
  transition: color 0.2s ease;
}
.creds__card:hover .creds__card-link-icon {
  color: var(--gold-500);
}

/* ---------- Closing Note ---------- */
.creds__note {
  margin-top: var(--space-2xl);
  padding: 20px 24px;
  border-left: 3px solid var(--gold-500);
  background: rgba(255,255,255,0.025);
  border-radius: 0 8px 8px 0;
  max-width: 640px;
  margin-inline: auto;
}
.creds__note p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate-400);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Mobile refinements ---------- */
@media (max-width: 640px) {
  .creds__card-body {
    padding: 12px 14px;
  }
  .creds__card-name {
    font-size: 0.88rem;
  }
  .creds__card-desc {
    font-size: 0.78rem;
  }
}


/* ============================================================
   CAREERS PAGE — APPLICATION FORM
   ============================================================ */
.careers-apply {
  max-width: 680px;
  margin: 0 auto;
}

.careers-form {
  margin-top: var(--space-xl);
}

.careers-form__file-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: var(--space-xs);
}

.careers-form input[type="file"] {
  padding: 0.6rem;
  font-size: 0.85rem;
  cursor: pointer;
}


/* ============================================================
   CAREERS PAGE — CONTACT CALLOUT
   ============================================================ */
.careers-contact {
  padding: var(--space-2xl) 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.careers-contact__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}
.careers-contact__email {
  font-size: 1rem;
  color: var(--text);
}
.careers-contact__email a {
  color: var(--gold-dark);
  font-weight: 600;
}
.careers-contact__email a:hover { color: var(--navy); }


/* ============================================================
   CONTACT PAGE — HERO
   ============================================================ */
.ct-hero {
  position: relative;
  background: var(--navy-950);
  padding: clamp(7rem, 16vh, 10rem) 0 clamp(3rem, 6vh, 4rem);
  text-align: center;
  overflow: hidden;
}
.ct-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}
.ct-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--slate-400);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============================================================
   CONTACT PAGE — TWO-COLUMN LAYOUT
   ============================================================ */
.ct-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}


/* ---- Book a Call ---- */
.ct-booking {
  margin-bottom: var(--space-2xl);
}
.ct-booking h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--space-md);
}
.ct-booking__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}
.ct-booking__hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}
.ct-booking__hint a {
  color: var(--gold-dark);
  font-weight: 500;
}
.ct-booking__hint a:hover { color: var(--navy); }


/* ---- Lead Magnet ---- */
.ct-magnet {
  padding: var(--space-xl);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  background: var(--white);
  margin-bottom: var(--space-2xl);
}
.ct-magnet__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}
.ct-magnet__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.ct-magnet__trust {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
}


/* ---- Contact Form ---- */
.ct-form {
  scroll-margin-top: 6rem;
}
.ct-form__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}


/* ---- Contact Info Card ---- */
.ct-info {
  padding: var(--space-xl);
  position: sticky;
  top: 5rem;
}
.ct-info__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ct-info__row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.ct-info__row svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.ct-info__row a {
  color: var(--gold-400);
  font-weight: 500;
}
.ct-info__row a:hover { color: var(--white); }

.ct-info__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  margin-bottom: 0.15rem;
}

.ct-info__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: var(--space-lg) 0;
}

.ct-info__social {
  display: flex;
  gap: var(--space-md);
}
.ct-info__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: all var(--duration) var(--ease);
}
.ct-info__social a:hover {
  background: var(--gold-500);
  color: var(--navy);
}

.ct-careers {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: var(--space-lg);
  text-align: center;
}
.ct-careers a {
  color: var(--gold-dark);
  font-weight: 600;
}
.ct-careers a:hover { color: var(--navy); }


@media (max-width: 768px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .ct-info { position: static; }
}



/* ============================================================
   BLOG — LISTING PAGE
   ============================================================ */
.blog-header {
  margin-bottom: var(--space-xl);
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.category-filter__btn {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  min-height: 36px;
}
.category-filter__btn:hover,
.category-filter__btn--active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  position: relative;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.blog-card__category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 0.2rem 0.6rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  z-index: 2;
}

.blog-card__body {
  padding: var(--space-lg);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-card__link svg { width: 16px; height: 16px; }
.blog-card__link:hover { color: var(--navy); }

/* Coming soon overlay */
.blog-card__coming-soon {
  position: absolute;
  inset: 0;
  background: rgba(0,31,63,0.05);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--space-md);
  pointer-events: none;
}

.blog-card__coming-badge {
  padding: 0.25rem 0.7rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
}

.blog-newsletter {
  margin-top: var(--space-2xl);
  padding: var(--space-2xl);
  background: var(--navy);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
}

.blog-newsletter h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.blog-newsletter p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-lg);
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOG — POST TEMPLATE
   ============================================================ */
.post-header {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-3xl) 0 var(--space-xl);
  text-align: center;
}

.post-header__category {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: rgba(212,175,55,0.1);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.post-header h1 {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
}

.post-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.post-header__meta span { display: flex; align-items: center; gap: 0.3rem; }
.post-header__meta svg { width: 16px; height: 16px; }

.post-featured-image {
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

/* Post body content */
.post-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.post-content h2 {
  font-size: 1.6rem;
  margin: var(--space-2xl) 0 var(--space-md);
}

.post-content h3 {
  font-size: 1.25rem;
  margin: var(--space-xl) 0 var(--space-md);
}

.post-content p { margin-bottom: var(--space-lg); }

.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-lg);
}
.post-content li { margin-bottom: var(--space-xs); }

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-xl) 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}

.post-content pre {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.9);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: var(--space-xl) 0;
  font-size: 0.88rem;
  line-height: 1.6;
}
.post-content code {
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 0.9em;
}
.post-content p code {
  background: var(--bg-alt);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.88em;
}

.post-content img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
}

/* Mid-article CTA */
.post-cta {
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-md);
  text-align: center;
  margin: var(--space-2xl) 0;
  color: var(--white);
}
.post-cta h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.post-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
}

/* Author bio */
.author-bio {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: var(--space-2xl) auto 0;
  max-width: 720px;
}

.author-bio__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-bio__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.author-bio__role {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.author-bio__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.author-bio__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: var(--space-sm);
}

/* Share buttons */
.post-share {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: var(--space-xl) auto;
  max-width: 720px;
}

.post-share__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.post-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--duration) var(--ease);
}
.post-share__btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.post-share__btn svg { width: 16px; height: 16px; }

/* Related posts */
.related-posts {
  max-width: 960px;
  margin: var(--space-2xl) auto 0;
}

.related-posts h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

@media (max-width: 600px) {
  .post-header h1 { font-size: 1.6rem; }
  .author-bio { flex-direction: column; align-items: center; text-align: center; }
}


/* ============================================================
   FLOATING "BOOK A CALL" CTA
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.3s var(--ease);
}
.float-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: floatCtaPulse 3s ease-in-out 1s infinite;
}
.float-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(212,175,55,0.5);
  transform: translateY(-2px);
  animation: none;
}

@keyframes floatCtaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,175,55,0.35); }
  50%      { box-shadow: 0 4px 30px rgba(212,175,55,0.55); }
}

@media (max-width: 480px) {
  .float-cta { padding: 0.75rem; border-radius: 50%; }
  .float-cta .float-cta__text { display: none; }
}


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold);
  z-index: 1100;
  transition: width 0.05s linear;
  pointer-events: none;
}


/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 950;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s var(--ease);
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}


/* ============================================================
   ENHANCED HOVER STATES
   ============================================================ */
/* Service cards — deeper lift + shadow */
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-triune__card:hover,
.ai-app-card:hover,
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* CTA buttons — scale + shadow */
.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.btn-ghost--gold:hover,
.btn-ghost--white:hover,
.nav__cta:hover,
.form-submit:hover {
  transform: scale(1.02) translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Footer links — white on hover */
.footer__links a:hover {
  color: var(--white);
}
.footer__social a:hover {
  color: var(--gold);
}
