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

:root {
  --green: #4CB948;
  --green-dark: #3a9438;
  --green-deep: #1f5c1e;
  --green-light: #e8f7e8;
  --dark: #111111;
  --dark2: #1e1e1e;
  --gray: #555555;
  --gray-light: #f4f4f4;
  --border: #e0e0e0;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 4px; }
.cricket-logo { width: 120px; height: 36px; }
.nav-ping-logo { height: 38px; width: auto; display: block; }
.footer-ping-logo { height: 52px; width: auto; margin-bottom: 12px; display: block; }

/* Logo overlay on hero photo stack */
.hero-logo-overlay {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 18px;
  display: inline-flex; align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 12px;
  align-self: flex-start;
}
.hero-logo-overlay img { height: 42px; width: auto; display: block; }

.nav-brand {
  font-size: 15px; font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: -4px;
  margin-top: 8px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mm-link { padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--gray); border-bottom: 1px solid var(--border); }
.mm-link:last-child { border-bottom: none; }
.mm-cta { color: var(--green) !important; font-weight: 700 !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 48px 60px;
  max-width: 1300px; margin: 0 auto;
  gap: 48px;
}
.hero-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.08;
  color: var(--dark);
  margin-bottom: 20px;
}
.green { color: var(--green); }
.hero-sub {
  font-size: 17px; color: var(--gray); line-height: 1.7;
  max-width: 520px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--green); color: var(--white);
  padding: 15px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(76,185,72,0.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,185,72,0.4); }
.btn-ghost {
  background: transparent; color: var(--dark);
  padding: 15px 28px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 26px; font-weight: 900; color: var(--dark); }
.stat-label { font-size: 12px; color: var(--gray); font-weight: 500; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* ── HERO PHOTO STACK ── */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-photo-stack {
  width: 100%; max-width: 520px;
  display: flex; flex-direction: column; gap: 12px;
}
.hero-photo-main {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--green);
}
.hero-photo-main img {
  width: 100%; height: 300px; object-fit: cover; display: block;
}
.hero-photo-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  color: var(--white); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(76,185,72,0.5);
}
.hero-photo-secondary {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo-secondary img {
  width: 100%; height: 160px; object-fit: cover; display: block;
  object-position: center top;
}
.hero-photo-label {
  position: absolute; bottom: 8px; left: 10px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.9); font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
}

/* ── STORE PHOTO GRID ── */
.store-photo-grid {
  display: grid; grid-template-rows: auto auto; gap: 12px;
  margin-bottom: 16px;
}
.store-photo-big, .store-photo-small {
  position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.store-photo-big img {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
.store-photo-small img {
  width: 100%; height: 180px; object-fit: cover; display: block;
  object-position: center top;
}
.photo-caption {
  position: absolute; bottom: 10px; left: 12px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  color: var(--white); font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(76,185,72,0.4);
}

/* ── STORE MOCKUP (legacy, kept for reference) ── */
.store-mockup {
  width: 100%; max-width: 480px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.store-interior {
  height: 280px;
  background: #e8e8e8;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.store-wall { background: var(--green); padding: 12px 8px; display: flex; flex-direction: column; justify-content: flex-start; }
.phone-display { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.phone-card {
  background: rgba(255,255,255,0.15);
  border-radius: 6px; padding: 6px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.phone-img {
  width: 28px; height: 40px;
  background: #2d2d2d; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
}
.phone-img.orange { background: #e8572a; }
.phone-img.blue { background: #2d4fd4; }
.phone-card span { font-size: 8px; color: rgba(255,255,255,0.9); font-weight: 600; }
.store-back {
  background: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 16px 8px;
  border-left: 4px solid var(--green);
  border-right: 4px solid var(--green);
}
.cricket-sign {
  font-size: 28px; font-weight: 900; color: var(--dark2);
  letter-spacing: -1px;
}
.k-letter { color: var(--green); }
.city-banner {
  font-size: 11px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 2px;
  margin-top: 8px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  background: var(--green-light); padding: 4px 3px; border-radius: 3px;
}
.welcome-sign {
  background: var(--green); border-radius: 6px; padding: 8px 6px;
  text-align: center; margin-top: 8px;
  display: flex; flex-direction: column; gap: 3px;
}
.welcome-sign strong { font-size: 8px; color: var(--white); font-weight: 800; }
.welcome-sign span { font-size: 10px; color: var(--white); font-weight: 700; }
.welcome-sign small { font-size: 6.5px; color: rgba(255,255,255,0.85); line-height: 1.3; }
.store-floor {
  grid-column: 1 / -1;
  height: 30px;
  background: linear-gradient(180deg, #ccc 0%, #b8b8b8 100%);
}
.counter {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #f0ece4; border-radius: 4px;
  border-top: 2px solid #d4cfc4;
  display: flex; justify-content: center;
}
.counter-top { width: 80px; height: 4px; background: #d4cfc4; margin-top: 4px; border-radius: 2px; }
.store-label { padding: 12px 16px; font-size: 12px; font-weight: 700; color: var(--gray); text-align: center; background: var(--gray-light); border-top: 1px solid var(--border); letter-spacing: 0.5px; text-transform: uppercase; }

/* ── SECTIONS ── */
.section { padding: 96px 24px; }
.container { max-width: 1160px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--gray); max-width: 600px; line-height: 1.7; margin-bottom: 56px; }

/* ── TABS ── */
.tabs-section { background: var(--gray-light); padding: 64px 24px; }
.tabs-nav {
  display: flex; gap: 6px; flex-wrap: wrap;
  background: var(--white); border-radius: 14px;
  padding: 6px; margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.tab-btn {
  flex: 1; min-width: 120px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: var(--gray); padding: 12px 20px; border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { background: var(--green-light); color: var(--green-dark); }
.tab-btn.active { background: var(--green); color: var(--white); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-dark { background: var(--dark); border-radius: 16px; padding: 40px; }
.tab-intro { margin-bottom: 40px; }
.tab-intro .section-sub { margin-bottom: 0; }

/* ── WHY CARDS ── */
.why-section { background: var(--gray-light); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.green-bg { background: var(--green); }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ── STORE SECTION ── */
.store-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.store-info p { font-size: 16px; color: var(--gray); margin-bottom: 32px; line-height: 1.7; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-dot {
  width: 10px; height: 10px; min-width: 10px;
  background: var(--green); border-radius: 50%;
  margin-top: 7px;
}
.feature-list strong { font-size: 15px; font-weight: 700; display: block; margin-bottom: 4px; }
.feature-list p { font-size: 14px; color: var(--gray); line-height: 1.6; margin: 0; }

/* ── STORE RENDER ── */
.store-render {
  background: #1a1a2e; border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
}
.render-top-bar { display: flex; gap: 6px; padding: 10px 14px; background: #111; }
.render-dot { width: 10px; height: 10px; border-radius: 50%; }
.render-dot.r { background: #ff5f57; }
.render-dot.y { background: #ffbd2e; }
.render-dot.g { background: #28ca41; }
.render-interior {
  height: 220px; display: grid; grid-template-columns: 0.8fr 1.4fr 0.8fr;
  background: #e0e0e0; overflow: hidden;
}
.render-left, .render-right { background: var(--green); padding: 10px 8px; display: flex; flex-direction: column; gap: 8px; }
.render-banner {
  background: rgba(0,0,0,0.2); border-radius: 4px;
  color: var(--white); font-size: 9px; font-weight: 700;
  padding: 6px 8px; line-height: 1.4; text-align: center;
}
.right-b { font-size: 8px; }
.render-phones { display: flex; flex-direction: column; gap: 4px; }
.rp { height: 48px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.3); }
.rp1 { background: #2d2d2d; }
.rp2 { background: #e8572a; }
.rp3 { background: #4a90d9; }
.render-accessories { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.acc-row { display: flex; gap: 3px; }
.acc { flex: 1; height: 22px; background: rgba(255,255,255,0.2); border-radius: 3px; }
.render-center { background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px; border-left: 3px solid var(--green); border-right: 3px solid var(--green); }
.render-sign { font-size: 24px; font-weight: 900; color: var(--dark); }
.render-sign span { color: var(--green); }
.render-counter-area { width: 100%; display: flex; justify-content: center; margin-top: 24px; }
.render-counter { width: 80px; height: 22px; background: #f0ece4; border-radius: 4px; border-top: 2px solid #d4cfc4; }
.render-floor-strip { height: 20px; background: #c0c0c0; }
.store-specs { display: flex; gap: 10px; flex-wrap: wrap; }
.spec-pill {
  background: var(--green-light); color: var(--green-dark);
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
}
.spec-pill span { font-weight: 900; }

/* ── REVENUE ── */
.revenue-section { background: var(--dark); }
.revenue-section .section-tag { color: #7dd87a; }
.revenue-section .section-title { color: var(--white); }
.revenue-section .section-sub { color: rgba(255,255,255,0.6); }
.revenue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.rev-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.2s, background 0.2s;
}
.rev-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.09); }
.rev-card.primary { border-color: var(--green); background: rgba(76,185,72,0.12); }
.rev-card.highlight-card { border-color: rgba(76,185,72,0.4); grid-column: span 1; }
.rev-icon { font-size: 28px; margin-bottom: 12px; }
.rev-amount { font-size: 36px; font-weight: 900; color: var(--green); margin-bottom: 4px; }
.rev-card.primary .rev-amount { color: #7dd87a; }
.rev-label { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.rev-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.revenue-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.summary-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.summary-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.summary-num { font-size: 36px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.summary-num.green { color: var(--green); }
.summary-box p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── PROCESS ── */
.process-section { background: var(--gray-light); }
.steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  font-size: 13px; font-weight: 900;
  color: var(--white); background: var(--green);
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.5px;
}
.step-body { padding-bottom: 8px; }
.step-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.step-body p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.step-connector {
  width: 2px; height: 40px; background: var(--green);
  opacity: 0.25; margin-left: 21px;
}

/* ── STANDALONE PLANS SECTION ── */
.plans-section { background: var(--white); }

.promo-strip {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #0d3d0d, #1a6b1a);
  color: var(--white); border-radius: 12px;
  padding: 16px 24px; margin-bottom: 40px;
  font-size: 15px;
}
.promo-strip .promo-fire { font-size: 22px; }

.full-plans-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 24px; align-items: start;
}
.fp-card {
  border: 2px solid var(--border); border-radius: 20px;
  padding: 28px 22px; background: var(--white);
  display: flex; flex-direction: column; gap: 10px;
  position: relative; transition: transform 0.2s, box-shadow 0.2s;
}
.fp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.fp-card.fp-popular {
  border-color: var(--green);
  box-shadow: 0 6px 32px rgba(76,185,72,0.18);
}
.fp-card.fp-premium {
  border-color: #7c3aed;
  box-shadow: 0 6px 32px rgba(124,58,237,0.12);
}
.fp-best-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: 11px; font-weight: 800; padding: 5px 16px;
  border-radius: 100px; white-space: nowrap; letter-spacing: 0.3px;
}
.fp-best-badge.premium { background: #7c3aed; }

.fp-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-top: 8px; }
.fp-name { font-size: 16px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.fp-data-badge {
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  background: var(--gray-light); color: var(--gray);
  padding: 4px 10px; border-radius: 100px; white-space: nowrap;
}
.fp-data-badge.unlimited { background: var(--green-light); color: var(--green-dark); }

.fp-price-row { display: flex; align-items: baseline; gap: 2px; margin-top: 4px; }
.fp-price { font-size: 52px; font-weight: 900; color: var(--dark); line-height: 1; }
.fp-popular .fp-price { color: var(--green-dark); }
.fp-premium .fp-price { color: #7c3aed; }
.fp-mo { font-size: 16px; font-weight: 500; color: var(--gray); }
.fp-autopay { font-size: 11px; color: var(--gray); margin-top: -4px; }

.fp-divider { height: 1px; background: var(--border); margin: 4px 0; }

.fp-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.fp-features li { font-size: 13px; color: #444; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.fp-features li::before { content: '✓'; color: var(--green); font-weight: 900; font-size: 13px; min-width: 14px; margin-top: 1px; }
.fp-features strong { color: var(--dark); }

.fp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.fp-tags span {
  background: var(--green-light); color: var(--green-dark);
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}
.fp-tags.premium-tags span { background: rgba(124,58,237,0.1); color: #7c3aed; }

.addons-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 20px;
}
.addon-chip {
  background: var(--gray-light); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--dark);
}
.addon-chip em { font-style: normal; color: var(--gray); font-weight: 400; }

@media (max-width: 1024px) {
  .full-plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .full-plans-grid { grid-template-columns: 1fr; }
  .addons-row { flex-direction: column; }
}

/* ── PLANS (in tab) ── */
.promo-banner {
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: var(--white); border-radius: 12px;
  padding: 16px 24px; margin-bottom: 32px;
  font-size: 15px; display: flex; align-items: center; gap: 10px;
}
.promo-fire { font-size: 22px; }
.plans-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 28px;
}
.plan-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 16px; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.plan-popular { border-color: var(--green); box-shadow: 0 4px 24px rgba(76,185,72,0.2); }
.plan-card.plan-premium { border-color: #7c3aed; box-shadow: 0 4px 24px rgba(124,58,237,0.15); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: 11px; font-weight: 800; padding: 4px 14px;
  border-radius: 100px; white-space: nowrap; letter-spacing: 0.5px;
}
.premium-badge { background: #7c3aed; }
.plan-name { font-size: 15px; font-weight: 800; color: var(--dark); margin-top: 8px; }
.plan-data { font-size: 12px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 1px; }
.plan-popular .plan-data { color: var(--green); }
.plan-premium .plan-data { color: #7c3aed; }
.plan-price {
  font-size: 42px; font-weight: 900; color: var(--dark);
  line-height: 1; margin: 8px 0 2px;
}
.plan-dollar { font-size: 22px; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-mo { font-size: 14px; font-weight: 500; color: var(--gray); }
.plan-autopay { font-size: 11px; color: var(--gray); margin-bottom: 8px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.plan-features li { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 12px; min-width: 14px; }
.plan-tag-row { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.plan-tag {
  background: var(--green-light); color: var(--green-dark);
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px;
}
.plan-popular .plan-tag { background: rgba(76,185,72,0.15); }
.plan-premium .plan-tag { background: rgba(124,58,237,0.1); color: #7c3aed; }
.plans-extras {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 20px;
}
.extra-card {
  background: var(--gray-light); border-radius: 10px;
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.extra-icon { font-size: 22px; min-width: 28px; }
.extra-info { display: flex; flex-direction: column; gap: 2px; }
.extra-info strong { font-size: 13px; font-weight: 700; }
.extra-info span { font-size: 11px; color: var(--gray); }
.plans-disclaimer { font-size: 11px; color: #aaa; line-height: 1.6; }

@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-extras { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plans-extras { grid-template-columns: 1fr; }
}

/* ── LAUNCHPATH ── */
.launchpath-section {
  background: #080c10;
  padding: 96px 24px;
}
.lp-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #00c9a0;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.lp-dot { font-size: 10px; }
.lp-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; color: #ffffff;
  line-height: 1.1; margin-bottom: 56px;
  max-width: 780px;
}
.teal { color: #00c9a0; }
.bold-txt { font-weight: 800; }

.lp-phases {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0;
}
.lp-phase { display: flex; flex-direction: column; }
.lp-phase-header {
  padding: 12px 20px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-align: center;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 16px 50%);
  position: relative; z-index: 1;
}
.lp-phase:first-child .lp-phase-header {
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
}
.lp-phase:last-child .lp-phase-header {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 16px 50%);
}
.prebuild  { background: #00c9a0; color: #080c10; }
.buildout  { background: #1a2535; color: #ffffff; }
.launch    { background: #00c9a0; color: #080c10; }
.ongoing   { background: #1a2535; color: #ffffff; }

.lp-items {
  display: flex; flex-direction: column; gap: 0;
  padding: 20px; flex: 1;
  background: #0f1720;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.lp-phase:last-child .lp-items { border-right: none; }
.lp-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-item:last-child { border-bottom: none; }
.lp-amount {
  font-size: 22px; font-weight: 900; color: #00c9a0;
  margin-bottom: 4px; line-height: 1;
}
.lp-name {
  font-size: 13px; font-weight: 700; color: #ffffff;
  margin-bottom: 3px;
}
.lp-desc {
  font-size: 11px; color: rgba(255,255,255,0.4);
  font-style: italic; line-height: 1.4;
}

.lp-footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  background: #0f1720; border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px; border-radius: 0 0 12px 12px;
  border-top: none; margin-top: -1px;
}
.lp-footer-label {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 10px; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lp-dash { color: rgba(255,255,255,0.3); }
.lp-total-pill {
  background: #00c9a0; color: #080c10;
  font-size: 13px; font-weight: 800;
  padding: 8px 20px; border-radius: 100px;
  letter-spacing: 0.3px;
}
.lp-asterisk {
  font-size: 11px; color: rgba(255,255,255,0.3);
  margin-top: 14px; line-height: 1.6; font-style: italic;
}
.lp-takeaway {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(0,201,160,0.06);
  border-left: 3px solid #00c9a0;
  border-radius: 0 8px 8px 0;
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.lp-takeaway-label {
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  color: #00c9a0; text-transform: uppercase;
  display: block; margin-bottom: 6px;
}

@media (max-width: 900px) {
  .lp-phases { grid-template-columns: repeat(2, 1fr); }
  .lp-phase-header {
    clip-path: none !important;
    border-radius: 0;
  }
}
@media (max-width: 600px) {
  .lp-phases { grid-template-columns: 1fr; }
  .lp-footer-bar { flex-direction: column; align-items: flex-start; }
}

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border);
}
.stars { color: #f5a623; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial > p { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--green); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; min-width: 40px;
}
.testimonial-author strong { font-size: 14px; display: block; }
.testimonial-author span { font-size: 12px; color: var(--gray); }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--dark);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--green); transition: transform 0.3s; line-height: 1; min-width: 24px; text-align: center; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: 14px; color: var(--gray); line-height: 1.75; padding-bottom: 20px; }

/* ── APPLY ── */
.apply-section { background: var(--green-deep); padding: 96px 24px; }
.apply-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.white-tag { color: rgba(255,255,255,0.7) !important; }
.apply-title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.apply-left > p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }
.apply-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.apply-perks li { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 8px; }

/* ── FORM ── */
.apply-form {
  background: var(--white); border-radius: 20px;
  padding: 36px; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 11px 14px; font-size: 14px; font-family: inherit;
  color: var(--dark); background: var(--white);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(76,185,72,0.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-submit {
  width: 100%; background: var(--green); color: var(--white);
  border: none; border-radius: 10px; padding: 15px;
  font-size: 16px; font-weight: 700; font-family: inherit; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(76,185,72,0.35);
  margin-top: 4px;
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,185,72,0.45); }
.form-disclaimer { font-size: 11px; color: #aaa; text-align: center; margin-top: 12px; line-height: 1.5; }

.form-success {
  display: none;
  background: var(--white); border-radius: 20px;
  padding: 60px 36px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-success.visible { display: block; }
.success-icon {
  width: 72px; height: 72px;
  background: var(--green); color: var(--white);
  border-radius: 50%; font-size: 36px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ── FOOTER ── */
.footer { background: var(--dark2); padding: 60px 24px 0; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.bold { font-weight: 900; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-email { font-size: 14px; color: var(--green); font-weight: 600; }
.footer-email:hover { text-decoration: underline; }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.3) !important; }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding: 20px 0; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); line-height: 1.6; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .revenue-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; margin-top: 0; }
  .store-mockup { max-width: 360px; }
  .store-split { grid-template-columns: 1fr; gap: 40px; }
  .apply-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .revenue-grid { grid-template-columns: 1fr; }
  .revenue-summary { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .section { padding: 64px 20px; }
}
