/* ========================================
   RGG PRE-LAUNCH — STYLES
   Hybrid: dark sections + light sections for contrast
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy-900: #0F1E38;
  --navy-800: #152543;
  --navy-700: #1B3057;
  --navy-600: #1E3665;
  --navy-500: #24407A;
  --accent: #4B7EC8;
  --accent-light: #7AAEE8;
  --accent-glow: rgba(75, 126, 200, 0.25);
  --light-bg: #F7F9FC;
  --light-card: #FFFFFF;
  --light-border: #E2E8F0;
  --light-text: #1E293B;
  --light-text-secondary: #64748B;
  --gold: #D4A843;
  --gold-light: #F0D78C;
  --gold-glow: rgba(212, 168, 67, 0.25);
  --gold-dark: #B8922E;
  --text-white: #FFFFFF;
  --text-muted: #B8CDE8;
  --border-subtle: rgba(75, 126, 200, 0.2);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --transition: 300ms ease;
  --container: 1140px;
  --navbar-h: 64px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: var(--navbar-h)
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-white);
  background: var(--navy-700);
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition)
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

ul,
ol {
  list-style: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

strong {
  font-weight: 600
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

.section {
  padding: 100px 0;
  position: relative
}

.section-dark {
  background: var(--navy-800)
}

.section-light {
  background: var(--light-bg);
  color: var(--light-text)
}

.section-cta {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  text-align: center
}

.section-header {
  text-align: center;
  margin-bottom: 56px
}

.section-label {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(75, 126, 200, .12);
  border: 1px solid rgba(75, 126, 200, .25);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px
}

.section-label--gold {
  background: rgba(212, 168, 67, .12);
  border-color: rgba(212, 168, 67, .3);
  color: var(--gold)
}

.section-light .section-label {
  background: rgba(75, 126, 200, .08);
  color: var(--accent)
}

.section-light .section-label--gold {
  background: rgba(212, 168, 67, .08);
  color: var(--gold-dark)
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px
}

.section-light .section-header h2 {
  color: var(--light-text)
}

.section-header p {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7
}

.section-light .section-header p {
  color: var(--light-text-secondary)
}

.accent {
  color: var(--accent-light)
}

.section-light .accent {
  color: var(--accent)
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: all .2s ease;
  cursor: pointer;
  white-space: nowrap;
  border: none
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow)
}

.btn-primary:hover {
  background: #5B8FD9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow)
}

.btn-outline {
  background: transparent;
  color: var(--accent-light);
  border: 1.5px solid rgba(75, 126, 200, .5)
}

.btn-outline:hover {
  background: rgba(75, 126, 200, .1);
  transform: translateY(-2px)
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: 0 4px 24px var(--gold-glow)
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--gold-glow)
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-lg)
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px
}

.btn-block {
  width: 100%
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(21, 37, 67, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition)
}

.navbar.scrolled {
  background: rgba(15, 30, 56, .96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain
}

.logo span {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition)
}

.nav-links a:hover {
  color: #fff
}

.nav-cta {
  display: none
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
  z-index: 1001
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 56, .98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition)
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible
}

.mobile-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 24px
}

.mobile-link:hover {
  color: #fff
}

@media(min-width:768px) {
  .nav-links {
    display: flex
  }

  .nav-cta {
    display: inline-flex
  }

  .hamburger {
    display: none
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-h);
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%)
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 48, 87, .3) 0%, rgba(21, 37, 67, .7) 50%, rgba(21, 37, 67, 1) 100%)
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: float 8s ease-in-out infinite
}

.hero-orb--1 {
  width: 420px;
  height: 420px;
  background: var(--accent);
  top: 5%;
  right: -12%
}

.hero-orb--2 {
  width: 300px;
  height: 300px;
  background: var(--accent-light);
  bottom: 15%;
  left: -8%;
  animation-delay: -4s
}

.hero-orb--3 {
  width: 180px;
  height: 180px;
  background: var(--gold);
  top: 55%;
  left: 35%;
  opacity: .2;
  animation-delay: -2s
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(20px, -20px)
  }

  66% {
    transform: translate(-15px, 15px)
  }
}

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

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(75, 126, 200, .1);
  border: 1px solid rgba(75, 126, 200, .3);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: pulse 2s ease-in-out infinite
}

.launch-badge svg {
  width: 18px;
  height: 18px
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(75, 126, 200, 0.3)
  }

  50% {
    box-shadow: 0 0 0 12px rgba(75, 126, 200, 0)
  }
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.03em
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px
}

.hero-limited {
  text-align: center;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .02em
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(30, 54, 101, .6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  min-width: 72px;
  backdrop-filter: blur(10px)
}

.countdown-value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1
}

.countdown-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px
}

.countdown-sep {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  opacity: .5;
  padding-bottom: 16px
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted)
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  opacity: .7
}

/* ── Pain Points Split ── */
.section-pains {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 100px 0
}

.pains-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start
}

.pains-left {
  position: sticky;
  top: 120px
}

.pains-left h2 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  position: relative;
  z-index: 1
}

.pains-left p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px
}

.pains-deco {
  position: absolute;
  font-size: clamp(10rem, 20vw, 16rem);
  font-weight: 900;
  color: rgba(75, 126, 200, .06);
  line-height: 1;
  top: -40px;
  left: -20px;
  z-index: 0;
  user-select: none;
  pointer-events: none
}

.pains-right {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  border-left: 3px solid;
  backdrop-filter: blur(8px);
  transition: all .3s ease
}

.pain-item:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2)
}

.pain-item--1 {
  border-left-color: #f87171
}

.pain-item--2 {
  border-left-color: #fb923c
}

.pain-item--3 {
  border-left-color: #fbbf24
}

.pain-item--4 {
  border-left-color: #f87171
}

.pain-item--5 {
  border-left-color: #fb923c
}

.pain-item__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 0 20px rgba(248, 113, 113, .1)
}

.pain-item--1 .pain-item__icon {
  background: rgba(248, 113, 113, .1);
  box-shadow: 0 0 20px rgba(248, 113, 113, .1)
}

.pain-item--2 .pain-item__icon {
  background: rgba(251, 146, 60, .1);
  box-shadow: 0 0 20px rgba(251, 146, 60, .1)
}

.pain-item--3 .pain-item__icon {
  background: rgba(251, 191, 36, .1);
  box-shadow: 0 0 20px rgba(251, 191, 36, .1)
}

.pain-item--4 .pain-item__icon {
  background: rgba(248, 113, 113, .1);
  box-shadow: 0 0 20px rgba(248, 113, 113, .1)
}

.pain-item--5 .pain-item__icon {
  background: rgba(251, 146, 60, .1);
  box-shadow: 0 0 20px rgba(251, 146, 60, .1)
}

.pain-item__icon svg {
  width: 20px;
  height: 20px
}

.pain-item--1 .pain-item__icon svg {
  color: #f87171
}

.pain-item--2 .pain-item__icon svg {
  color: #fb923c
}

.pain-item--3 .pain-item__icon svg {
  color: #fbbf24
}

.pain-item--4 .pain-item__icon svg {
  color: #f87171
}

.pain-item--5 .pain-item__icon svg {
  color: #fb923c
}

.pain-item p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
  font-style: italic
}

.pain-item p strong {
  color: #fff;
  font-weight: 700;
  font-style: normal
}

/* ── Features Grid ── */

/* Basic Highlight Stats */
.plan-detail__visual {
  display: flex;
  align-items: center;
  justify-content: center
}

.basic-highlight {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%
}

.basic-highlight__item {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: all var(--transition)
}

.basic-highlight__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(75, 126, 200, .08)
}

.basic-highlight__number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px
}

.basic-highlight__label {
  font-size: .9rem;
  color: var(--light-text-secondary);
  font-weight: 500
}

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

.feature-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: all var(--transition)
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(75, 126, 200, .1);
  border-color: var(--accent)
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(75, 126, 200, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent)
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--light-text)
}

.feature-card p {
  font-size: .95rem;
  color: var(--light-text-secondary);
  line-height: 1.6
}

/* ── Plan Detail Sections ── */
.plan-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.plan-detail--reverse .plan-detail__content {
  order: 1
}

.plan-detail--reverse .plan-detail__image {
  order: 0
}

.plan-detail__content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px
}

.section-light .plan-detail__content h2 {
  color: var(--light-text)
}

.plan-detail__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 16px
}

.plan-detail__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted)
}

.plan-detail__price--gold {
  color: var(--gold)
}

.section-light .plan-detail__price--gold {
  color: var(--gold-dark)
}

.section-light .plan-detail__price span {
  color: var(--light-text-secondary)
}

.plan-detail__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px
}

.section-light .plan-detail__desc {
  color: var(--light-text-secondary)
}

.plan-detail__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px
}

.plan-detail__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.plan-detail__list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent-light);
  margin-top: 2px
}

.section-light .plan-detail__list li svg {
  color: var(--gold-dark)
}

.plan-detail__list li div {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.plan-detail__list li strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-white)
}

.section-light .plan-detail__list li strong {
  color: var(--light-text)
}

.plan-detail__list li span {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5
}

.section-light .plan-detail__list li span {
  color: var(--light-text-secondary)
}

.plan-detail__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, .3)
}

.plan-detail__image img {
  width: 100%;
  display: block
}

.section-light .plan-detail__image {
  box-shadow: 0 16px 60px rgba(0, 0, 0, .08)
}

.img-caption {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 10px;
  opacity: .6
}

.section-light .img-caption {
  color: var(--light-text-secondary)
}

.plan-spots {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent-light)
}

.plan-spots svg {
  width: 16px;
  height: 16px
}

.plan-spots--gold {
  color: var(--gold-dark)
}

/* ── Compare Table ── */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  font-size: .9rem
}

.compare-table th {
  font-weight: 700;
  color: var(--text-muted);
  font-size: .85rem;
  letter-spacing: .03em;
  background: rgba(0, 0, 0, .15)
}

.compare-table th small {
  font-weight: 500;
  opacity: .7
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 500
}

.compare-table td {
  color: var(--text-muted)
}

.col-highlight {
  background: rgba(75, 126, 200, .06)
}

.col-gold {
  background: rgba(212, 168, 67, .06)
}

.compare-table th.col-highlight {
  color: var(--accent-light)
}

.compare-table th.col-gold {
  color: var(--gold-light)
}

.plans-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px
}

.step-card {
  text-align: center;
  padding: 24px
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(75, 126, 200, .08);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px
}

.step-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--light-text)
}

.step-card p {
  font-size: .9rem;
  color: var(--light-text-secondary);
  line-height: 1.6
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq-item {
  background: var(--navy-600);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition)
}

.faq-item[open] {
  border-color: var(--accent)
}

.faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-light);
  transition: transform var(--transition)
}

.faq-item[open] summary::after {
  content: '−'
}

.faq-item p {
  padding: 0 24px 18px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7
}

/* ── CTA Final ── */
.cta-content {
  padding: 40px 0
}

.cta-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 14px
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center
}

/* ── Footer ── */
.footer {
  background: var(--navy-900);
  padding: 48px 0 24px;
  border-top: 1px solid var(--border-subtle)
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle)
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.footer-brand img {
  width: 32px;
  height: 32px
}

.footer-brand p {
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 280px
}

.footer-links {
  display: flex;
  gap: 20px
}

.footer-links a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color var(--transition)
}

.footer-links a:hover {
  color: var(--accent-light)
}

.footer-bottom {
  padding-top: 20px;
  text-align: center
}

.footer-disclaimer {
  font-size: .75rem;
  color: rgba(184, 205, 232, .5);
  max-width: 700px;
  margin: 0 auto 10px;
  line-height: 1.5
}

.footer-copy {
  font-size: .8rem;
  color: var(--text-muted);
  opacity: .5
}

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: all .2s ease
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5)
}

.wa-float svg {
  width: 28px;
  height: 28px;
  color: #fff
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

/* ── Responsive ── */
@media(max-width:768px) {
  .section {
    padding: 60px 0
  }

  .hero-content {
    padding: 40px 16px 60px
  }

  .countdown-item {
    padding: 12px 14px;
    min-width: 58px
  }

  .countdown-value {
    font-size: 1.5rem
  }

  .pains-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center
  }

  .pains-left {
    position: relative;
    top: auto
  }

  .pains-left p {
    margin: 0 auto 28px
  }

  .pains-deco {
    display: none
  }

  .plan-detail {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .plan-detail--reverse .plan-detail__content {
    order: 0
  }

  .plan-detail--reverse .plan-detail__image {
    order: 1
  }

  .compare-table {
    min-width: 580px
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 360px
  }

  .footer-top {
    flex-direction: column;
    text-align: center
  }

  .footer-links {
    justify-content: center
  }
}

@media(max-width:480px) {
  .pains-right {
    gap: 10px
  }

  .pain-item {
    padding: 16px 18px
  }
}