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

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  /* Logo palette: charcoal navy, white, brand orange #e9552e */
  --brand: #e9552e;
  --brand-light: #ff7a52;
  --brand-dark: #c94726;
  --navy-900: #121a22;
  --navy-800: #1c2e3d;
  --navy-700: #243547;

  --blue-900: var(--navy-900);
  --blue-800: var(--navy-800);
  --blue-700: var(--navy-700);
  --indigo: var(--brand);
  --indigo-light: var(--brand-light);
  --violet: var(--brand-dark);
  --violet-light: var(--brand-light);
  --cyan: var(--brand);
  --cyan-light: #ff9a7a;
  --pink: #ec4899;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --white-05: rgba(255,255,255,0.05);

  --grad-primary: linear-gradient(135deg, #e9552e 0%, #ff7a52 100%);
  --grad-hero: linear-gradient(135deg, #0e1318 0%, #1c2e3d 42%, #1a1512 100%);
  --grad-card: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  --grad-glow: radial-gradient(ellipse at center, rgba(233,85,46,0.28) 0%, transparent 70%);

  --shadow-card: 0 4px 32px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.08) inset;
  --shadow-btn: 0 4px 20px rgba(233,85,46,0.45);
  --shadow-glow: 0 0 60px rgba(233,85,46,0.22);

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-height: 72px;
  /* Full nav bar height including notch / home-indicator safe area (iOS) */
  --nav-safe-top: env(safe-area-inset-top, 0px);
  --nav-offset: calc(var(--nav-height) + var(--nav-safe-top));
}

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

/* overflow-x on html (not body) avoids iOS Safari glitches with position:fixed children */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--blue-900);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blue-900); }
::-webkit-scrollbar-thumb { background: var(--indigo); border-radius: 3px; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #ffcab8 45%, #e9552e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-cyan {
  background: linear-gradient(90deg, #ffffff, #ff9a7a, #e9552e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ============================================================
   ANIMATED BACKGROUND GRID
   ============================================================ */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(233,85,46,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233,85,46,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 80%);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
}
.bg-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(233,85,46,0.2) 0%, transparent 70%);
  animation-delay: 0s;
}
.bg-orb-2 {
  width: 500px; height: 500px;
  top: 200px; right: -150px;
  background: radial-gradient(circle, rgba(255,122,82,0.12) 0%, transparent 70%);
  animation-delay: -4s;
}
.bg-orb-3 {
  width: 400px; height: 400px;
  bottom: 100px; left: 30%;
  background: radial-gradient(circle, rgba(28,46,61,0.45) 0%, transparent 70%);
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-top: var(--nav-safe-top);
  height: var(--nav-offset);
  display: flex;
  align-items: center;
  /* Avoid transitioning "all" — reduces Safari layout quirks on scroll */
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    backdrop-filter 0.35s ease;
  /* Compositing layer helps fixed headers stay pinned on iOS */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.nav.scrolled {
  background: rgba(14,19,24,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  /* background: var(--grad-primary); */
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(233,85,46,0.35);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--brand); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-70);
  transition: all 0.2s ease;
}
.nav-link:hover {
  color: var(--white);
  background: var(--white-08);
}
.nav-cta {
  padding: 10px 22px;
  background: var(--grad-primary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
  box-shadow: var(--shadow-btn);
  transition: all 0.3s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(233,85,46,0.55);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--white-08); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-offset);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(233,85,46,0.14);
  border: 1px solid rgba(233,85,46,0.32);
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--cyan-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,85,46,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(233,85,46,0); }
}

.hero-title {
  animation: fadeInUp 0.7s ease 0.1s both;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--white-70);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 300;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--white-08);
  animation: fadeInUp 0.7s ease 0.4s both;
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #ffcab8 55%, #e9552e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--white-40);
  margin-top: 4px;
  font-weight: 400;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(233,85,46,0.5);
}

.btn-secondary {
  background: var(--white-08);
  color: var(--white);
  border: 1px solid var(--white-15);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--white-15);
  border-color: var(--white-40);
}

.btn-ghost {
  background: transparent;
  color: var(--white-70);
  border: 1px solid var(--white-15);
}
.btn-ghost:hover {
  background: var(--white-08);
  color: var(--white);
  border-color: var(--white-40);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-size: 1rem;
  padding: 16px 32px;
}
.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-starter {
  background: rgba(233,85,46,0.18);
  color: #ffcab8;
  border: 1px solid rgba(233,85,46,0.38);
}
.badge-popular {
  background: rgba(233,85,46,0.28);
  color: #ffffff;
  border: 1px solid rgba(233,85,46,0.55);
}
.badge-pro {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
}

/* ============================================================
   PACKAGE CARDS (HOME)
   ============================================================ */
.packages-section {
  position: relative;
  z-index: 2;
  padding: 100px 0 120px;
}
.packages-header {
  text-align: center;
  margin-bottom: 64px;
}
.packages-header .label {
  color: var(--cyan-light);
  margin-bottom: 16px;
  display: block;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pkg-card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 36px 32px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pkg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}
.pkg-card:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: rgba(233,85,46,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(233,85,46,0.18), var(--shadow-glow);
}
.pkg-card:hover::before { opacity: 0.04; }

.pkg-card.featured {
  border-color: rgba(233,85,46,0.4);
  background: linear-gradient(145deg, rgba(233,85,46,0.12) 0%, rgba(28,46,61,0.2) 100%);
}
.pkg-card.featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pkg-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pkg-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.pkg-icon-starter { background: rgba(233,85,46,0.12); border: 1px solid rgba(233,85,46,0.28); }
.pkg-icon-growth { background: rgba(233,85,46,0.2); border: 1px solid rgba(233,85,46,0.4); }
.pkg-icon-pro { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); }

.pkg-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pkg-tagline {
  font-size: 0.85rem;
  color: var(--white-40);
  margin-bottom: 28px;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pkg-currency {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-70);
}
.pkg-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.pkg-period {
  font-size: 0.85rem;
  color: var(--white-40);
}
.pkg-desc {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--white-08);
}
.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--white-70);
}
.pkg-feature-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(233,85,46,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
}

/* ============================================================
   FEATURE HIGHLIGHTS (HOME)
   ============================================================ */
.features-section {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.feature-card {
  padding: 28px 28px 32px;
  background: var(--white-05);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.feature-card:hover {
  background: var(--white-08);
  border-color: var(--white-15);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--white-40);
  line-height: 1.65;
}

/* ============================================================
   PACKAGE DETAIL PAGES
   ============================================================ */
.pkg-hero {
  position: relative;
  z-index: 2;
  padding: 160px 0 80px;
  text-align: center;
}
.pkg-hero-badge {
  margin-bottom: 20px;
}
.pkg-hero-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 24px 0 16px;
}
.pkg-hero-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white-70);
}
.pkg-hero-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #ffffff 0%, #ffcab8 50%, #e9552e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pkg-hero-period {
  font-size: 1rem;
  color: var(--white-40);
  align-self: center;
}
.pkg-hero-desc {
  font-size: 1.1rem;
  color: var(--white-70);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   DETAIL CONTENT SECTIONS
   ============================================================ */
.detail-content {
  position: relative;
  z-index: 2;
  padding: 40px 0 120px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.detail-card {
  background: var(--white-05);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease both;
}
.detail-card:hover {
  background: var(--white-08);
  border-color: rgba(233,85,46,0.25);
  transform: translateY(-3px);
}
.detail-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--white-08);
}
.detail-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(233,85,46,0.32);
  flex-shrink: 0;
}
.detail-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.detail-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.5;
}
.detail-item-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(233,85,46,0.15);
  border: 1px solid rgba(233,85,46,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.detail-item-check::after {
  content: '✓';
  font-size: 10px;
  color: var(--cyan-light);
  font-weight: 700;
}

/* ============================================================
   INCLUDES SECTION (GROWTH/PRO)
   ============================================================ */
.includes-banner {
  position: relative;
  z-index: 2;
  margin: 0 0 40px;
}
.includes-inner {
  background: linear-gradient(135deg, rgba(233,85,46,0.14) 0%, rgba(28,46,61,0.25) 100%);
  border: 1px solid rgba(233,85,46,0.3);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.includes-icon { font-size: 28px; }
.includes-text {
  font-size: 0.9rem;
  color: var(--white-70);
}
.includes-text strong {
  color: var(--white);
  font-family: var(--font-display);
}

/* ============================================================
   CTA SECTION (DETAIL PAGES)
   ============================================================ */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
}
.cta-card {
  background: linear-gradient(135deg, rgba(233,85,46,0.16) 0%, rgba(28,46,61,0.35) 100%);
  border: 1px solid rgba(233,85,46,0.32);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(233,85,46,0.22) 0%, transparent 70%);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}
.cta-subtitle {
  font-size: 1rem;
  color: var(--white-70);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--white-08);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--white-40);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-link {
  font-size: 0.82rem;
  color: var(--white-40);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white-70); }

/* ============================================================
   MOBILE NAV MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: var(--nav-offset);
  left: 0; right: 0;
  background: rgba(14,19,24,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-08);
  z-index: 999;
  padding: 20px 24px calc(28px + env(safe-area-inset-bottom, 0px));
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.mobile-menu-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-70);
  transition: all 0.2s;
}
.mobile-menu-link:hover {
  background: var(--white-08);
  color: var(--white);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .label {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan-light);
}
.section-header p {
  font-size: 1rem;
  color: var(--white-40);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BREADCRUMB / BACK NAV
   ============================================================ */
.breadcrumb {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-offset) + 32px);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--white-40);
}
.breadcrumb-link {
  color: var(--white-70);
  transition: color 0.2s;
}
.breadcrumb-link:hover { color: var(--white); }
.breadcrumb-sep { color: var(--white-15); }
.breadcrumb-current { color: var(--white-40); }

/* ============================================================
   PLAN COMPARISON TABLE
   ============================================================ */
.compare-section {
  position: relative;
  z-index: 2;
  padding: 60px 0 100px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  .cta-card { padding: 48px 24px; }
  .includes-inner { flex-direction: column; text-align: center; }
  .section { padding: 70px 0; }
  .pkg-hero { padding: 100px 0 60px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

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