/* ─── RESET & BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:     #7A3545;
  --brand-dk:  #5c2535;
  --brand-lt:  #a0556a;
  --brand-10:  rgba(122, 53, 69, 0.10);
  --brand-20:  rgba(122, 53, 69, 0.20);

  --dark:      #0d0c0e;
  --dark-2:    #151317;
  --dark-3:    #1d1b20;
  --dark-4:    #252329;
  --mid:       #6b6778;
  --light:     #f4f2f5;
  --white:     #ffffff;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow:    0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 64px rgba(0,0,0,.20);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font:       'Inter', sans-serif;
  --font-serif: 'DM Serif Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITIES ───────────────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; }
.section-dark  { background: var(--dark-2); }
.section-muted { background: var(--light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}
.section-header h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.2; margin: 16px 0 20px; }
.section-header p  { color: var(--mid); font-size: 1.1rem; line-height: 1.7; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.65); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-10);
  border: 1px solid var(--brand-20);
  padding: 5px 14px;
  border-radius: 100px;
}
.eyebrow.light { color: var(--brand-lt); background: rgba(122,53,69,.15); border-color: rgba(122,53,69,.3); }

em { font-family: var(--font-serif); font-style: italic; color: var(--brand); }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(122,53,69,.35);
}
.btn-primary:hover { background: var(--brand-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(122,53,69,.45); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: var(--white); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}
.btn-white:hover { background: var(--light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-nav {
  background: var(--brand);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--brand-dk); }

/* ─── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(13, 12, 14, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { text-decoration: none; }
.nav-logo-img {
  height: 48px;
  width: 48px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.12);
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(13,12,14,.97);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 24px 24px;
}
.nav-mobile a {
  padding: 14px 0;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-mobile a:last-child { border: none; margin-top: 12px; }
.nav-mobile.open { display: flex; }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 100px;
}

/* Canvas particles */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* Aurora blobs */
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.aurora.a1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(122,53,69,.55) 0%, transparent 70%);
  top: -20%; right: -10%;
  animation: drift1 18s ease-in-out infinite alternate;
}
.aurora.a2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(80,20,40,.4) 0%, transparent 70%);
  bottom: -15%; left: -8%;
  animation: drift2 22s ease-in-out infinite alternate;
}
.aurora.a3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(160,85,106,.25) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: drift3 26s ease-in-out infinite alternate;
}
@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 40px) scale(1.15); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, -50px) scale(1.1); }
}
@keyframes drift3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 30px) scale(0.9); }
}

/* Film grain noise */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Floating edge stat cards */
.fc {
  position: absolute;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 2;
  pointer-events: none;
  min-width: 160px;
}
.fc-leads {
  left: max(20px, calc((100vw - 1180px)/2 - 10px));
  top: 38%;
  animation: fc-float 6s ease-in-out infinite;
}
.fc-ai {
  right: max(20px, calc((100vw - 1180px)/2 - 10px));
  top: 42%;
  animation: fc-float 7s ease-in-out infinite reverse;
}
@keyframes fc-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@media(max-width: 1280px) { .fc { display: none; } }

.fc-top { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.fc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4dd98a;
  animation: pulse-dot 2s infinite;
}
.fc-dot.ai { background: var(--brand-lt); }
.fc-label { font-size: 0.75rem; color: rgba(255,255,255,.45); font-weight: 500; }
.fc-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}
.fc-bar {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}
.fc-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--brand), var(--brand-lt));
  border-radius: 2px;
  animation: bar-grow 2s ease-out forwards;
}
@keyframes bar-grow {
  from { width: 0; }
  to   { width: 72%; }
}
.fc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand-lt);
  background: rgba(122,53,69,.2);
  border: 1px solid rgba(122,53,69,.35);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Hero inner — centered */
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
}

/* Entrance animations */
.h-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: h-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes h-enter {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122,53,69,.15);
  border: 1px solid rgba(122,53,69,.35);
  color: #d4899a;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #e87a90;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,122,144,.4); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 6px rgba(232,122,144,0); }
}

.hero-headline {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.h-word { display: inline-block; margin-right: 0.2em; }
.h-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.h-brand  { color: var(--brand-lt); }

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 44px;
  max-width: 580px;
  line-height: 1.75;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

/* Feature pills */
.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}
.h-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}
.h-pill:hover {
  background: rgba(122,53,69,.2);
  border-color: rgba(122,53,69,.4);
  color: var(--white);
}
.h-pill svg { width: 14px; height: 14px; color: var(--brand-lt); flex-shrink: 0; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.proof-avatars { display: flex; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -10px;
  display: block;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #e88a9a, #c46070); }
.av2 { background: linear-gradient(135deg, #9a7ab0, #7a5090); }
.av3 { background: linear-gradient(135deg, #7ab0b0, #4a8090); }
.av4 { background: linear-gradient(135deg, #b0a07a, #907060); }
.proof-text { font-size: 0.88rem; color: rgba(255,255,255,.5); }
.proof-text strong { color: rgba(255,255,255,.8); }

/* ─── TICKER ──────────────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  overflow: hidden;
}
.ticker-label {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ticker { overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.ticker-track span {
  padding: 0 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  border-right: 1px solid rgba(255,255,255,.1);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SERVICES ────────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media(max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--light);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-ai {
  background: var(--dark-2);
  border-color: rgba(255,255,255,.08);
}
.service-card-ai h3, .service-card-ai p, .service-card-ai li { color: var(--white); }
.service-card-ai p, .service-card-ai li { color: rgba(255,255,255,.65); }
.service-card-ai .service-link { color: var(--brand-lt); }

.service-tag {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.service-icon {
  width: 64px; height: 64px;
  background: var(--brand-10);
  border: 1px solid var(--brand-20);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--brand);
}
.service-card-ai .service-icon {
  background: rgba(122,53,69,.2);
  border-color: rgba(122,53,69,.35);
  color: var(--brand-lt);
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { font-size: 1.65rem; font-weight: 700; margin-bottom: 16px; }
.service-card p  { color: var(--mid); margin-bottom: 28px; line-height: 1.75; font-size: 1rem; }

.service-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.service-list li {
  color: var(--mid);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--brand-10);
  border: 1px solid var(--brand-20);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%237A3545' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.service-card-ai .service-list li { color: rgba(255,255,255,.6); }
.service-card-ai .service-list li::before { background-color: rgba(122,53,69,.2); border-color: rgba(122,53,69,.4); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ─── WHAT YOU GET ────────────────────────────────────────────────────────── */
.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media(max-width: 700px) { .what-grid { grid-template-columns: 1fr; } }

.what-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}
.what-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(122,53,69,.4);
  transform: translateY(-3px);
}

/* wide card spans full row */
.what-card-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.what-card-wide .what-icon { flex-shrink: 0; margin-bottom: 0; }
.what-card-text h4 { margin-bottom: 10px; }

.what-icon {
  width: 52px; height: 52px;
  background: rgba(122,53,69,.2);
  border: 1px solid rgba(122,53,69,.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--brand-lt);
  flex-shrink: 0;
}
.what-icon svg { width: 22px; height: 22px; }

.what-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.what-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}

@media(max-width: 700px) {
  .what-card-wide { flex-direction: column; gap: 0; }
  .what-card-wide .what-icon { margin-bottom: 22px; }
}

/* ─── STATS ───────────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media(max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card {
  background: var(--light);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 52px 36px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  display: inline;
  font-family: var(--font-serif);
}
.stat-suffix {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand);
  display: inline;
}
.stat-card p { color: var(--mid); font-size: 0.95rem; margin-top: 16px; line-height: 1.6; }

/* ─── SOCIAL PROOF ────────────────────────────────────────────────────────── */
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 72px;
}
.ind-tag {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.1);
  color: var(--mid);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 100px;
  transition: var(--transition);
}
.ind-tag:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-10);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media(max-width: 900px) { .outcomes-grid { grid-template-columns: 1fr; } }

.outcome-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.outcome-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.outcome-icon {
  width: 48px; height: 48px;
  background: var(--brand-10);
  border: 1px solid var(--brand-20);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brand);
}
.outcome-icon svg { width: 22px; height: 22px; }

.outcome-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.outcome-card p  { color: var(--mid); font-size: 0.95rem; line-height: 1.75; }

/* ─── PRICING ─────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media(max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.pricing-card {
  background: var(--light);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-featured {
  background: var(--dark-2);
  border-color: var(--brand);
  border-width: 2px;
  box-shadow: 0 0 0 4px var(--brand-20), var(--shadow-lg);
}
.pricing-featured .plan-name,
.pricing-featured .plan-price,
.pricing-featured .plan-desc,
.pricing-featured .plan-features li { color: var(--white); }
.pricing-featured .plan-desc { color: rgba(255,255,255,.6); }
.pricing-featured .plan-features li { color: rgba(255,255,255,.7); }
.pricing-featured .plan-features li::before { border-color: rgba(122,53,69,.5); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 1rem; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.plan-price { margin-bottom: 16px; }
.price-from { display: block; font-size: 0.8rem; color: var(--mid); margin-bottom: 2px; }
.price-num { font-size: 3rem; font-weight: 800; color: var(--dark); font-family: var(--font-serif); line-height: 1; }
.plan-desc { color: var(--mid); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.6; }

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  font-size: 0.9rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--brand-10);
  border: 1px solid var(--brand-20);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%237A3545' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── CTA BAND ────────────────────────────────────────────────────────────── */
.section-cta { background: var(--dark-2); padding: 80px 0; }
.cta-band {
  background: var(--brand);
  border-radius: var(--radius-xl);
  padding: 96px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-orb-1 { width: 300px; height: 300px; background: rgba(255,255,255,.15); top: -100px; left: -80px; }
.cta-orb-2 { width: 250px; height: 250px; background: rgba(0,0,0,.2); bottom: -80px; right: -60px; }

.cta-band .eyebrow { color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin: 20px 0; line-height: 1.2; }
.cta-band h2 em { color: rgba(255,255,255,.8); }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 44px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media(max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 48px; } }

.contact-info .eyebrow { margin-bottom: 16px; display: inline-block; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; line-height: 1.2; }
.contact-info p  { color: var(--mid); margin-bottom: 36px; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-size: 0.95rem;
}
.contact-item svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; }

.contact-form {
  background: var(--light);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-xl);
  padding: 56px 52px;
  box-shadow: var(--shadow);
}
@media(max-width: 480px) { .contact-form { padding: 36px 24px; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0acb8; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-10);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.form-disclaimer { text-align: center; font-size: 0.8rem; color: var(--mid); margin-top: 12px; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 100px 0 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
}
@media(max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }

.footer-logo {
  height: 52px;
  width: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,.4); max-width: 260px; line-height: 1.65; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.3);
}

/* ─── REVEAL ANIMATIONS ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media(max-width: 768px) {
  .nav-links, .nav .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 88px 0; }
  .hero { min-height: auto; padding: 110px 0 72px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 60px 36px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 480px) {
  .section { padding: 72px 0; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step { max-width: 100%; }
  .cta-band { padding: 48px 28px; }
  .footer-links { grid-template-columns: 1fr; }
}
