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

:root {
  --green-dark:   #0b2e22;
  --green-mid:    #145a3c;
  --green-accent: #1db86a;
  --green-light:  #e6f7ef;
  --white:        #ffffff;
  --gray-100:     #f5f9f7;
  --gray-400:     #9eb3aa;
  --gray-700:     #3d4f47;
  --text:         #111c17;
  --radius:       14px;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --transition:   .22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(29,184,106,.35); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green-accent);
  color: var(--white);
}
.btn-primary:hover { background: #17a35d; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); box-shadow: none; }

/* ── Header ───────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 24px;
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
  white-space: nowrap;
}
.logo span { color: var(--green-accent); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav a:hover { color: var(--white); }

.header-cta { white-space: nowrap; }
.header-cta .btn { padding: 10px 22px; font-size: .9rem; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger span + span { margin-top: 5px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, var(--green-dark) 0%, #0f4a31 55%, #1a6644 100%);
  color: var(--white);
  padding: 96px 24px 104px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(29,184,106,.18), transparent);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(29,184,106,.2);
  border: 1px solid rgba(29,184,106,.4);
  color: #6ee7b7;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.5px;
  max-width: 780px;
  margin: 0 auto 20px;
}
.hero h1 em { font-style: normal; color: var(--green-accent); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stat span:first-child {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-accent);
  line-height: 1;
}
.hero-stat span:last-child {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* ── Section shared ───────────────────────────────────────── */
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-mid);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 540px;
}
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── Destinations ─────────────────────────────────────────── */
.destinations { background: var(--gray-100); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 16px;
}
.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
.dest-flag { font-size: 2.8rem; line-height: 1; margin-bottom: 12px; }
.dest-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.dest-hint { font-size: .8rem; color: var(--gray-400); }
.dest-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-mid);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 8px;
}

/* ── How it works ─────────────────────────────────────────── */
.how { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.33% - 16px);
  right: calc(33.33% - 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-accent), var(--green-mid));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--green-accent);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--green-accent);
}
.step-icon { font-size: 1.7rem; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .93rem; color: var(--gray-700); }

/* ── Benefits ─────────────────────────────────────────────── */
.benefits { background: var(--gray-100); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.benefit-card:hover { transform: translateY(-3px); }
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: .92rem; color: var(--gray-700); line-height: 1.55; }

/* ── Freedom Connect ──────────────────────────────────────── */
.freedom {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f4a31 100%);
  color: var(--white);
  padding: 80px 0;
}
.freedom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.freedom-content .section-label {
  background: rgba(29,184,106,.2);
  color: #6ee7b7;
}
.freedom-content .section-title { color: var(--white); }
.freedom-content .section-sub { color: rgba(255,255,255,.7); max-width: 100%; }
.freedom-features { list-style: none; margin: 32px 0; display: flex; flex-direction: column; gap: 14px; }
.freedom-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  color: rgba(255,255,255,.85);
}
.freedom-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(29,184,106,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green-accent);
  margin-top: 1px;
}
.freedom-visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 40px 36px;
}
.freedom-visual-title {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.freedom-plans { display: flex; flex-direction: column; gap: 12px; }
.freedom-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 14px 18px;
  transition: background var(--transition);
}
.freedom-plan:hover { background: rgba(255,255,255,.12); }
.freedom-plan-name { font-weight: 600; font-size: .95rem; }
.freedom-plan-info { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.freedom-plan-price { font-size: 1.1rem; font-weight: 800; color: var(--green-accent); white-space: nowrap; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid #e0ede7;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--gray-100); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-chevron svg { width: 12px; height: 12px; stroke: var(--green-mid); stroke-width: 2.5; fill: none; transition: transform var(--transition); }
.faq-item.open .faq-chevron { background: var(--green-accent); }
.faq-item.open .faq-chevron svg { stroke: var(--white); transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .97rem;
  color: var(--gray-700);
  line-height: 1.65;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.55);
  padding: 40px 24px;
  text-align: center;
  font-size: .9rem;
}
.footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--green-accent); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin: 14px 0; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-copy { margin-top: 8px; font-size: .82rem; }

/* ── Mobile nav overlay ───────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .freedom-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
}

@media (max-width: 680px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; flex-direction: column; }
  .hero { padding: 72px 24px 80px; }
  section { padding: 60px 0; }
  .hero-stats { gap: 28px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
