/* ═══════════════════════════════════════════
   KF Infinity Protection — style.css
   Paleta: #0E261A · #1F6E3A · #5DBA6A
           #F5F5F2 · #1C1C1C
═══════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --green:      #0E261A;
  --green-mid:  #1F6E3A;
  --green-light:#5DBA6A;
  --gold:       #5DBA6A;
  --gold-light: #7DCB86;
  --gold-dark:  #4A9A56;
  --cream:      #F5F5F2;
  --cream-dark: #E8E8E4;
  --white:      #ffffff;
  --text:       #1C1C1C;
  --text-mid:   #3a3a3a;
  --text-muted: #6b6b6b;
  --border:     #d8d8d4;

  --font-title: 'Cinzel', serif;
  --font: 'Montserrat', sans-serif;

  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 8px rgba(14,38,26,.06);
  --shadow:     0 4px 20px rgba(14,38,26,.10);
  --shadow-lg:  0 12px 40px rgba(14,38,26,.14);

  --nav-h:      72px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-title); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ─── Utility ─── */
.text-white  { color: var(--white) !important; }
.text-cream  { color: #b8d0d0; }
.highlight   { color: var(--gold); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.65);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-white-solid {
  background: var(--white);
  color: var(--green);
}
.btn-white-solid:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-outline-dark {
  border: 2px solid var(--border);
  color: var(--text);
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-outline-dark:hover {
  border-color: var(--green);
  color: var(--green);
}
.btn-gold-solid {
  background: var(--gold);
  color: var(--green);
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-gold-solid:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,169,110,.35);
}
.btn-dark-solid {
  background: var(--green);
  color: var(--white);
}
.btn-dark-solid:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-full   { width: 100%; justify-content: center; }
.btn-lg     { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ═══════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════ */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-inline: auto;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header-light .section-title { color: var(--white); }
.section-header-light .section-subtitle { color: #9ab5b5; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green);
  height: var(--nav-h);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo-img {
  height: 52px;
  width: auto;
}
.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.3;
}
.logo-text small {
  font-weight: 400;
  opacity: .75;
  font-size: .78rem;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 2vw, 2rem);
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--green);
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-weight: 700;
}
.nav-links a.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.nav-links a.active { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 40%, rgba(93,186,106,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(31,110,58,.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-block: 5rem 6rem;
  max-width: 1180px;
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-photo {
  flex: 0 0 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: flex-end;
}
.hero-photo img {
  width: 100%;
  max-width: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  padding: .45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--gold); font-size: 1rem; }
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-subtext {
  color: rgba(255,255,255,.7);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-tagline {
  font-family: var(--font-title);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  transition: background var(--transition);
}
.scroll-down:hover { background: rgba(255,255,255,.2); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-item.gold .stat-number { color: var(--gold); }
.stat-symbol { font-size: 2.5rem; }
.stat-label {
  font-size: .85rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-us {
  background: var(--cream);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}
.card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   INSURERS
═══════════════════════════════════════════ */
.insurers {
  background: var(--white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.insurers-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.insurers-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.insurer-badge {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .65rem 1.8rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.insurer-badge:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ═══════════════════════════════════════════
   PLANS
═══════════════════════════════════════════ */
.plans {
  background: var(--cream);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan-card.plan-featured {
  background: var(--green);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(26,58,58,.3);
  position: relative;
  padding-top: 2.5rem;
  transform: translateY(-8px);
}
.plan-card.plan-featured:hover { transform: translateY(-14px); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  padding: .3rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-category {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.plan-featured .plan-category { color: rgba(255,255,255,.55); }

.plan-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
}
.plan-name-gold { color: var(--gold); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-mid);
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; padding-bottom: 0; }
.plan-features li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.plan-featured .plan-features li { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.12); }

/* ═══════════════════════════════════════════
   DREAMS
═══════════════════════════════════════════ */
.dreams {
  background: var(--white);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.dreams-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.dreams-photo {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 16px 32px rgba(38,64,76,.15));
}
.dreams-text {
  color: var(--text-mid);
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.dreams-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.dreams-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.dreams-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.dreams-list li div strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem;
}
.dreams-list li div p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   WORK WITH US
═══════════════════════════════════════════ */
.work {
  background: var(--green);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.step-number {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.step-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}
.step-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}
.work-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.perk {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(200,169,110,.12);
  border: 1px solid rgba(200,169,110,.25);
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 500;
  padding: .4rem 1rem;
  border-radius: 100px;
}
.perk i { color: var(--gold); font-size: .9rem; }
.work-cta { text-align: center; }
.work-cta .btn-gold-solid {
  width: auto;
  display: inline-flex;
}
.work-cta .btn-gold-solid:hover {
  background: var(--gold-dark);
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  background: var(--cream);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-text {
  color: var(--text-mid);
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail i {
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .15rem;
}
.contact-detail p {
  font-size: .85rem;
  color: var(--text-mid);
}
.contact-detail-link {
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: .5rem;
  margin: -.5rem;
  transition: background var(--transition);
}
.contact-detail-link:hover { background: rgba(93,186,106,.08); }
.contact-detail-link:hover i { color: var(--green-mid); }

/* Floating WhatsApp */
.float-wsp {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-wsp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,58,58,.08);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5f5f' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--green);
  margin-top: 2px;
}
.form-check label {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.5;
  font-weight: 400;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #f0faf5;
  border: 1px solid #b6e8cc;
  border-radius: var(--radius);
  color: #1a6b3c;
}
.form-success.show { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.form-success i { font-size: 2.5rem; color: #2ca05e; }
.form-success strong { font-size: 1rem; }
.form-success p { font-size: .88rem; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--green);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { margin-bottom: 1rem; }
.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-top: .75rem;
}
.footer-links h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links ul li a,
.footer-links ul li span {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--white); }

.footer-bottom {
  padding-block: 1.5rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-license strong { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  z-index: 900;
  border: 2px solid rgba(255,255,255,.15);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--green-mid); }

/* ═══════════════════════════════════════════
   FADE-IN ANIMATION
═══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .plans-grid   { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .plan-card.plan-featured { transform: none; }
  .plan-card.plan-featured:hover { transform: translateY(-4px); }
  .dreams-inner  { grid-template-columns: 1fr; }
  .dreams-image  { max-width: 480px; margin-inline: auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--green);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem clamp(1.25rem, 5vw, 2.5rem);
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding-block: .85rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.8);
  }
  .nav-links a.nav-cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none;
  }

  /* Hero */
  .hero-content { flex-direction: column; padding-block: 4rem 3rem; gap: 2rem; }
  .hero-photo { flex: none; width: 100%; max-width: 300px; align-self: center; }
  .hero-photo img { max-width: 300px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3) { border-right: none; border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }

  /* Back to top */
  .back-to-top { bottom: 1.5rem; right: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .plans-grid { max-width: 100%; }
}
