/* ═══════════════════════════════════════════
   KAYROS AI — Premium Landing Page
   Navy #0A1628 · Gold #C9A96E
   Fonts: Sora (headings) · DM Sans (body)
   ═══════════════════════════════════════════ */

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

/* ── VARIABLES ── */
:root {
  --navy: #0A1628;
  --navy-light: #101E35;
  --navy-mid: #132A4A;
  --gold: #C9A96E;
  --gold-light: #D4BC8E;
  --gold-dark: #A8894E;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-60: rgba(255,255,255,0.6);
  --white-50: rgba(255,255,255,0.5);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --gold-10: rgba(201,169,110,0.1);
  --gold-20: rgba(201,169,110,0.2);
  --gold-40: rgba(201,169,110,0.4);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-to-content:focus { left: 0; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-80px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(80px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: none; }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.sec-pad { padding: 120px 5%; }
section { position: relative; }
.section-dark { background: var(--navy); }
.section-alt { background: var(--navy-light); }
.sec-pad + .sec-pad,
.sec-pad + section,
.marquee-wrap + .sec-pad {
  border-top: 1px solid var(--white-10);
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  transition: all 0.4s var(--ease-smooth);
  background: var(--navy);
}
.navbar.scrolled {
  background: var(--navy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-20);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo img { height: 30px; width: auto; transition: opacity 0.3s; }
.nav-logo:hover img { opacity: 0.8; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white-70);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Nav CTA */
.btn-nav {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s var(--ease-out);
}
.btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}
.btn-nav::after { display: none; }

/* Language toggle */
.lang-toggle {
  display: flex;
  background: var(--white-05);
  border-radius: 6px;
  border: 1px solid var(--white-10);
  overflow: hidden;
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--white-50);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-toggle button.active {
  background: var(--gold);
  color: var(--navy);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 60px;
}

/* Hero background layers */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(201,169,110,0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--white-05) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Floating particles canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 600px; height: 600px; top: 10%; right: -10%; }
.hero-orb-2 { width: 400px; height: 400px; bottom: 10%; left: -5%; animation-delay: -4s; animation-direction: reverse; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(3deg); }
}

.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}
.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--white-70);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--white-10);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat .label {
  font-size: 13px;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px 36px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s var(--ease-out);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.3);
}
.cta-microcopy {
  font-size: 12px;
  color: var(--white-50);
  margin-top: 8px;
  text-align: center;
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white-70);
  font-weight: 500;
  font-size: 15px;
  padding: 16px 0;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold); }

.btn-outline {
  display: block;
  text-align: center;
  padding: 16px;
  border: 2px solid var(--gold-40);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s var(--ease-out);
  margin-top: auto;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  background: var(--navy-light);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-30);
  padding: 0 32px;
}
.marquee-item svg {
  width: 18px; height: 18px;
  opacity: 0.5;
  flex-shrink: 0;
}
.marquee-divider {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════ */
.sec-header { margin-bottom: 72px; }
.sec-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.sec-title .gold { color: var(--gold); }
.sec-desc {
  font-size: 18px;
  color: var(--white-70);
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PROBLEM SECTION
   ══════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white-05);
  border-radius: 12px;
  border-left: 3px solid;
  transition: transform 0.3s var(--ease-out);
}
.stat-card:hover { transform: translateX(6px); }
.stat-card.red { border-left-color: #EF4444; }
.stat-card.amber { border-left-color: #F59E0B; }
.stat-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--gold-10); border: 1px solid var(--gold-20); border-radius: 10px; }
.stat-card strong { display: block; margin-bottom: 2px; }
.stat-card small { font-size: 14px; color: var(--white-60); }

/* ══════════════════════════════════════
   INTEGRATIONS BAR
   ══════════════════════════════════════ */
.integrations-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 5%;
  background: var(--navy);
  border-bottom: 1px solid var(--white-10);
  flex-wrap: wrap;
}
.integrations-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-30);
}
.integrations-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.integration-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white-50);
  font-size: 13px;
  font-weight: 500;
}
.integration-item svg { opacity: 0.6; }

/* Before/After */
.before-after {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ba-phone { flex: 1; text-align: center; }
.ba-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ba-before { color: #EF4444; }
.ba-after { color: #22C55E; }
.ba-arrow {
  flex-shrink: 0;
  opacity: 0.5;
}
.replied-badge {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  color: #22C55E;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

/* Phone mockup */
.phone-mockup {
  background: var(--navy-mid);
  border-radius: 32px;
  padding: 16px;
  border: 1px solid var(--white-10);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  max-width: 340px;
  margin: 0 auto;
}
.phone-screen {
  background: #111827;
  border-radius: 20px;
  padding: 24px 20px;
  min-height: 440px;
}
.chat-time {
  font-size: 11px;
  color: var(--white-30);
  text-align: center;
  margin-bottom: 16px;
}
.phone-screen .chat-bubble {
  padding: 12px 16px !important;
  border-radius: 16px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  max-width: 85% !important;
  margin-bottom: 12px !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  position: static !important;
}
.phone-screen .chat-bubble.mockup-user {
  background: var(--gold-20) !important;
  color: var(--gold-light) !important;
  margin-left: auto !important;
  border-bottom-right-radius: 4px !important;
}
.phone-screen .chat-bubble.mockup-bot {
  background: var(--white-10);
  color: var(--white-70);
  border-bottom-left-radius: 4px;
}
.unread-badge {
  display: inline-block;
  background: #EF4444;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  margin-top: 16px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ══════════════════════════════════════
   FEATURES
   ══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: linear-gradient(135deg, var(--white-05), transparent);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  border-color: var(--gold-40);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-card p { color: var(--white-60); font-size: 15px; line-height: 1.7; }

/* ══════════════════════════════════════
   INDUSTRIES
   ══════════════════════════════════════ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.industry-card {
  background: linear-gradient(135deg, var(--white-05), transparent);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.industry-card:hover {
  border-color: var(--gold-40);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.industry-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy-mid) 25%, rgba(19,42,74,0.6) 50%, var(--navy-mid) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.industry-img-wrap img[src] { animation: none; }
.industry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.industry-card:hover .industry-img-wrap img { transform: scale(1.05); }
.industry-usecase {
  font-size: 12px;
  color: var(--gold);
  background: var(--gold-10);
  border-top: 1px solid var(--gold-20);
  padding: 12px 24px;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}
.industry-card:hover .industry-usecase {
  max-height: 100px;
  opacity: 1;
}
.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  padding: 24px 24px 8px;
}
.industry-card p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.6;
  padding: 0 24px 24px;
}

/* ══════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════ */
.steps-container { position: relative; }
.steps-line {
  position: absolute;
  left: 39px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--gold-20), transparent);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding-bottom: 64px;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  background: var(--navy);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 8px;
}
.step-content p { color: var(--white-60); font-size: 16px; line-height: 1.7; max-width: 480px; }
.step-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ══════════════════════════════════════
   TRUST
   ══════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(135deg, var(--white-05), transparent);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out);
}
.trust-card:hover {
  border-color: var(--gold-40);
  transform: translateY(-4px);
}
.trust-icon {
  width: 56px; height: 56px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.trust-card p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PRICING
   ══════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch; /* equal height */
}
.pricing-card {
  background: linear-gradient(135deg, var(--white-05), transparent);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}
.pricing-card:hover {
  border-color: var(--gold-40);
  transform: translateY(-6px);
}

/* Popular card */
.pricing-card.popular {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,169,110,0.1), rgba(201,169,110,0.02));
  position: relative;
  box-shadow: 0 30px 80px rgba(201,169,110,0.12);
  z-index: 1;
}
.pricing-card.popular {
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-6px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-for {
  font-size: 13px;
  color: var(--white-50);
  margin-bottom: 16px;
  line-height: 1.4;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period { font-size: 15px; color: var(--white-50); margin-bottom: 4px; }
.pricing-daily { font-size: 13px; color: var(--white-30); margin-bottom: 8px; }
/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  color: var(--white-70);
  line-height: 1.8;
  margin-top: 20px;
}
.about-signature {
  color: var(--gold) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px !important;
  margin-top: 24px !important;
}
.about-side { display: flex; flex-direction: column; gap: 20px; }
.about-badge-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 28px;
}
.about-badge-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin: 12px 0 8px;
}
.about-badge-card p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.6;
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}
.australia-flag { border-radius: 3px; flex-shrink: 0; }

.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #F59E0B;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 8px 20px;
  border-radius: 100px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  table-layout: fixed;
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--white-10);
}
.compare-table th:first-child, .compare-table td:first-child {
  text-align: left;
  width: 40%;
}
.compare-table th {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white-50);
}
.compare-table td { color: var(--white-60); }
.compare-highlight {
  color: var(--gold) !important;
  font-weight: 600;
  background: var(--gold-10);
}
.no-lockin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #22C55E;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 8px 20px;
  border-radius: 100px;
}
.pricing-setup {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 32px;
  padding: 6px 14px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 100px;
  display: inline-block;
}
.pricing-features {
  flex-grow: 1;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--white-70);
  padding: 10px 0;
  border-bottom: 1px solid var(--white-05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card.popular .btn-outline {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.pricing-card.popular .btn-outline:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--gold-40); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--gold);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   CTA
   ══════════════════════════════════════ */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cta-or {
  font-size: 13px;
  color: var(--white-30);
  margin: 16px 0 12px;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s var(--ease-out);
}
.btn-line:hover { background: #05B34C; transform: translateY(-2px); color: #fff; }
.cta-checklist {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-check {
  font-size: 14px;
  color: var(--white-60);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-check::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-desc {
  font-size: 18px;
  color: var(--white-70);
  max-width: 500px;
  margin: 20px auto 40px;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  padding: 60px 5% 0;
  border-top: 1px solid var(--white-10);
  background: rgba(5,10,20,0.6);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { max-width: 280px; }
.footer-tagline {
  font-size: 14px;
  color: var(--white-50);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--white-50);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--white-10);
}
.footer-copy { font-size: 13px; color: var(--white-30); }

/* ══════════════════════════════════════
   STICKY MOBILE CTA
   ══════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--navy);
  border-top: 1px solid var(--gold-20);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
}
.sticky-cta.visible { transform: none; }
.sticky-cta-btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; display: flex; border-radius: 8px; }

@media (max-width: 767px) {
  .sticky-cta { display: block; }
  /* Prevent Stammer widget from going full-screen on mobile */
  iframe[src*="stammer"] {
    max-height: 70vh !important;
    max-width: 90vw !important;
    bottom: 70px !important;
  }
}

/* ══════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  background: var(--navy-mid);
  border: 1px solid var(--white-10);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s var(--ease-out);
  z-index: 100;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ══════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 10000;
  background: var(--navy-mid);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  width: calc(100% - 48px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  transition: transform 0.5s var(--ease-out);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.6;
  flex: 1;
}
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}
.cookie-btn:hover { background: var(--gold-light); }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 991px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 360px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--white-10);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .nav-overlay.open { display: block; }
  .nav-links a { font-size: 18px; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .step { grid-template-columns: 60px 1fr; gap: 24px; }
  .step-num { width: 60px; height: 60px; font-size: 22px; }
  .steps-line { left: 29px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .sec-pad { padding: 80px 5%; }
  .features-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 140px 5% 60px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { gap: 24px; }
  .hero-stat .num { font-size: 28px; }
  .phone-mockup { max-width: 280px; }
  .before-after { flex-direction: column; }
  .ba-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { max-width: none; }
  .sec-header { margin-bottom: 48px; }
  .btn-primary { width: 100%; justify-content: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
}
