@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900;1000&family=Nunito+Sans:wght@300;400;500;600&display=swap');

:root {
  --teal:        #0B6670;
  --teal-dark:   #073D45;
  --teal-deep:   #042830;
  --teal-mid:    #0F8090;
  --teal-light:  #1AA8BE;
  --teal-pale:   #E8F6F9;
  --teal-glow:   rgba(11,102,112,0.15);
  --green:       #3EC97A;
  --green-dark:  #2BA35F;
  --green-glow:  rgba(62,201,122,0.35);
  --orange:      #FF6330;
  --orange-dark: #D94E20;
  --orange-glow: rgba(255,99,48,0.35);
  --gold:        #F5C842;
  --white:       #FFFFFF;
  --off-white:   #F4FAFB;
  --surface:     #FAFEFE;
  --charcoal:    #0F2328;
  --gray:        #4D7078;
  --gray-light:  #BAD4D9;
  --border:      #D0E8EC;
  --border-soft: #E8F4F6;
  --shadow-sm:   0 2px 8px rgba(7,61,69,0.08);
  --shadow-md:   0 8px 32px rgba(7,61,69,0.14);
  --shadow-lg:   0 20px 64px rgba(7,61,69,0.18);
  --shadow-xl:   0 32px 96px rgba(7,61,69,0.22);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ════ NAV ════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 72px;
  background: var(--teal-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Nunito', sans-serif; font-size: 1.45rem; font-weight: 900;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 8px; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.6);
  font-size: 0.875rem; font-weight: 600; font-family: 'Nunito', sans-serif;
  padding: 7px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--green) !important; color: var(--teal-deep) !important;
  padding: 10px 22px !important; border-radius: 100px !important;
  font-weight: 900 !important; font-size: 0.875rem !important;
  box-shadow: 0 4px 20px var(--green-glow);
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 28px var(--green-glow) !important; }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; }

/* ════ BUTTONS ════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-size: 0.925rem; font-weight: 800;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s;
  letter-spacing: -0.1px;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green); color: var(--teal-deep);
  box-shadow: 0 4px 20px var(--green-glow);
}
.btn-primary:hover { background: #46d985; box-shadow: 0 8px 32px var(--green-glow); }

.btn-orange {
  background: var(--orange); color: white;
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-orange:hover { background: #ff7a4d; box-shadow: 0 8px 32px var(--orange-glow); }

.btn-outline {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--teal); background: rgba(11,102,112,0.05); }

.btn-outline-white {
  background: rgba(255,255,255,0.08); color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); }

.btn-lg  { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm  { padding: 9px 20px; font-size: 0.825rem; }

/* ════ LAYOUT ════ */
.section    { padding: 100px 56px; }
.section-sm { padding: 68px 56px; }
.container  { max-width: 1180px; margin: 0 auto; }

/* ════ TYPOGRAPHY ════ */
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 14px;
  font-family: 'Nunito', sans-serif;
}
.section-label.green  { color: var(--green); }
.section-label.orange { color: var(--orange); }

h1,h2,h3,h4 { font-family: 'Nunito', sans-serif; line-height: 1.1; font-weight: 900; }
h1  { font-size: clamp(2.6rem, 5.5vw, 4rem); letter-spacing: -1.5px; }
h2  { font-size: clamp(1.9rem, 3.2vw, 2.6rem); letter-spacing: -0.8px; }
h3  { font-size: 1.2rem; letter-spacing: -0.3px; }
p   { color: var(--gray); }
p.lead { font-size: 1.08rem; line-height: 1.78; max-width: 560px; color: var(--gray); }

/* ════ HERO ════ */
.hero-section {
  background: var(--teal-deep);
  padding-top: 72px; overflow: hidden; position: relative;
  /* Subtle noise texture for luxury feel */
  background-image:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(11,102,112,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(62,201,122,0.06) 0%, transparent 60%);
}

/* Animated grid lines */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1180px; margin: 0 auto;
  padding: 88px 56px 200px;
}

.hero-text h1 { color: white; margin-bottom: 22px; }
.hero-text h1 em { font-style: normal; color: var(--green); }
.hero-sub { color: rgba(255,255,255,0.65); font-size: 1.1rem; line-height: 1.72; max-width: 460px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 22px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 700;
  font-family: 'Nunito', sans-serif;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.free-hint { font-size: 0.76rem; color: rgba(255,255,255,0.3); margin-top: 10px; font-style: italic; }

/* Card preview */
.card-float {
  background: white; border-radius: 26px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden; width: 320px;
  animation: heroFloat 6s ease-in-out infinite;
  position: relative;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(0.3deg); }
  50%      { transform: translateY(-14px) rotate(-0.3deg); }
}
.card-float-top {
  background: linear-gradient(145deg, #0B6670 0%, #0F8090 50%, #3EC97A 100%);
  padding: 40px 28px 32px; color: white; text-align: center;
  position: relative; overflow: hidden;
}
.card-float-top::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='20'/%3E%3C/svg%3E") repeat;
}
.card-float-top h3 { font-size: 1.3rem; color: white; position: relative; }
.card-float-top p  { color: rgba(255,255,255,0.72); font-size: 0.82rem; position: relative; margin-top: 6px; }
.card-float-body { padding: 18px 20px; max-height: 220px; overflow: hidden; }
.msg {
  background: var(--off-white); border-radius: 10px; padding: 10px 14px;
  margin-bottom: 8px; font-size: 0.8rem; border: 1px solid var(--border-soft);
}
.msg strong { display: block; font-size: 0.68rem; margin-bottom: 2px; font-family: 'Nunito', sans-serif; font-weight: 800; }
.avatars { display: flex; margin-top: 14px; align-items: center; }
.av {
  width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900; color: white; margin-left: -8px;
  font-family: 'Nunito', sans-serif;
}
.av:first-child { margin-left: 0; }

.float-pill {
  position: absolute; background: white; border-radius: 100px;
  padding: 9px 16px; font-size: 0.76rem; font-weight: 800;
  font-family: 'Nunito', sans-serif; display: flex; align-items: center; gap: 6px;
  white-space: nowrap; border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}
.pill-signed { bottom: -20px; right: -22px; color: var(--green-dark); }
.pill-money  { top: 22px; left: -28px; color: var(--orange-dark); }

/* Hero forest */
.hero-forest {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%23052C34' d='M0,100 L50,60 L100,100 L150,45 L200,90 L260,55 L320,100 L380,40 L440,90 L500,60 L560,100 L620,42 L680,85 L740,55 L800,100 L860,44 L920,88 L980,58 L1040,100 L1100,46 L1160,85 L1220,55 L1280,100 L1340,60 L1380,90 L1440,65 L1440,180 L0,180Z'/%3E%3Cpath fill='%23073D45' d='M0,120 L70,80 L140,120 L210,70 L280,110 L350,78 L420,120 L490,72 L560,108 L630,80 L700,120 L770,74 L840,112 L910,82 L980,120 L1050,76 L1120,114 L1190,84 L1260,120 L1330,82 L1440,115 L1440,180 L0,180Z'/%3E%3Cpath fill='%23F4FAFB' d='M0,160 Q180,140 360,158 Q540,176 720,158 Q900,140 1080,160 Q1260,180 1440,160 L1440,180 L0,180Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

/* ════ STATS STRIP ════ */
.stat-strip {
  background: var(--teal-dark);
  padding: 52px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; max-width: 1180px; margin: 0 auto; }
.stat-item { text-align: center; padding: 8px 20px; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Nunito', sans-serif; font-size: 2.4rem; font-weight: 900; color: var(--green); letter-spacing: -1px; }
.stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 4px; font-weight: 600; letter-spacing: 0.05em; }

/* ════ HOW-IT-WORKS ════ */
.how-strip { background: white; border-bottom: 1px solid var(--border-soft); }
.steps { display: flex; max-width: 1180px; margin: 0 auto; }
.step { flex: 1; text-align: center; padding: 48px 28px; position: relative; }
.step-num {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: white; font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(11,102,112,0.3);
}
.step h3 { font-size: 0.95rem; margin-bottom: 8px; }
.step p   { font-size: 0.82rem; }
.step-arrow { position: absolute; top: 76px; right: -8px; font-size: 1.1rem; color: var(--border); }

/* ════ CATEGORY CARDS ════ */
.cat-card {
  border-radius: 22px; padding: 32px 26px;
  text-decoration: none; display: block;
  background: white;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative; overflow: hidden;
}
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.22s;
  border-radius: 22px;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.cat-card:hover::after { opacity: 1; }
.cat-birthday::after  { background: linear-gradient(135deg, rgba(255,99,48,0.04), transparent 60%); }
.cat-leaving::after   { background: linear-gradient(135deg, rgba(62,201,122,0.06), transparent 60%); }
.cat-sympathy::after  { background: linear-gradient(135deg, rgba(11,102,112,0.05), transparent 60%); }
.cat-thanks::after    { background: linear-gradient(135deg, rgba(245,200,66,0.07), transparent 60%); }
.cat-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.cat-card h3 { color: var(--charcoal); margin-bottom: 8px; font-size: 1.05rem; }
.cat-card p  { font-size: 0.84rem; line-height: 1.55; }
.cat-card .arrow { margin-top: 20px; color: var(--teal); font-weight: 800; font-size: 0.82rem; font-family: 'Nunito', sans-serif; display: flex; align-items: center; gap: 4px; }

/* ════ FEATURE SPLIT ════ */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feat-list { display: flex; flex-direction: column; gap: 28px; }
.feat-item { display: flex; gap: 18px; }
.feat-ico {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--teal-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.feat-item h4 { font-family: 'Nunito', sans-serif; font-weight: 800; margin-bottom: 4px; font-size: 0.95rem; color: var(--charcoal); }
.feat-item p  { font-size: 0.85rem; line-height: 1.6; }
.feat-visual {
  background: white; border-radius: 24px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md); padding: 28px;
  position: relative; overflow: hidden;
}
.feat-visual::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,102,112,0.06) 0%, transparent 70%);
}

/* ════ MONEY STRIP ════ */
.money-strip {
  background: linear-gradient(135deg, #FFF9F5 0%, #FFF4EE 100%);
  border: 1px solid #FFE2D4;
  border-radius: 28px; padding: 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
.pot-widget {
  background: white; border-radius: 22px;
  border: 1px solid #FFE2D4; padding: 28px;
  box-shadow: 0 12px 40px rgba(255,99,48,0.1);
}

/* ════ TESTIMONIALS ════ */
.testi {
  background: white; border-radius: 20px; padding: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testi:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { color: var(--gold); letter-spacing: -1px; }
.testi .stars { font-size: 0.88rem; margin-bottom: 12px; display: block; }
.testi p { font-size: 0.875rem; line-height: 1.7; color: var(--charcoal); }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-av { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 900; color: white; font-family: 'Nunito', sans-serif; flex-shrink: 0; }
.testi-author strong { font-size: 0.84rem; display: block; color: var(--charcoal); font-family: 'Nunito', sans-serif; font-weight: 800; }
.testi-author span   { font-size: 0.73rem; color: var(--gray); }

/* ════ PAGE HERO ════ */
.page-hero {
  padding: 140px 56px 80px; text-align: center;
  background: linear-gradient(160deg, var(--teal-deep) 0%, var(--teal-dark) 60%, var(--teal) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero h1   { color: white; margin-bottom: 18px; position: relative; }
.page-hero p.lead { color: rgba(255,255,255,0.7); margin: 0 auto 36px; text-align: center; position: relative; }
.page-hero .section-label { color: var(--green); position: relative; }
.page-hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }

/* ════ CTA SECTION ════ */
.cta-section {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  text-align: center; padding: 100px 56px; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.cta-section h2 { color: white; margin-bottom: 16px; position: relative; }
.cta-section p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; position: relative; }

/* ════ MISC COMPONENTS ════ */
.badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 800; font-family: 'Nunito', sans-serif; }
.badge-teal   { background: rgba(11,102,112,0.1); color: var(--teal); }
.badge-green  { background: rgba(62,201,122,0.12); color: var(--green-dark); }
.badge-orange { background: rgba(255,99,48,0.1); color: var(--orange-dark); }

/* ════ GRID ════ */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ════ FOOTER ════ */
footer { background: var(--teal-deep); color: rgba(255,255,255,0.45); padding: 72px 56px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; max-width: 1180px; margin: 0 auto 56px; }
.footer-logo { font-family: 'Nunito', sans-serif; font-size: 1.45rem; font-weight: 900; color: white; text-decoration: none; display: block; margin-bottom: 16px; }
.footer-logo span { color: var(--green); }
.footer-tagline { font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.8rem; font-family: 'Nunito', sans-serif; transition: 0.2s; }
.footer-social a:hover { border-color: var(--green); color: var(--green); }
.footer-col h4 { font-family: 'Nunito', sans-serif; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ════ PRICING CARDS ════ */
.plan {
  background: white; border-radius: 24px;
  border: 1px solid var(--border-soft);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.featured {
  border-color: var(--teal-light);
  background: linear-gradient(180deg, rgba(11,102,112,0.03) 0%, white 40%);
  box-shadow: 0 0 0 2px var(--teal), var(--shadow-md);
  transform: scale(1.03);
}
.plan.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--teal); color: white; padding: 4px 18px; border-radius: 100px; font-size: 0.72rem; font-weight: 800; font-family: 'Nunito', sans-serif; white-space: nowrap; }

/* ════ FAQ ════ */
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-weight: 700; font-family: 'Nunito', sans-serif; color: var(--charcoal); font-size: 0.95rem; }
.faq-q:hover { color: var(--teal); }
.faq-a { padding: 0 0 20px; color: var(--gray); font-size: 0.9rem; line-height: 1.75; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--teal); }
.faq-arrow { transition: transform 0.3s; font-size: 0.75rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ════ UTILS ════ */
.text-center { text-align: center; }
.mt-8{margin-top:8px;}.mt-16{margin-top:16px;}.mt-24{margin-top:24px;}.mt-48{margin-top:48px;}
.mb-8{margin-bottom:8px;}.mb-16{margin-bottom:16px;}.mb-24{margin-bottom:24px;}.mb-48{margin-bottom:48px;}
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ════ ANIMATIONS ════ */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.fade-up   { animation: fadeUp 0.7s cubic-bezier(.34,1.2,.64,1) both; }
.fade-up-1 { animation-delay: 0.12s; }
.fade-up-2 { animation-delay: 0.24s; }
.fade-up-3 { animation-delay: 0.36s; }
@keyframes floatSlow { 0%,100%{transform:translateY(0) rotate(-0.5deg)} 50%{transform:translateY(-7px) rotate(0.5deg)} }

/* Scroll-triggered reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ════ RESPONSIVE ════ */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section,.section-sm { padding: 68px 28px; }
  .page-hero { padding: 120px 28px 64px; }
  .hero-inner { grid-template-columns: 1fr; padding: 64px 28px 180px; gap: 48px; }
  .hero-sub,.free-hint { display: none; }
  .feature-split { grid-template-columns: 1fr; }
  .money-strip { grid-template-columns: 1fr; padding: 36px 28px; }
  .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr); }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-section { padding: 72px 28px; }
  .plan.featured { transform: scale(1); }
}
@media (max-width: 600px) {
  .grid-3,.grid-4 { grid-template-columns: 1fr; }
  footer { padding: 52px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
