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

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #152436;
  --navy-light: #1E3450;
  --navy-card:  #162030;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --gold-dim:   #8A6E2F;
  --white:      #F5F0E8;
  --white-dim:  #B8B0A0;
  --white-faint:#4A5568;
  --success:    #2D9E6B;
  --danger:     #C0392B;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 8px 40px rgba(0,0,0,0.4);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4 {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.2;
  color: var(--white);
}
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.text-gold  { color: var(--gold); }
.text-dim   { color: var(--white-dim); }
.text-center{ text-align: center; }
.gold-line  { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 16px 0; }
.gold-line.center { margin: 16px auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px;
  font-family: 'Open Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: var(--navy); }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 18px 44px; font-size: 16px; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; transition: var(--transition); }
.navbar.scrolled { background: rgba(13,27,42,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201,168,76,0.15); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.2; letter-spacing: 0.03em; }
.nav-logo-sub { font-size: 10px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--white-dim); font-size: 14px; font-weight: 400; letter-spacing: 0.02em; position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active { color: var(--white); }
.nav-links a.nav-active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: rgba(13,27,42,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 24px; z-index: 999; flex-direction: column; gap: 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white-dim); font-size: 16px; padding: 10px 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,52,80,0.5) 0%, transparent 60%),
              var(--navy);
}
.hero-grid { position: absolute; inset: 0; opacity: 0.04; background-image: linear-gradient(rgba(201,168,76,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.5) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 50px; padding: 8px 20px; font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 32px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.3);} }
.hero h1 { font-size: clamp(36px, 5.5vw, 68px); font-weight: 800; margin-bottom: 24px; line-height: 1.1; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 17px; color: var(--white-dim); max-width: 520px; margin-bottom: 48px; line-height: 1.8; }
.hero-slogan { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.hero-slogan::before, .hero-slogan::after { content: ''; flex: 0 0 30px; height: 1px; background: var(--gold-dim); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid rgba(201,168,76,0.15); }
.hero-stat-num { font-size: 34px; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--white-dim); margin-top: 4px; letter-spacing: 0.03em; }

/* ── HERO RIGHT ANIMATION ── */
.hero-anim-wrap { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 46%; height: 80vh; pointer-events: none; z-index: 1; }
.hero-anim-wrap svg { width: 100%; height: 100%; }
.chart-line { stroke-dasharray: 800; stroke-dashoffset: 800; animation: drawLine 3s ease forwards 0.5s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.chart-dot { opacity: 0; animation: popIn 0.4s ease forwards; }
.chart-dot:nth-child(1) { animation-delay: 1.2s; }
.chart-dot:nth-child(2) { animation-delay: 1.7s; }
.chart-dot:nth-child(3) { animation-delay: 2.2s; }
.chart-dot:nth-child(4) { animation-delay: 2.7s; }
.chart-dot:nth-child(5) { animation-delay: 3.0s; }
@keyframes popIn { 0%{opacity:0;transform:scale(0);} 60%{transform:scale(1.3);} 100%{opacity:1;transform:scale(1);} }
.float-card { position: absolute; background: rgba(22,32,48,0.92); border: 1px solid rgba(201,168,76,0.25); border-radius: 12px; padding: 14px 20px; backdrop-filter: blur(12px); animation: floatUp 4s ease-in-out infinite; }
.float-card:nth-child(2) { animation-delay: 1s; animation-duration: 5s; }
.float-card:nth-child(3) { animation-delay: 2s; animation-duration: 4.5s; }
@keyframes floatUp { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
.float-card-label { font-size: 10px; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.float-card-val { font-size: 20px; font-weight: 800; color: var(--white); }
.float-card-sub { font-size: 11px; color: var(--white-dim); margin-top: 2px; }
.ticker-row { display: flex; gap: 6px; margin-top: 6px; }
.ticker-up { font-size: 11px; color: #2D9E6B; font-weight: 600; }
.ticker-down { font-size: 11px; color: #e74c3c; font-weight: 600; }
.bar-anim { animation: growBar 1.5s ease forwards; transform-origin: bottom; }
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy-card); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); padding: 24px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--white-dim); letter-spacing: 0.02em; }
.trust-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.trust-sep { width: 1px; height: 24px; background: rgba(201,168,76,0.2); }

/* ── SECTION HEADERS ── */
.section-tag { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--white-dim); max-width: 560px; line-height: 1.8; }

/* ── CARDS ── */
.card { background: var(--navy-card); border: 1px solid rgba(201,168,76,0.1); border-radius: var(--radius-lg); padding: 36px; transition: var(--transition); position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: var(--transition); }
.card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }

/* ── PLANS ── */
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.plan-card { background: var(--navy-card); border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius-lg); padding: 40px; position: relative; overflow: hidden; transition: var(--transition); }
.plan-card.featured { border-color: var(--gold); background: linear-gradient(145deg, var(--navy-card), rgba(201,168,76,0.05)); }
.plan-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; }
.plan-range { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 8px; }
.plan-name { font-size: 24px; font-weight: 800; margin-bottom: 24px; }
.plan-rate { font-size: 54px; font-weight: 800; color: var(--gold); line-height: 1; }
.plan-rate span { font-size: 20px; color: var(--white-dim); font-weight: 400; }
.plan-divider { border: none; border-top: 1px solid rgba(201,168,76,0.15); margin: 28px 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--white-dim); }
.plan-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(201,168,76,0.15); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; }

/* ── HOW IT WORKS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 24px; align-items: flex-start; padding: 36px 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
.step:last-child { border-bottom: none; }
.step-num { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; flex-shrink: 0; width: 36px; padding-top: 18px; }
.step-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 26px; }
.step-body { flex: 1; }
.step-title { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--white-dim); line-height: 1.7; }

/* ── ROI CALCULATOR ── */
.calc-wrap { background: var(--navy-card); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-lg); padding: 48px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.calc-label { font-size: 12px; font-weight: 600; color: var(--white-dim); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.calc-value { font-size: 26px; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
input[type=range] { -webkit-appearance: none; width: 100%; height: 4px; background: rgba(201,168,76,0.2); border-radius: 2px; outline: none; cursor: pointer; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); border: 3px solid var(--navy); cursor: pointer; box-shadow: 0 0 0 4px rgba(201,168,76,0.2); }
.calc-results { display: flex; flex-direction: column; gap: 14px; }
.calc-result-item { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius); padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; }
.calc-result-label { font-size: 13px; color: var(--white-dim); }
.calc-result-val { font-size: 20px; font-weight: 800; color: var(--gold); }
.calc-result-val.big { font-size: 30px; }
.calc-disclaimer { font-size: 11px; color: var(--white-faint); margin-top: 14px; line-height: 1.6; padding-top: 14px; border-top: 1px solid rgba(201,168,76,0.1); }
/* Manual editable amount */
.calc-manual-input { background: rgba(201,168,76,0.06); border: 1.5px solid rgba(201,168,76,0.3); border-radius: var(--radius); padding: 10px 16px; color: var(--gold); font-family: 'Open Sans', sans-serif; font-size: 22px; font-weight: 800; width: 100%; outline: none; transition: var(--transition); }
.calc-manual-input:focus { border-color: var(--gold); background: rgba(201,168,76,0.1); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
/* Rate selector */
.rate-selector { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.rate-btn { padding: 8px 18px; border-radius: 20px; border: 1.5px solid rgba(201,168,76,0.3); background: transparent; color: var(--white-dim); font-family: 'Open Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.rate-btn:hover { border-color: var(--gold); color: var(--gold); }
.rate-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── ABOUT / OWNER ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-frame { width: 100%; aspect-ratio: 4/5; background: var(--navy-light); border-radius: var(--radius-lg); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-photo-placeholder { font-size: 80px; color: rgba(201,168,76,0.2); font-weight: 800; }
.about-corner { position: absolute; bottom: -12px; right: -12px; width: 80px; height: 80px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); border-radius: 0 0 var(--radius) 0; }
.about-corner-tl { position: absolute; top: -12px; left: -12px; width: 80px; height: 80px; border-left: 2px solid var(--gold-dim); border-top: 2px solid var(--gold-dim); border-radius: var(--radius) 0 0 0; }
.cred-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.cred-pill { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 50px; padding: 6px 16px; font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }
.promise-box { border-left: 3px solid var(--gold); padding: 20px 24px; background: rgba(201,168,76,0.05); border-radius: 0 var(--radius) var(--radius) 0; margin-top: 28px; }
.promise-box p { font-size: 14px; color: var(--white-dim); line-height: 1.8; font-style: italic; }
.promise-box cite { font-size: 12px; color: var(--gold); font-style: normal; display: block; margin-top: 8px; }

/* ── COMPARE ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.compare-card { border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.compare-card.us { background: rgba(201,168,76,0.08); border: 1px solid var(--gold); }
.compare-card.them { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); }
.compare-name { font-size: 13px; font-weight: 600; color: var(--white-dim); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.compare-rate { font-size: 48px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.compare-rate.low { color: var(--white-faint); font-size: 36px; }
.compare-pa { font-size: 13px; color: var(--white-dim); margin-bottom: 20px; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--navy-card); border: 1px solid rgba(201,168,76,0.1); border-radius: var(--radius-lg); padding: 32px; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { font-size: 14px; color: var(--white-dim); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--gold); font-size: 16px; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--white-dim); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.1); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--white); font-family: 'Open Sans', sans-serif; font-size: 15px; font-weight: 600; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 20px; }
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; flex-shrink: 0; transition: var(--transition); }
.faq-a { max-height: 0; overflow: hidden; font-size: 14px; color: var(--white-dim); line-height: 1.8; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(201,168,76,0.1); }

/* ── CTA SECTION ── */
.cta-section { background: linear-gradient(135deg, var(--navy-light), var(--navy)); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-lg); padding: 80px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse 40% 40% at 50% 50%, rgba(201,168,76,0.06), transparent); }
.cta-section h2 { font-size: clamp(26px,3.5vw,44px); margin-bottom: 16px; position: relative; }
.cta-section p { color: var(--white-dim); font-size: 16px; margin-bottom: 40px; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
footer { background: var(--navy-card); border-top: 1px solid rgba(201,168,76,0.12); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--white-dim); margin-top: 16px; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: 'Open Sans', sans-serif; font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--white-dim); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(201,168,76,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--white-faint); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--white-faint); }
.footer-legal a:hover { color: var(--gold); }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--white-dim); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; }
.form-control { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); color: var(--white); font-family: 'Open Sans', sans-serif; font-size: 15px; transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-control::placeholder { color: var(--white-faint); }
select.form-control option { background: var(--navy-mid); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
/* ── IMPROVED RESPONSIVE ─────────────────────── */
/* ── IMPROVED RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .hero-anim-wrap { width: 38%; opacity: 0.5; }
  .about-grid { gap: 48px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn { padding: 9px 18px; font-size: 13px; }
  .hamburger { display: flex; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .calc-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 20px; }
  .cta-section { padding: 48px 24px; }
  .hero-anim-wrap { display: none; }
  .section { padding: 60px 0; }
  .calc-wrap { padding: 24px; }
  .step { flex-wrap: wrap; gap: 12px; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .section-sm { padding: 40px 0; }
  .container { padding: 0 16px; }
  .hero-stats { gap: 16px; }
  .trust-strip-inner { gap: 16px; flex-direction: column; align-items: flex-start; padding: 0 16px; }
  .trust-sep { display: none; }
  .calc-wrap { padding: 20px; }
  .card { padding: 20px; }
  .plan-card { padding: 24px; }
  .cta-section { padding: 36px 20px; }
  .hero-slogan { font-size: 11px; letter-spacing: 0.1em; }
  .section-title { font-size: clamp(22px, 5vw, 36px); }
  .about-grid { gap: 28px; }
}
@media (max-width: 600px) {
  .hero { padding-top: 80px; }
  .hero h1 { font-size: 30px; line-height: 1.15; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 14px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 24px; }
  .hero-badge { font-size: 10px; padding: 6px 14px; }
  .trust-strip-inner { gap: 12px; }
  .cta-section { padding: 30px 16px; }
  .cta-btns { flex-direction: column; gap: 10px; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .calc-wrap { padding: 16px; }
  .card { padding: 16px; }
  .plan-card { padding: 20px; }
  .plan-rate { font-size: 42px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-legal { justify-content: center; }
  .compare-grid { grid-template-columns: 1fr; }
  .step-icon { width: 44px; height: 44px; font-size: 20px; }
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .nav-cta .btn { padding: 8px 14px; font-size: 13px; }
  .testi-grid { grid-template-columns: 1fr; }
  .rate-selector { gap: 6px; }
  .rate-btn { padding: 7px 12px; font-size: 12px; }
  .calc-result-val.big { font-size: 22px; }
  .mobile-menu a { font-size: 15px; padding: 12px 0; }
  .section-tag { font-size: 10px; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
  .nav-logo-name { font-size: 12px; }
  .nav-logo img { height: 40px; }
}
