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

:root {
  /* Corporate palette: deep navy + champagne gold */
  --navy: #0a2540;
  --navy-2: #122c4a;
  --navy-deep: #061a2e;
  --gold: #c9a961;
  --gold-soft: #e6d5a8;
  --gold-light: #faf6ec;

  --blue: #0a2540;          /* legacy alias → navy */
  --blue-dark: #061a2e;     /* legacy alias */
  --blue-light: #f4f7fb;    /* legacy alias */

  --text: #0a1929;
  --text-2: #5a6478;
  --text-3: #8a93a6;

  --bg: #ffffff;
  --bg-2: #fafaf7;          /* warm off-white */
  --bg-3: #f4f5f0;          /* cream */

  --border: #e5e7eb;
  --border-2: #d1d5db;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 2px 16px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 32px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.12);

  --font-serif: 'Playfair Display', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

/* ── REVEAL ON SCROLL ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
  will-change: opacity, transform;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.press-logo {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease, color .2s !important;
}
.press-logo.press-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  .press-logo { opacity: 1 !important; transform: none !important; }
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Premium serif for h1/h2 */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -.02em;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(210,210,215,0.5);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-2);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }

.btn-nav {
  background: var(--navy) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .82rem !important;
  letter-spacing: .3px;
  transition: background .2s, transform .1s, box-shadow .2s !important;
  box-shadow: 0 4px 12px rgba(10, 37, 64, .15);
}
.btn-nav:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mob-link {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-2);
}
.mob-cta {
  margin-top: 8px;
  background: var(--blue);
  color: white !important;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  border: none;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 100px;
  background: var(--navy-deep);
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .35;
  filter: saturate(.7) brightness(.6);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6, 26, 46, .75) 0%,
      rgba(10, 37, 64, .92) 60%,
      rgba(10, 37, 64, .98) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.08) 0%, transparent 45%);
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { position: relative; z-index: 3; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  font-size: .78rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .5px;
  border: 1px solid rgba(255, 255, 255, .15);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, .25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201, 169, 97, .25); }
  50% { box-shadow: 0 0 0 6px rgba(201, 169, 97, .15); }
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: white;
  margin-bottom: 28px;
}

.serif-italic {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #e6d5a8 0%, var(--gold) 60%, #b8954d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255, 255, 255, .75);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .3px;
  transition: background .25s, transform .15s, box-shadow .25s;
  box-shadow: 0 8px 24px rgba(201, 169, 97, .35);
}
.btn-primary svg { transition: transform .25s; }
.btn-primary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 169, 97, .4);
}
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .3px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .2s, transform .15s, background .2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, .12);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.trust-item { display: flex; flex-direction: column; gap: 6px; }
.trust-item strong {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: white;
  line-height: 1;
  letter-spacing: -.02em;
}
.gold-mark {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.trust-item span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.trust-divider { width: 1px; height: 48px; background: rgba(255, 255, 255, .15); }

/* ── HERO VISUAL (image + floating cards) ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 37, 64, .2);
  aspect-ratio: 4/5;
}
.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.hero-image-wrap:hover .hero-image { transform: scale(1.04); }

.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, .15) 0%, transparent 50%, rgba(201, 169, 97, .1) 100%);
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .15);
  white-space: nowrap;
}
.float-card strong { display: block; font-size: .82rem; color: white; font-weight: 600; }
.float-card span { font-size: .72rem; color: rgba(255, 255, 255, .6); }

.float-icon-square {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon-square.gold { background: var(--gold); color: white; }
.float-icon-square svg { width: 18px; height: 18px; }

.card-1 { top: 8%; left: -40px; animation: floatY 3.5s ease-in-out infinite; }
.card-2 { bottom: 10%; right: -40px; animation: floatY 3.5s ease-in-out infinite .8s reverse; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── PRESS / TRUSTED BY ── */
#press {
  background: var(--navy);
  padding: 48px 24px;
}
.press-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.press-label {
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 28px;
}
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}
.press-logo {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .5px;
  transition: color .2s;
  cursor: default;
}
.press-logo.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.press-logo:hover { color: var(--gold); }
.press-logo .gold-mark { color: var(--gold); }

/* ── SECTIONS COMMON ── */
section:not(#hero) {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

#services, #pricing, #faq { background: none; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-header { padding-top: 0; }
.section-header .section-eyebrow { display: inline-block; }
.section-header .section-eyebrow::before { display: none; }
.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  color: var(--text-2);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.service-card.featured::before { background: var(--gold); transform: scaleX(1); }

.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon.backup { background: var(--gold-light); color: var(--gold); }
.service-icon.restore { background: rgba(255,255,255,.1); color: var(--gold); }
.service-icon.update { background: var(--gold-light); color: var(--gold); }
.service-icon.appleid { background: var(--gold-light); color: var(--gold); }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-card.featured h3 { color: white; }
.service-card p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 20px;
}
.service-card.featured p { color: rgba(255,255,255,.8); }

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.service-list li {
  font-size: .83rem;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.service-card.featured .service-list li { color: rgba(255,255,255,.85); }
.service-card.featured .service-list li::before { color: rgba(255,255,255,.7); }

.service-cta {
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .3px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap .2s, color .2s;
}
.service-card.featured .service-cta { color: var(--gold); border-color: var(--gold); }
.service-cta:hover { color: var(--gold); }

/* ── ABOUT ── */
#about {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: white;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.about-badge-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.3;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 12px 0 20px;
}

.about-lead {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-feature-icon {
  width: 48px; height: 48px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 97, .2);
}
.about-feature strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-feature p {
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { bottom: -16px; right: 16px; }
}

/* Real avatar images */
.testi-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── HOW IT WORKS ── */
#how {
  background: var(--bg-2);
  max-width: 100% !important;
  padding: 100px 24px;
}
#how .section-header, #how .steps {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  flex: 1 1 200px;
  max-width: 240px;
  box-shadow: var(--shadow);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
  font-style: italic;
  letter-spacing: -.02em;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-content p {
  font-size: .83rem;
  color: var(--text-2);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--border);
  align-self: center;
  padding: 0 4px;
}

/* ── PRICING ── */
#pricing { background: var(--bg-2); max-width: 100% !important; padding: 120px 24px; }
#pricing .section-header,
.pricing-grid,
.pricing-note {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.price-card.best {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: scale(1.04);
}
.price-card.best:hover { transform: scale(1.04) translateY(-6px); border-color: var(--gold); }

.price-best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.price-icon { font-size: 1.6rem; margin-bottom: 16px; opacity: .85; }

.price-icon-svg {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.price-icon-svg svg { width: 26px; height: 26px; }
.price-icon-svg.gold { background: rgba(201, 169, 97, .15); color: var(--gold); }
.price-card.best .price-icon-svg { background: rgba(201, 169, 97, .15); }

.price-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 20px;
  color: var(--navy);
}
.price-card.best h3 { color: white; }

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 14px;
}
.price .amount {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
}
.price .currency {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 8px;
  color: var(--gold);
}

.price-desc {
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px;
}
.price-card.best .price-desc { color: rgba(255,255,255,.6); }

.price-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.price-list li {
  font-size: .82rem;
  color: var(--text-2);
}
.price-card.best .price-list li { color: rgba(255,255,255,.8); }

.btn-price {
  display: block;
  background: white;
  color: var(--navy);
  border: 1.5px solid var(--border-2);
  padding: 14px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .3px;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-price:hover { background: var(--navy); border-color: var(--navy); color: white; }

.btn-price-best {
  display: block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .3px;
  transition: background .2s;
}
.btn-price-best:hover { background: white; }

/* ── STRIPE PAY BUTTONS ── */
.price-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-stripe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #635bff;
  color: white;
  padding: 12px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .3px;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: 1.5px solid #635bff;
  box-shadow: 0 4px 12px rgba(99, 91, 255, .25);
}
.btn-stripe:hover {
  background: #5851ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(99, 91, 255, .35);
}

.btn-stripe-best {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  padding: 12px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
  border: 1.5px solid white;
}
.btn-stripe-best:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.pricing-note {
  text-align: center;
  color: var(--text-2);
  font-size: .82rem;
}

/* ── CUSTOM PAY BANNER (devis personnalisé) ── */
.custom-pay-banner {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.custom-pay-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 0% 100%, rgba(99, 91, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(201, 169, 97, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.custom-pay-content {
  position: relative;
  display: grid;
  grid-template-columns: auto 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.custom-pay-icon {
  width: 72px; height: 72px;
  background: rgba(99, 91, 255, .15);
  border: 1px solid rgba(99, 91, 255, .3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b85ff;
  flex-shrink: 0;
}
.custom-pay-icon svg { width: 32px; height: 32px; }

.custom-pay-text { color: white; }
.custom-pay-eyebrow {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.custom-pay-text h3 {
  font-family: var(--font-serif);
  color: white;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.custom-pay-desc {
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
  line-height: 1.65;
}

.custom-pay-form {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.custom-pay-input-group { display: flex; flex-direction: column; gap: 6px; }
.custom-pay-input-group label {
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .3px;
}
.custom-pay-input-group .optional {
  color: rgba(255, 255, 255, .4);
  font-weight: 400;
  font-size: .72rem;
}

.amount-wrapper {
  position: relative;
}
.custom-pay-input-group input {
  width: 100%;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .15);
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.custom-pay-input-group input::placeholder { color: rgba(255, 255, 255, .35); }
.custom-pay-input-group input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .12);
}
.amount-wrapper input { padding-right: 40px; }
.amount-suffix {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  pointer-events: none;
}

.btn-pay-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #635bff;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 18px rgba(99, 91, 255, .35);
  margin-top: 4px;
}
.btn-pay-quote:hover {
  background: #5851ff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(99, 91, 255, .45);
}

.custom-pay-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
  letter-spacing: .3px;
  margin-top: 4px;
  justify-content: center;
}
.custom-pay-secure svg { color: var(--gold); flex-shrink: 0; }

@media (max-width: 900px) {
  .custom-pay-banner { padding: 40px 28px; }
  .custom-pay-content { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .custom-pay-icon { margin: 0 auto; }
  .custom-pay-secure { font-size: .7rem; }
}

/* ── PAYMENT METHODS ── */
.payment-methods {
  margin-top: 64px;
  padding: 36px 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}

.payment-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform .2s;
}
.payment-card:hover { transform: translateY(-3px); }

.payment-card svg {
  width: 56px;
  height: 36px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(10, 37, 64, .08);
}

.payment-card span {
  font-size: .72rem;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: .3px;
}

.payment-secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  width: 100%;
  justify-content: center;
}
.payment-secure svg { color: var(--gold); flex-shrink: 0; }

@media (max-width: 600px) {
  .payment-methods { padding: 28px 20px; }
  .payment-icons { gap: 18px; }
  .payment-card svg { width: 48px; height: 32px; }
  .payment-secure { font-size: .75rem; }
}

/* ── FAQ ── */
#faq { background: var(--bg-2); max-width: 100% !important; padding: 100px 24px; }
#faq .section-header, .faq-list {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
}

.faq-icon {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-answer.open {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-answer p {
  padding: 0 24px;
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--bg-2);
  max-width: 100% !important;
  padding: 100px 24px;
}
#testimonials .section-header,
.testimonials-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
  font-style: italic;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }

.testi-card p {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--navy);
  flex: 1;
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--bg-2);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .88rem; }
.testi-author span { font-size: .78rem; color: var(--text-2); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  margin: 0 auto;
  background: white;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,.04);
  padding: 20px 24px;
  z-index: 2000;
  transform: translateY(140%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }

.cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-icon { font-size: 1.6rem; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; font-size: .9rem; margin-bottom: 4px; }
.cookie-text p { font-size: .8rem; color: var(--text-2); line-height: 1.5; }

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 20px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s;
}
.cookie-refuse {
  background: var(--bg-2);
  color: var(--text);
}
.cookie-refuse:hover { background: var(--border); }
.cookie-accept {
  background: var(--blue);
  color: white;
}
.cookie-accept:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,113,227,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, background .2s;
  z-index: 1500;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--blue-dark); }
.back-to-top svg { width: 18px; height: 18px; }

@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; }
  .back-to-top { bottom: 12px; right: 12px; }
}

/* ── FOUNDER SPOTLIGHT ── */
#team {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.founder-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.founder-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 24px 60px rgba(10, 37, 64, .18);
}

.founder-photo-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .3px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(10, 37, 64, .25);
  border: 1px solid rgba(201, 169, 97, .3);
}
.founder-photo-badge svg {
  width: 16px; height: 16px;
  color: var(--gold);
}

.founder-content { position: relative; z-index: 2; }

.founder-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--navy);
  margin: 12px 0 8px;
  line-height: 1.15;
}

.founder-name-tag {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.founder-lead {
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.founder-stat { display: flex; flex-direction: column; gap: 4px; }
.founder-stat strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1;
}
.founder-stat span {
  font-size: .72rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
}

.founder-quote {
  background: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 14px 14px 0;
  margin-bottom: 28px;
}
.founder-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 10px;
}
.founder-signature {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .5px;
}

.founder-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.founder-cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: .3px;
}
.founder-cert svg {
  width: 14px; height: 14px;
  color: var(--gold);
}

@media (max-width: 900px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 32px;
  }
  .founder-photo { max-width: 380px; margin: 0 auto; }
  .founder-stats { grid-template-columns: 1fr; gap: 16px; }
  .founder-stats { padding: 20px 0; }
}

@media (max-width: 500px) {
  .founder-card { padding: 32px 24px; }
}

/* ── PREMIUM CTA BANNER ── */
#cta-banner {
  padding: 0 24px;
  max-width: 1200px;
  margin: 40px auto 80px;
}

.cta-banner-inner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  overflow: hidden;
  text-align: center;
}

.cta-banner-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(201, 169, 97, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(201, 169, 97, 0.08) 0%, transparent 40%);
}

.cta-banner-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.gold-eyebrow {
  color: var(--gold) !important;
  display: inline-block !important;
}
.gold-eyebrow::before { display: none; }

.cta-banner-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 12px 0 20px;
}

.serif-italic-gold {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.cta-banner-sub {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-banner-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .3px;
  transition: background .25s, transform .15s;
}
.btn-gold svg { transition: transform .25s; }
.btn-gold:hover {
  background: white;
  transform: translateY(-2px);
}
.btn-gold:hover svg { transform: translateX(3px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .3px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, .1);
}

@media (max-width: 700px) {
  .cta-banner-inner { padding: 56px 32px; }
}

/* ── CONTACT ── */
#contact {
  background: none;
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { padding-top: 8px; }
.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 97, .2);
}
.contact-item strong { display: block; font-size: .85rem; font-weight: 700; }
.contact-item span { font-size: .88rem; color: var(--text-2); }
.contact-link {
  font-size: .88rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}
.contact-link:hover { color: var(--gold); }
.contact-sub {
  display: block;
  font-size: .75rem;
  color: var(--text-3);
  margin-top: 4px;
  letter-spacing: .2px;
}

/* FORM */
.contact-form {
  background: var(--bg-2);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.checkbox-group { flex-direction: row; align-items: flex-start; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-2);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--blue); }
.checkbox-label a { color: var(--blue); }

.btn-submit {
  background: var(--blue);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }

.form-success {
  display: none;
  background: #e8faf0;
  color: #1a7a40;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  align-items: center;
  gap: 8px;
}
.form-success.show { display: flex; }

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.6);
  padding: 80px 24px 32px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: .4;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
}

.logo-footer span { color: white; font-family: var(--font-serif); font-weight: 600; }
.footer-brand p {
  margin-top: 16px;
  font-size: .9rem;
  line-height: 1.75;
  max-width: 320px;
  color: rgba(255,255,255,.5);
}

.footer-brand-tagline {
  display: inline-block;
  margin-top: 24px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  letter-spacing: .3px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 1px;
  background: var(--gold);
}
.footer-col a {
  text-decoration: none;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  font-weight: 400;
  transition: color .2s, padding-left .2s;
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero { padding: 100px 24px 80px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .float-card { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .press-logos { gap: 28px; }
  .press-logo { font-size: .95rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.best { transform: none; }
  .price-card.best:hover { transform: translateY(-6px); }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
