/* ══════════════════════════════════════════
   DREAMLIGHT — style.css
   Solar Investment Platform on BNB Smart Chain
   ══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --yellow:      #f59e0b;
  --yellow-dark: #d97706;
  --yellow-glow: rgba(245, 158, 11, 0.45);
  --sky:         #38bdf8;
  --sky-dark:    #0ea5e9;
  --sky-glow:    rgba(56, 189, 248, 0.35);
  --white:       #ffffff;
  --black:       #000000;
  --glass-bg:    rgba(255, 255, 255, 0.10);
  --glass-bg2:   rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h: 70px;
  --radius-card: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.30);
  --shadow-glow-y: 0 4px 30px rgba(245, 158, 11, 0.45);
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font);
  background: #050a12;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--font); }

/* ══════════════════════════════════════════
   SHARED UTILITY
   ══════════════════════════════════════════ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  overflow: hidden;
}

/* Photo backgrounds */
.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Generic overlay */
.section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.dark-overlay  { background: rgba(0, 10, 30, 0.82); }
.blue-overlay  { background: rgba(14, 165, 233, 0.85); }
.about-overlay { background: rgba(0, 0, 0, 0.78); }
.stats-overlay { background: rgba(0, 0, 0, 0.80); }

/* Section headings */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: rgba(255,255,255,0.80);
  font-size: 18px;
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.6;
}

.title-underline {
  width: 56px;
  height: 4px;
  background: var(--sky);
  margin: 0 auto;
  border-radius: 2px;
}

.title-underline-white {
  background: rgba(255,255,255,0.6);
}

/* Glass card */
.glass-card {
  background: var(--glass-bg2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
}

/* Yellow accent */
.yellow { color: var(--yellow); }
.sky    { color: var(--sky); }

/* Shared buttons */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-glow-y);
  letter-spacing: 0.2px;
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(245, 158, 11, 0.55);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--white);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* Fade-in scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.60);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 26px;
  color: var(--yellow);
  filter: drop-shadow(0 0 10px rgba(245,158,11,0.7));
  line-height: 1;
}

.logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-connect {
  background: var(--yellow);
  color: #000;
  border: none;
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: var(--shadow-glow-y);
  flex-shrink: 0;
}
.btn-connect:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245,158,11,0.55);
}
.btn-connect.connected {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 24px rgba(34,197,94,0.4);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(0,0,0,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 32px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}
.mobile-menu ul li a:hover { color: var(--yellow); }

/* ══════════════════════════════════════════
   SECTION 1 — HERO
   ══════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-image: url('https://images.unsplash.com/photo-1611365892117-00ac5ef43c90?w=1600&q=90');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  padding-top: var(--nav-h);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(14, 165, 233, 0.38) 48%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 32px 48px;
  max-width: 820px;
  width: 100%;
  margin: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  color: var(--sky-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.hero-title {
  font-size: clamp(46px, 7.5vw, 92px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
  letter-spacing: -2px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.87);
  font-size: 18px;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}

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

/* Hero Stat Cards */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 0 32px 56px;
  flex-wrap: wrap;
  width: 100%;
}

.stat-card {
  padding: 24px 36px;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 260px;
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }

.stat-icon { font-size: 28px; margin-bottom: 8px; }

.stat-value {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ══════════════════════════════════════════
   SECTION 2 — TICKER STRIP
   ══════════════════════════════════════════ */
.ticker-strip {
  background: var(--yellow);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.ticker-track { overflow: hidden; }

.ticker-content {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 35s linear infinite;
  will-change: transform;
}

.ticker-content span {
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 0 20px;
  white-space: nowrap;
}

.ticker-sep {
  color: rgba(0,0,0,0.35) !important;
  padding: 0 8px !important;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SECTION 3 — HOW IT WORKS
   ══════════════════════════════════════════ */
.how-section {
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step-card {
  padding: 44px 32px;
  text-align: center;
  flex: 1;
  min-width: 240px;
  max-width: 310px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}

.step-number {
  width: 46px;
  height: 46px;
  background: var(--yellow);
  color: #000;
  font-weight: 900;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 18px rgba(245,158,11,0.5);
}

.step-icon { font-size: 52px; margin-bottom: 16px; }

.step-card h3 {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.75;
}

.step-arrow {
  color: var(--yellow);
  font-size: 36px;
  font-weight: 900;
  flex-shrink: 0;
  text-shadow: 0 0 16px rgba(245,158,11,0.5);
}

/* ══════════════════════════════════════════
   SECTION 4 — INVESTMENT PLANS
   ══════════════════════════════════════════ */
.plans-section {
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Plan Card */
.plan-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.30s ease, border-color 0.30s ease, box-shadow 0.30s ease;
  border: 2px solid transparent;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-12px);
  border-color: var(--yellow);
  box-shadow: 0 24px 60px rgba(245,158,11,0.28);
}

.plan-popular {
  transform: translateY(-8px);
  border-color: var(--sky);
  box-shadow: 0 16px 50px rgba(56,189,248,0.30);
}
.plan-popular:hover {
  transform: translateY(-18px);
  border-color: var(--sky);
  box-shadow: 0 28px 64px rgba(56,189,248,0.35);
}

.plan-popular-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--sky-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  padding: 5px;
  letter-spacing: 1.5px;
  z-index: 3;
}

.plan-image {
  height: 178px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dark tint on plan images */
.plan-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

.plan-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.badge-yellow { background: var(--yellow);    color: #000; }
.badge-sky    { background: var(--sky-dark);  color: #fff; }
.badge-blue   { background: #1e3a8a;          color: #fff; }
.badge-dark   { background: #111111;          color: #fff; }

.plan-body { padding: 22px 22px 24px; }

.plan-title {
  color: #111;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-price {
  color: #111;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
}

.plan-roi {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pill {
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.pill-green { background: #dcfce7; color: #15803d; }
.pill-sky   { background: #e0f2fe; color: #0284c7; }

.plan-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.plan-duration, .plan-kw {
  color: #666;
  font-size: 13px;
  font-weight: 500;
}

.btn-invest {
  width: 100%;
  background: var(--yellow);
  color: #000;
  border: none;
  padding: 13px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(245,158,11,0.3);
}
.btn-invest:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245,158,11,0.45);
}

/* ══════════════════════════════════════════
   SECTION 5 — WHY DREAMLIGHT
   ══════════════════════════════════════════ */
.why-section {
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?w=1600&q=80');
  background-size: cover;
  background-attachment: fixed;
}

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

.feature-card {
  padding: 44px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.feature-icon {
  font-size: 54px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   SECTION 6 — LIVE STATS
   ══════════════════════════════════════════ */
.stats-section {
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1521618755572-156ae0cdd74d?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stats-item {
  transition: transform var(--transition);
}
.stats-item:hover { transform: scale(1.04); }

.stats-value {
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1;
  text-shadow: 0 0 30px rgba(245,158,11,0.35);
}

.stats-label {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/* ══════════════════════════════════════════
   SECTION 7 — ABOUT
   ══════════════════════════════════════════ */
.about-section {
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.about-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.highlight-yellow { color: var(--yellow); }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0 40px;
}

.about-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* ══════════════════════════════════════════
   SECTION 8 — FOOTER
   ══════════════════════════════════════════ */
.footer-section {
  background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1600&q=80');
  background-size: cover;
  background-position: center bottom;
  position: relative;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1;
}

.footer-section .container {
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.social-icons { display: flex; gap: 14px; }

.social-icon {
  font-size: 22px;
  text-decoration: none;
  transition: transform var(--transition), filter var(--transition);
  display: inline-block;
  cursor: pointer;
}
.social-icon:hover {
  transform: scale(1.25) translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(245,158,11,0.5));
}

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--yellow); }

.footer-chain-badge {
  margin-top: 24px;
}

.footer-chain-badge span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--yellow);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  text-align: center;
}

.contract-address {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin-bottom: 14px;
}

.contract-text {
  color: var(--sky);
  font-family: 'Courier New', monospace;
  font-size: 13px;
  cursor: pointer;
  transition: color var(--transition);
  word-break: break-all;
}
.contract-text:hover { color: var(--sky-dark); }

.copyright {
  color: rgba(255,255,255,0.38);
  font-size: 13px;
  margin-bottom: 8px;
}

.disclaimer {
  color: rgba(255,255,255,0.22);
  font-size: 11px;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   TOAST NOTIFICATION
   ══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  max-width: 340px;
  pointer-events: none;
  line-height: 1.4;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.success {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 6px 28px rgba(245,158,11,0.45);
}
.toast.error {
  background: #ef4444;
  color: #fff;
  box-shadow: 0 6px 28px rgba(239,68,68,0.45);
}
.toast.info {
  background: var(--sky);
  color: #000;
  box-shadow: 0 6px 28px rgba(56,189,248,0.45);
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (1100px)
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .plans-grid    { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-hamburger { display: block; }
  .btn-connect { padding: 9px 18px; font-size: 13px; }

  .hero-title { letter-spacing: -1px; }
  .hero-content { padding-top: 60px; }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .stat-card { max-width: 92%; width: 100%; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; text-align: center; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .step-card  { max-width: 100%; }

  .plans-grid    { grid-template-columns: 1fr; }
  .plan-popular  { transform: none; }

  .features-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .stats-value { font-size: clamp(36px, 8vw, 54px); }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { text-align: center; }
  .footer-tagline { margin: 0 auto 24px; }
  .social-icons { justify-content: center; }

  .about-badges { gap: 8px; }

  .container { padding: 0 20px; }

  .section-header { margin-bottom: 48px; }

  .how-section,
  .plans-section,
  .why-section,
  .stats-section,
  .about-section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stats { padding-bottom: 40px; }
  .ticker-content span { font-size: 13px; padding: 0 14px; }
}

/* ══════════════════════════════════════════
   PARALLAX DISABLE on mobile (performance)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-section,
  .plans-section,
  .why-section {
    background-attachment: scroll;
  }
}
