/* ============================================================
   PRISTORIA — Compiled Master Stylesheet
   No Tailwind. No frameworks. Pure CSS.
   Last deployed via Claude: 2026-03-08
   ============================================================ */

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

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --dark:       #080d16;
  --navy:       #0D1B2A;
  --navy-light: #0f1a2e;
  --gold:       #C4963A;
  --gold-light: #e8b96a;
  --gold-pale:  #f5dca8;
  --ivory:      #F8F5F0;
  --slate:      #8a95a5;
  --mist:       #c8c3ba;
  --border:     rgba(201,145,58,0.12);
  --border-dim: rgba(255,255,255,0.06);
  /* Light theme tokens */
  --cream:      #F8F5F0;
  --text-dark:  #0D1B2A;
  --text-body:  #3d4f63;
  --text-muted: #6b7a8d;
  --card-bg:    #FFFFFF;
  --card-border: rgba(13,27,42,0.08);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', -apple-system, sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #F8F5F0 !important;
  background-color: #F8F5F0 !important;
  color: var(--text-dark) !important;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 768px) { body { cursor: auto; } }
a    { color: var(--gold); text-decoration: none; }
img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
::selection { background: var(--gold); color: var(--dark); }

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), opacity .25s;
  will-change: transform;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1px solid rgba(201,145,58,0.45); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .45s var(--ease), height .45s var(--ease), border-color .3s;
  will-change: transform;
}
.cursor-dot.hovered  { width: 6px;  height: 6px;  }
.cursor-ring.hovered { width: 56px; height: 56px; border-color: rgba(201,145,58,0.7); }
@media (max-width:768px) { .cursor-dot,.cursor-ring { display:none; } }


/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: 72px;
  transition: background .5s, border-color .5s, backdrop-filter .5s;
  border-bottom: 1px solid transparent;
  background: var(--card-bg);
}

/* Header when scrolled */
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--card-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  color: var(--text-dark);
  font-weight: 600;
}

.logo span {
  color: var(--gold);
  font-weight: 600;
}

/* DESKTOP NAV */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  padding: 9px 18px;
  border-radius: 40px;
  text-decoration: none;
  transition: color .2s, background .2s;
}

/* Hover */
.nav-desktop a:hover {
  color: var(--gold);
  background: rgba(196,150,58,0.08);
}

/* Active page */
.nav-desktop a.active {
  color: var(--gold);
  font-weight: 600;
  background: rgba(196,150,58,0.1);
}

/* When header is scrolled */
.site-header.scrolled .nav-desktop a {
  color: var(--text-dark);
}

.site-header.scrolled .nav-desktop a:hover {
  color: var(--gold);
}

.site-header.scrolled .nav-desktop a.active {
  color: var(--gold);
  background: rgba(13,27,42,0.07);
}

/* CTA */
.btn-nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 500 !important;
  padding: 10px 24px !important;
  border-radius: 40px !important;
  margin-left: 8px;
  transition: transform .2s, box-shadow .3s !important;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,145,58,0.35) !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
}

/* MOBILE TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-dark);
  transition: all .3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px,4px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px,-4px);
}

/* MOBILE NAV */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 24px 48px 40px;
  z-index: 799;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.nav-mobile.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile a {
  display: block;
  padding: 15px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(13,27,42,0.06);
  transition: color .2s;
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-mobile a.active {
  color: var(--gold);
  font-weight: 400;
}

.nav-mobile .mobile-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  margin-top: 28px;
  text-decoration: none;
  transition: opacity .2s;
}

.nav-mobile .mobile-cta:hover {
  opacity: 0.9;
  color: var(--dark);
}

/* ─── LAYOUT HELPERS ─────────────────────────────────────── */
.container    { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 48px; }
.container-md { max-width: 1080px; margin: 0 auto; padding: 0 48px; }
.section      { padding: 120px 0; position: relative; overflow: hidden; }
.section-sm   { padding: 80px 0; position: relative; overflow: hidden; }
.section-navy       { background: var(--navy); }
.section-navy-light { background: var(--navy-light); }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.gap-8  { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.gap-24 { gap: 24px; } .gap-32 { gap: 32px; } .gap-48 { gap: 48px; }
.mt-8  { margin-top: 8px; }  .mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }  .mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1 {
  font-family: var(--serif); font-size: clamp(46px,6.5vw,90px);
  font-weight: 300; line-height: 1.0; letter-spacing: -0.02em; color: var(--text-dark);
}
h2 {
  font-family: var(--serif); font-size: clamp(34px,4.5vw,62px);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.015em; color: var(--text-dark);
}
h3 {
  font-family: var(--serif); font-size: clamp(22px,2.5vw,34px);
  font-weight: 400; line-height: 1.2; color: var(--text-dark);
}
h4 {
  font-family: var(--serif); font-size: clamp(18px,2vw,24px);
  font-weight: 400; line-height: 1.3; color: var(--text-dark);
}
p  { color: var(--text-body); font-size: 16px; line-height: 1.8; }
.lead { font-size: 19px; line-height: 1.75; color: var(--text-body); opacity: 0.85; }

/* ─── DARK SECTION TEXT OVERRIDES ─────────────────────────── */
.hero h1, .hero h2, .hero h3, .hero h4 { color: var(--ivory); }
.hero p, .hero .lead { color: var(--mist); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--ivory); }
.section-navy p { color: var(--mist); }
.section-navy .lead { color: var(--ivory); }
.cta-strip h2 { color: var(--ivory); }
.cta-strip p, .cta-strip .lead { color: var(--mist); }
.site-footer h5, .site-footer p, .site-footer a:not(.footer-logo) { color: var(--slate); }
.site-footer .footer-col h5 { color: var(--ivory); }
.small { font-size: 13px; }

.text-gold   { color: var(--gold); }
.text-ivory  { color: var(--ivory); }
.text-mist   { color: var(--mist); }
.text-slate  { color: var(--slate); }
.font-serif  { font-family: var(--serif); }
.font-sans   { font-family: var(--sans); }
.italic      { font-style: italic; }
.uppercase   { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.08em; }
.tracking-wider { letter-spacing: 0.15em; }
.font-light  { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }

/* ─── EYEBROW ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow-text {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow-center { display: flex; justify-content: center; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .3s, opacity .2s;
}
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 16px 36px; border-radius: 4px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,145,58,0.28); color: var(--dark); }
.btn-outline {
  background: transparent; color: var(--gold);
  padding: 15px 35px; border-radius: 4px;
  border: 1px solid rgba(201,145,58,0.35);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,145,58,0.07); color: var(--gold); }
.btn-ghost {
  background: transparent; color: var(--mist);
  padding: 12px 0; border-radius: 0;
}
.btn-ghost:hover { color: var(--ivory); }
.btn-arrow { font-size: 16px; }
.btn-lg { padding: 20px 44px; font-size: 13px; }

/* ─── TAG PILL ───────────────────────────────────────────── */
.tag-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,145,58,0.3);
  background: rgba(201,145,58,0.07);
  padding: 7px 18px 7px 12px; border-radius: 40px; margin-bottom: 36px;
}
.tag-pill-dot {
  width: 7px; height: 7px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
  animation: pulseDot 2.5s ease-in-out infinite;
}
.tag-pill span {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}

/* ─── BACKGROUND EFFECTS ─────────────────────────────────── */
.bg-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(201,145,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,145,58,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.bg-grid-fade {
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 30%, transparent 100%);
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,145,58,0.11) 0%, transparent 70%);
  top: -150px; right: -150px;
  animation: orbFloat1 14s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,145,58,0.07) 0%, transparent 70%);
  bottom: 0; left: 5%;
  animation: orbFloat2 18s ease-in-out infinite alternate;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(80,120,200,0.06) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat3 22s ease-in-out infinite alternate;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding: 140px 0 100px;
  background: linear-gradient(135deg, #080d16 0%, #0D1B2A 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center; position: relative; z-index: 2;
}
.hero-eyebrow { justify-content: flex-start; }
.hero-h1 { margin-bottom: 28px; }
.hero-sub { font-size: 18px; color: var(--mist); line-height: 1.8; margin-bottom: 48px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-stat-row {
  display: flex; gap: 40px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stat-num {
  font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--ivory); line-height: 1;
}
.hero-stat-lbl { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); margin-top: 6px; }

/* Hero Visual */
.hero-visual { position: relative; height: 540px; display: flex; align-items: center; justify-content: center; }
.score-circle {
  position: relative; width: 240px; height: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(11,18,33,0.9);
  border: 1px solid rgba(201,145,58,0.22);
  border-radius: 50%;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 100px rgba(201,145,58,0.08), inset 0 0 40px rgba(201,145,58,0.02);
  z-index: 2;
}
.score-svg {
  position: absolute; top: -24px; left: -24px; width: calc(100% + 48px); height: calc(100% + 48px);
  transform: rotate(-90deg);
}
.score-svg-track { fill: none; stroke: rgba(201,145,58,0.08); stroke-width: 2; }
.score-svg-fill  { fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 880; stroke-dashoffset: 176; }
.score-num   { font-family: var(--serif); font-size: 72px; font-weight: 300; color: var(--ivory); line-height: 1; position: relative; z-index: 1; }
.score-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 4px; position: relative; z-index: 1; }
.score-trend { font-size: 11px; color: #4ad295; margin-top: 10px; position: relative; z-index: 1; }
/* Floating stat cards */
.fcard {
  position: absolute;
  background: rgba(11,18,33,0.88);
  border: 1px solid rgba(201,145,58,0.18);
  border-radius: 14px; padding: 16px 22px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  z-index: 3;
}
.fcard-1 { top:  60px; right: 0;    width: 188px; animation: float1 6s ease-in-out infinite; }
.fcard-2 { bottom: 70px; left: -10px; width: 210px; animation: float2 8s ease-in-out infinite; }
.fcard-3 { top: 120px; left: -20px; width: 175px; animation: float3 7s ease-in-out infinite; }
.fcard-lbl { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.fcard-val { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--ivory); line-height: 1; }
.fcard-sub { font-size: 11px; color: var(--mist); margin-top: 5px; }
.live-badge {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 8px;
  background: rgba(74,210,149,0.1); border: 1px solid rgba(74,210,149,0.25);
  padding: 3px 9px; border-radius: 20px;
}
.live-dot { width: 5px; height: 5px; background: #4ad295; border-radius: 50%; animation: pulseDot 2s ease-in-out infinite; }
.live-badge span { font-size: 10px; color: #4ad295; font-weight: 500; }

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker {
  padding: 28px 0; overflow: hidden;
  border-top: 1px solid rgba(13,27,42,0.06);
  border-bottom: 1px solid rgba(13,27,42,0.06);
  position: relative;
  background: var(--cream);
}
.ticker::before,.ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 180px; z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.ticker-section-navy::before { background: linear-gradient(to right, var(--navy), transparent); }
.ticker-section-navy::after  { background: linear-gradient(to left, var(--navy), transparent); }
.ticker-track  { display: flex; width: max-content; animation: ticker 35s linear infinite; }
.ticker-item   { display: flex; align-items: center; gap: 48px; padding: 0 48px; white-space: nowrap; }
.ticker-name   { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(13,27,42,0.4); }
.ticker-sep    { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0.35; flex-shrink: 0; }

/* ─── SECTION HEADERS ────────────────────────────────────── */
.section-header { margin-bottom: 72px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p  { max-width: 520px; }
.section-header-center { text-align: center; }
.section-header-center p { margin: 0 auto; }

/* ─── BORDERED CARD GRID ─────────────────────────────────── */
.b-grid {
  display: grid; gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 18px; overflow: hidden;
}
.b-grid-2  { grid-template-columns: 1fr 1fr; }
.b-grid-3  { grid-template-columns: repeat(3,1fr); }
.b-grid-4  { grid-template-columns: repeat(4,1fr); }
.b-card {
  background: var(--card-bg); padding: 52px 44px;
  position: relative; overflow: hidden;
  transition: background .4s;
}
.b-card:hover { background: #faf8f5; }
.b-card-num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--serif); font-size: 80px; font-weight: 300;
  color: rgba(196,150,58,0.18); line-height: 1;
  transition: color .5s; pointer-events: none;
}
.b-card:hover .b-card-num { color: rgba(196,150,58,0.3); }
.b-card h3, .b-card h4 { margin-bottom: 16px; font-size: clamp(20px,2.2vw,28px); color: var(--text-dark); }
.b-card p  { font-size: 16px; line-height: 1.78; color: var(--text-body); }
.b-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-top: 28px; text-decoration: none;
  transition: gap .25s var(--ease);
}
.b-card-link:hover { gap: 16px; }
/* Pillar card variant */
.p-card { background: rgba(255,255,255,0.04); padding: 44px 36px; position: relative; overflow: hidden; transition: background .4s; border: 1px solid rgba(255,255,255,0.08); }
.p-card:hover { background: rgba(255,255,255,0.07); }
.p-card-num { font-family: var(--serif); font-size: 12px; color: rgba(201,145,58,0.55); letter-spacing: 0.12em; margin-bottom: 28px; }
.p-card h4 { font-size: 19px; margin-bottom: 12px; }
.p-card p  { font-size: 15px; color: var(--mist); line-height: 1.75; }
.p-card-glow {
  position: absolute; width: 220px; height: 220px; top: -60px; right: -60px;
  background: radial-gradient(circle, rgba(201,145,58,0.12) 0%, transparent 70%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.p-card:hover .p-card-glow { opacity: 1; }

/* ─── PROCESS ────────────────────────────────────────────── */
.process-layout {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 100px; align-items: start;
}
.process-sticky { position: sticky; top: 120px; }
.process-steps { margin-top: 48px; }
.process-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer; transition: opacity .3s;
}
.process-step:last-child { border-bottom: none; }
.step-num-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--slate);
  transition: all .3s; flex-shrink: 0; margin-top: 2px;
}
.process-step.active .step-num-wrap { color: var(--gold); border-color: rgba(201,145,58,0.4); background: rgba(201,145,58,0.08); }
.step-body h3 { font-size: 22px; margin-bottom: 8px; }
.step-body p  { font-size: 16px; line-height: 1.75; }
.step-tag {
  display: inline-block; margin-top: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,145,58,0.1);
  border: 1px solid rgba(201,145,58,0.2); padding: 3px 10px; border-radius: 20px;
}
.process-panel-wrap {
  background: rgba(6,9,15,0.5); border: 1px solid rgba(201,145,58,0.14);
  border-radius: 20px; height: 480px; position: relative; overflow: hidden;
}
.process-panel {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 48px; text-align: center;
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.process-panel.active { opacity: 1; pointer-events: auto; }
.panel-icon {
  width: 90px; height: 90px; border-radius: 50%;
  border: 1px solid rgba(201,145,58,0.2);
  background: rgba(201,145,58,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; margin-bottom: 28px;
}
.panel-title { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--ivory); margin-bottom: 12px; }
.panel-desc  { font-size: 16px; color: var(--mist); line-height: 1.75; max-width: 340px; }
.panel-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; margin-top: 32px; }
.panel-metric {
  background: rgba(11,18,33,0.8); border: 1px solid rgba(201,145,58,0.1);
  border-radius: 12px; padding: 16px; text-align: center;
}
.panel-metric-val { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--ivory); }
.panel-metric-lbl { font-size: 10px; color: var(--mist); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tcard {
  background: rgba(11,18,33,0.7); border: 1px solid rgba(201,145,58,0.1);
  border-radius: 16px; padding: 36px; position: relative;
  transition: border-color .3s;
}
.tcard:hover { border-color: rgba(201,145,58,0.25); }
.tcard-quote {
  font-family: var(--serif); font-size: 68px; line-height: 0.6;
  color: rgba(201,145,58,0.2); margin-bottom: 20px; display: block;
}
.tcard-text { font-size: 16px; line-height: 1.8; color: #e8e4df; font-style: italic; margin-bottom: 28px; }
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-light); border: 1px solid rgba(201,145,58,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--gold);
  flex-shrink: 0;
}
.tcard-name   { font-size: 15px; font-weight: 500; color: var(--ivory); }
.tcard-title  { font-size: 14px; color: var(--gold); margin-top: 2px; }
.tcard-stars  { display: flex; gap: 3px; margin-bottom: 16px; }
.tcard-star   { color: var(--gold); font-size: 14px; }
.tcard-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(11,18,33,0.9) 0%, rgba(15,26,46,0.9) 100%);
  border-color: rgba(201,145,58,0.2);
}
.tcard-featured .tcard-text { font-size: 18px; }

/* ─── PRICING ────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.price-card {
  background: rgba(11,18,33,0.7); border: 1px solid rgba(201,145,58,0.1);
  border-radius: 18px; padding: 40px 36px;
  transition: border-color .3s, transform .3s;
  position: relative; overflow: hidden;
}
.price-card:hover { border-color: rgba(201,145,58,0.3); transform: translateY(-4px); }
.price-card-featured {
  border-color: rgba(201,145,58,0.35); transform: scale(1.03);
  background: rgba(15,26,46,0.9);
}
.price-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge {
  position: absolute; top: 0; right: 28px;
  background: var(--gold); color: var(--dark);
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 0 0 8px 8px;
}
.price-tier { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.price-name { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--ivory); margin-bottom: 12px; }
.price-desc { font-size: 16px; color: var(--mist); line-height: 1.7; margin-bottom: 32px; }
.price-val { font-family: var(--serif); font-size: clamp(36px,4vw,52px); font-weight: 300; color: var(--ivory); line-height: 1; }
.price-range { font-family: var(--serif); font-size: 38px; font-weight: 300; color: var(--ivory); line-height: 1; }
.price-period { font-size: 13px; color: var(--mist); margin-left: 4px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-note { font-size: 14px; color: var(--mist); margin-bottom: 32px; }
.price-divider { height: 1px; background: var(--border-dim); margin: 32px 0; }
.price-features { margin-bottom: 36px; }
.price-feature {
  display: flex; align-items: flex-start; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 15px; color: var(--ivory); opacity: 0.8;
}
.price-feature:last-child { border-bottom: none; }
.price-check { color: var(--gold); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.price-cta { width: 100%; text-align: center; justify-content: center; }

/* ─── RESULTS / STATS ────────────────────────────────────── */
.stat-display-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--card-border); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.04); }
.stat-display {
  background: var(--card-bg); padding: 48px 36px; text-align: center;
}
.section-navy .stat-display { background: var(--navy); }
.stat-display-num { font-family: var(--serif); font-size: clamp(48px,6vw,76px); font-weight: 300; color: var(--text-dark); line-height: 1; }
.stat-display-lbl { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }
.stat-display-sub { font-size: 15px; color: var(--text-muted); margin-top: 8px; }
.stat-gold { color: var(--gold) !important; }

/* ─── CASE STUDY CARDS ───────────────────────────────────── */
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.case-card {
  background: rgba(11,18,33,0.6); border: 1px solid rgba(201,145,58,0.1);
  border-radius: 16px; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.case-card:hover { border-color: rgba(201,145,58,0.25); transform: translateY(-4px); }
.case-card-header { height: 200px; background: var(--navy-light); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.case-card-header-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,145,58,0.08) 0%, transparent 60%);
}
.case-card-score {
  position: relative; width: 110px; height: 110px; border-radius: 50%;
  background: rgba(6,9,15,0.7); border: 1px solid rgba(201,145,58,0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.case-score-num { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--ivory); line-height: 1; }
.case-score-lbl { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.case-score-arrow { position: absolute; bottom: -14px; font-size: 10px; color: #4ad295; background: rgba(6,9,15,0.9); border: 1px solid rgba(74,210,149,0.3); border-radius: 20px; padding: 2px 8px; }
.case-card-body { padding: 28px; }
.case-client { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.case-card h4 { font-size: 19px; margin-bottom: 10px; }
.case-card p  { font-size: 15px; color: var(--mist); line-height: 1.7; }
.case-metrics { display: flex; gap: 24px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.case-metric-num { font-family: var(--serif); font-size: 26px; color: var(--ivory); }
.case-metric-lbl { font-size: 11px; color: var(--mist); margin-top: 2px; }

/* ─── BLOG / INSIGHTS ────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.blog-card:hover { border-color: rgba(201,145,58,0.3); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.blog-card-img {
  height: 220px; background: #eae5dc;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card-img-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(201,145,58,0.08) 0%, rgba(80,120,200,0.04) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 56px; font-weight: 300; color: rgba(201,145,58,0.2);
}
.blog-card-body { padding: 28px; }
.blog-tag {
  display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,145,58,0.08); border: 1px solid rgba(201,145,58,0.2);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 14px;
}
.blog-card h4 { font-size: 19px; margin-bottom: 10px; line-height: 1.3; color: var(--text-dark); }
.blog-card p  { font-size: 15px; color: var(--text-body); line-height: 1.7; }
.blog-meta { display: flex; align-items: center; gap: 16px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--card-border); }
.blog-meta-date { font-size: 11px; color: var(--text-muted); }
.blog-meta-read { font-size: 11px; color: var(--text-muted); }
.blog-featured { grid-column: span 2; }
.blog-featured .blog-card-img { height: 280px; }
.blog-featured .blog-card h4  { font-size: 24px; }
/* Blog post single */
.post-header { padding: 160px 0 80px; position: relative; background: linear-gradient(135deg, #080d16 0%, #0D1B2A 100%); }
.post-header h1 { font-size: clamp(36px,5vw,64px); line-height: 1.1; margin-bottom: 24px; color: var(--ivory); }
.post-header .blog-tag { margin-bottom: 20px; }
.post-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.post-meta-item { font-size: 15px; color: var(--mist); }
.post-meta-divider { width: 4px; height: 4px; background: var(--slate); border-radius: 50%; }
.post-featured-img { padding: 0 0 40px; }
.post-thumbnail { margin-top: -40px; }
.post-body { padding: 0 0 100px; }
.post-body .container-sm > * + * { margin-top: 24px; }
.post-body h2 { font-size: clamp(26px,3vw,38px); margin-top: 56px !important; color: var(--text-dark); }
.post-body h3 { font-size: clamp(20px,2.5vw,28px); margin-top: 40px !important; color: var(--text-dark); }
.post-body p  { font-size: 16px; line-height: 1.9; color: var(--text-body); }
.post-body blockquote {
  border-left: 3px solid var(--gold); padding: 4px 0 4px 32px; margin: 40px 0;
  background: rgba(201,145,58,0.04); border-radius: 0 12px 12px 0;
}
.post-body blockquote p { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--text-dark); line-height: 1.5; }
.post-body strong { color: var(--text-dark); }

/* ─── FORM ────────────────────────────────────────────────── */
.form-section {
  background: rgba(11,18,33,0.6); border: 1px solid rgba(201,145,58,0.1);
  border-radius: 20px; padding: 56px 48px;
}
.form-step-indicators { display: flex; align-items: center; gap: 0; margin-bottom: 56px; }
.step-indicator { display: flex; align-items: center; }
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; color: var(--slate);
  transition: all .3s; background: transparent;
}
.step-dot.active { border-color: var(--gold); color: var(--gold); background: rgba(201,145,58,0.1); }
.step-dot.done   { border-color: var(--gold); color: var(--dark); background: var(--gold); }
.step-line { width: 48px; height: 1px; background: rgba(255,255,255,0.07); margin: 0 8px; }
.step-line.done { background: rgba(201,145,58,0.4); }
.step-label { font-size: 11px; color: var(--slate); margin-top: 8px; text-align: center; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-label {
  display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 10px;
}
.form-input {
  width: 100%; background: rgba(6,9,15,0.7);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  padding: 14px 18px; font-family: var(--sans); font-size: 14px;
  color: var(--ivory); transition: border-color .25s;
  outline: none;
}
.form-input:focus { border-color: rgba(201,145,58,0.45); }
.form-input::placeholder { color: var(--slate); }
.form-select {
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a8d' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-textarea { min-height: 120px; resize: vertical; }
.option-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.option-card {
  padding: 20px; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  cursor: pointer; transition: all .2s; position: relative;
}
.option-card:hover { border-color: rgba(201,145,58,0.3); }
.option-card.selected { border-color: var(--gold); background: rgba(201,145,58,0.07); }
.option-card input[type="radio"] { position: absolute; opacity: 0; }
.option-card-title { font-size: 14px; font-weight: 500; color: var(--ivory); margin-bottom: 4px; }
.option-card-desc  { font-size: 12px; color: var(--slate); }
.option-card-check { position: absolute; top: 16px; right: 16px; width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); transition: all .2s; }
.option-card.selected .option-card-check { background: var(--gold); border-color: var(--gold); }

/* ─── CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, rgba(11,18,33,0.9) 0%, rgba(15,26,46,0.9) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-strip h2 { margin-bottom: 20px; }
.cta-strip p  { margin-bottom: 48px; }
.cta-strip .cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ─── GUARANTEE BADGE ────────────────────────────────────── */
.guarantee-wrap { display: flex; align-items: center; gap: 20px; margin-top: 40px; }
.guarantee-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,145,58,0.1); border: 1px solid rgba(201,145,58,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.guarantee-text p:first-child { font-size: 15px; font-weight: 500; color: var(--ivory); }
.guarantee-text p:last-child  { font-size: 14px; color: var(--slate); margin-top: 2px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-logo { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--ivory); margin-bottom: 16px; display: block; text-decoration: none; }
.footer-logo span { color: var(--gold); font-weight: 500; }
.footer-tagline { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 28px; }
.footer-col h5 { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory); margin-bottom: 20px; }
.footer-col a  { display: block; font-size: 14px; color: var(--slate); margin-bottom: 12px; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; margin-top: 24px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--slate); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--slate); }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--slate);
  font-size: 13px; text-decoration: none; transition: all .25s;
}
.social-link:hover { border-color: rgba(201,145,58,0.4); color: var(--gold); }

/* Hide GeneratePress parent theme footer */
.site-info, #footer, .footer-bar, .generate-footer, .pr-footer { display: none !important; }

/* Footer ventures (PS Digital + winm.ai) */
.footer-ventures {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; padding-top: 24px; margin-top: 24px;
}
.venture-link {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--slate);
  font-size: 12px; transition: color .2s; white-space: nowrap;
}
.venture-link:hover { color: var(--gold); }
.venture-logo { height: 20px; width: auto; opacity: 0.7; transition: opacity .2s; }
.venture-link:hover .venture-logo { opacity: 1; }
.venture-divider { color: rgba(255,255,255,0.12); font-size: 14px; }

/* ─── PAGE HEADER (inner pages) ─────────────────────────── */
.page-hero {
  padding: 180px 0 100px; position: relative; overflow: hidden;
}
.page-hero-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero .lead { max-width: 600px; }

/* ─── ACCORDION ──────────────────────────────────────────── */
.accordion { border-top: 1px solid rgba(255,255,255,0.05); }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer; width: 100%; background: none; border: none;
  color: var(--ivory); text-align: left; gap: 20px;
  transition: color .2s;
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-q { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.accordion-icon { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--gold); transition: transform .3s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease-out), padding .3s; }
.accordion-body-inner { padding-bottom: 24px; }
.accordion-body-inner p { font-size: 15px; line-height: 1.8; }

/* ─── BADGE ROW ──────────────────────────────────────────── */
.badge-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,18,33,0.8); border: 1px solid rgba(201,145,58,0.18);
  border-radius: 40px; padding: 8px 18px;
  font-size: 12px; font-weight: 500; color: var(--mist);
}
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.badge-green .badge-dot { background: #4ad295; }

/* ─── STANDARD / VALUES ──────────────────────────────────── */
.standard-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 100px; align-items: center; }
.standard-visual {
  background: rgba(11,18,33,0.6); border: 1px solid rgba(201,145,58,0.14);
  border-radius: 20px; padding: 52px 48px; position: relative; overflow: hidden;
}
.standard-visual-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,145,58,0.04) 0%, transparent 60%); pointer-events: none; }
.metric-list { margin-top: 36px; }
.metric-item { display: flex; align-items: flex-start; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.metric-item:last-child { border-bottom: none; }
.metric-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(201,145,58,0.08); border: 1px solid rgba(201,145,58,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.metric-val { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--ivory); line-height: 1; }
.metric-lbl { font-size: 12px; color: var(--slate); margin-top: 3px; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes orbFloat1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 60px) scale(1.1); }
}
@keyframes orbFloat2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, -40px) scale(0.9); }
}
@keyframes orbFloat3 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-30px, 30px); }
}
@keyframes float1 {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%     { transform: translateY(-12px) rotate(1deg); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%     { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes float3 {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-16px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes revealWidth {
  from { width: 0; }
  to   { width: 100%; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.95);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-layout { grid-template-columns: 1fr; }
  .process-sticky  { position: static; }
  .process-panel-wrap { height: 380px; display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stat-display-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .b-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .container { padding: 0 24px; }
  .container-sm,.container-md { padding: 0 24px; }
  .section { padding: 80px 0; }
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stat-row { gap: 24px; }
  h1 { font-size: clamp(36px,10vw,56px); }
  .b-grid-2,.b-grid-3,.grid-2,.grid-3,.pricing-grid,.testimonial-grid,.case-grid,.blog-grid { grid-template-columns: 1fr; }
  .tcard-featured { grid-column: span 1; }
  .blog-featured { grid-column: span 1; }
  .b-grid-4 { grid-template-columns: 1fr; }
  .stat-display-grid { grid-template-columns: 1fr 1fr; }
  .standard-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .header-inner { padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; }
  .option-cards { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .process-layout { gap: 48px; }
}
@media (max-width: 600px) {
  .hero-stat-row { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-strip .cta-actions { flex-direction: column; }
  .guarantee-wrap { flex-direction: column; text-align: center; }
  .footer-ventures { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
}
