/* ============================================================
   Earn It — Marketing Website Styles
   ============================================================ */

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

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

:root {
  --bg-deep:   #0A0E1A;
  --bg-darker: #000008;
  --bg-card:   #12172E;
  --cyan:      #00D4FF;
  --cyan-dark: #0066FF;
  --orange:    #FF6B35;
  --gold:      #FFB800;
  --text:      #ffffff;
  --text-muted:#A0A8C0;
  --border:    rgba(0,212,255,0.15);
  --radius-card: 16px;
  --radius-btn:  100px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-darker) 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Star Particles ───────────────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--dur, 3s) var(--delay, 0s) infinite ease-in-out;
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50%       { opacity: var(--max-op, 0.7); transform: scale(1); }
}

/* ── Utility Classes ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cyan  { color: var(--cyan); }
.orange{ color: var(--orange); }
.muted { color: var(--text-muted); }

.section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 700;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,212,255,0.25); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 8px 32px rgba(0,212,255,0.15); }

/* ── Navigation ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: rgba(10,14,26,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,212,255,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav-logo span { color: var(--cyan); }

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--cyan); }

/* ── Hero Section ─────────────────────────────────────────── */
#hero {
  position: relative;
  z-index: 1;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { max-width: 560px; }

.hero-headline {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-headline .line1 { display: block; color: var(--text); }
.hero-headline .line2 { display: block; color: var(--cyan); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.apple-icon { font-size: 18px; }

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 240px;
  height: 480px;
  background: #0D1229;
  border-radius: 40px;
  border: 2px solid rgba(0,212,255,0.3);
  box-shadow:
    0 0 60px rgba(0,212,255,0.12),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  transform: rotate(-6deg);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #080B18;
  border-radius: 100px;
  z-index: 2;
}

.phone-screen {
  padding: 52px 16px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-header {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.phone-lock-icon {
  text-align: center;
  font-size: 36px;
  margin: 4px 0;
}

.phone-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.app-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  filter: grayscale(0.3) brightness(0.7);
  position: relative;
}

.app-icon.locked::after {
  content: '🔒';
  position: absolute;
  bottom: -2px;
  right: -2px;
  font-size: 10px;
  background: #0D1229;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon.bg1 { background: linear-gradient(135deg, #833AB4, #FD1D1D); }
.app-icon.bg2 { background: linear-gradient(135deg, #000, #333); }
.app-icon.bg3 { background: linear-gradient(135deg, #FF0000, #CC0000); }
.app-icon.bg4 { background: linear-gradient(135deg, #1DA1F2, #0a85d1); }
.app-icon.bg5 { background: linear-gradient(135deg, #0088FF, #005FCC); }
.app-icon.bg6 { background: linear-gradient(135deg, #25D366, #128C7E); }
.app-icon.bg7 { background: linear-gradient(135deg, #FF4500, #cc3700); }
.app-icon.bg8 { background: linear-gradient(135deg, #6441A4, #412b72); }

.phone-earn-bar {
  margin-top: auto;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,102,255,0.15));
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 12px;
  padding: 10px 12px;
}

.earn-bar-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.earn-bar-progress {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.earn-bar-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  border-radius: 4px;
  animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.earn-bar-label {
  font-size: 8px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Glow rings around phone */
.phone-glow {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.08);
  animation: glow-pulse 4s ease-in-out infinite;
}
.phone-glow.g1 { width: 320px; height: 320px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.phone-glow.g2 { width: 440px; height: 440px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1s; }
.phone-glow.g3 { width: 560px; height: 560px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 2s; }

@keyframes glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ── Problem Section ──────────────────────────────────────── */
#problem {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
  text-align: center;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.problem-line {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.problem-big {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.problem-tagline {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin-top: 16px;
  font-style: italic;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  margin: 48px auto 0;
}

/* ── How It Works ─────────────────────────────────────────── */
#how-it-works {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

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

.step-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  border: 1px solid rgba(0,212,255,0.08);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,212,255,0.1);
}

.step-card:hover::before { opacity: 1; }

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,102,255,0.2));
  border: 1px solid rgba(0,212,255,0.4);
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 20px;
}

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

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Activities Section ───────────────────────────────────── */
#activities {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: rgba(0,212,255,0.02);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.activity-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 28px 28px 28px 32px;
  border: 1px solid rgba(0,212,255,0.08);
  border-left: 3px solid var(--cyan);
  transition: transform 0.3s, box-shadow 0.3s, border-left-color 0.3s;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,212,255,0.1);
  border-left-color: var(--cyan-dark);
}

.activity-emoji {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.activity-body {}

.activity-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.activity-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────────────────── */
#testimonials {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-count {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
}

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

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  border: 1px solid rgba(0,212,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.avatar.av1 { background: linear-gradient(135deg, var(--cyan), #0066FF); }
.avatar.av2 { background: linear-gradient(135deg, #FF6B35, #FF3D00); }
.avatar.av3 { background: linear-gradient(135deg, #A855F7, #7C3AED); }

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* ── Pricing Section ──────────────────────────────────────── */
#pricing {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 40px;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  border: 1px solid rgba(0,212,255,0.12);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.featured {
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 0 40px rgba(0,212,255,0.08);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,212,255,0.12);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #000;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing-period {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card:not(.featured) .pricing-price { color: var(--text); }

.pricing-billing {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,102,255,0.2));
  border: 1px solid rgba(0,212,255,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 11px;
  flex-shrink: 0;
}

.pricing-cta-wrap {
  text-align: center;
}

.btn-pricing {
  width: 100%;
  max-width: 400px;
  padding: 18px 32px;
  font-size: 17px;
  margin-bottom: 12px;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Privacy Section ──────────────────────────────────────── */
#privacy-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: rgba(0,0,0,0.2);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.privacy-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  border: 1px solid rgba(0,212,255,0.08);
  text-align: center;
  transition: transform 0.3s;
}

.privacy-card:hover { transform: translateY(-4px); }

.privacy-icon { font-size: 36px; margin-bottom: 16px; }

.privacy-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.privacy-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA Section ──────────────────────────────────────────── */
#cta {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.cta-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 64px 48px;
  border: 1px solid rgba(0,212,255,0.25);
  box-shadow:
    0 0 80px rgba(0,212,255,0.08),
    0 40px 80px rgba(0,0,0,0.4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  padding: 18px 48px;
  font-size: 18px;
  margin-bottom: 16px;
  display: inline-flex;
}

.cta-platform {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  position: relative;
  z-index: 1;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(0,212,255,0.08);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {}

.footer-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-logo span { color: var(--cyan); }

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-btn:hover {
  background: rgba(0,212,255,0.12);
  border-color: rgba(0,212,255,0.3);
  color: var(--cyan);
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { margin-top: 40px; }

  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }

  #hero { padding: 120px 0 80px; }

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

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-socials { justify-content: center; }

  .cta-card { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .phone-mockup { width: 200px; height: 400px; }
}

/* ── Inner Page Styles (privacy, terms, support) ──────────── */
.inner-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.inner-page h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.inner-page .page-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.inner-page .content-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 40px;
  border: 1px solid rgba(0,212,255,0.08);
  margin-bottom: 24px;
}

.inner-page h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,212,255,0.1);
}

.inner-page p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.inner-page p:last-child { margin-bottom: 0; }

.inner-page ul {
  list-style: none;
  margin-bottom: 14px;
}

.inner-page ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.inner-page ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 12px;
  top: 2px;
}

.inner-page a { color: var(--cyan); }
.inner-page a:hover { text-decoration: underline; }

/* Support FAQ */
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,212,255,0.08);
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--cyan); }

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
  font-style: normal;
  font-size: 12px;
  color: var(--cyan);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(0,212,255,0.2); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-box {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 40px;
  border: 1px solid rgba(0,212,255,0.15);
  text-align: center;
  margin-top: 40px;
}

.contact-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  border: none;
  padding: 0;
}

.contact-box p {
  margin-bottom: 24px;
}

.inner-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,14,26,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  padding: 16px 0;
}

.inner-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-link {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--cyan); }
