/* ============================================================
   SameSecond - Main Stylesheet
   Dark theme, bilingual, phone mockup, production-ready
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --font-heading: 'Varela Round', sans-serif;
  --font-body: 'Inter', sans-serif;
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --bg: #0F172A;
  --surface: #1E293B;
  --surface2: #0D1B2A;
  --text: #F1F5F9;
  --text-muted: #64748B;
  --text-subtle: #94A3B8;
  --green: #22C55E;
  --amber: #F59E0B;
  --rose: #F43F5E;
  --cyan: #06B6D4;
  --violet: #8B5CF6;
  --card-navy: #0D1B2A;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.25s ease;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4,
.nav-logo-text,
.step-num,
.pricing-name,
.app-name-small,
.cta-title,
.hero-title {
  font-family: var(--font-heading);
}

body, p, li, span,
.app-stat-label,
.app-rate,
.app-fact,
.feature-desc,
.step-desc,
.section-sub,
.hero-sub {
  font-family: var(--font-body);
}

/* ---- MATERIAL ICONS ROUND ---- */
.mi {
  font-family: 'Material Icons Round';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
  user-select: none;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 28px rgba(99,102,241,0.50);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.14);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 14px;
}

.btn-full { width: 100%; justify-content: center; }

/* ---- ORB BLOBS ---- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(99,102,241,0.35), transparent 70%);
  top: -160px; left: -100px;
}
.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(139,92,246,0.25), transparent 70%);
  bottom: 0; right: -80px;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,0.18), transparent 70%);
  top: 40%; left: 50%;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: 36px;
  border-radius: 10px;
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: white;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-subtle);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 2px 4px;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { color: var(--primary); }
.lang-sep { color: var(--text-muted); font-size: 13px; }

/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text);
  padding: 4px;
}
.hamburger .mi { font-size: 26px; }

/* Mobile nav */
@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 13px 24px;
    width: 100%;
    font-size: 15px;
  }
  .hamburger { display: flex; }
  .nav-actions .btn-sm { display: none; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 60px;
}
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-phone { display: flex; justify-content: center; }
  .hero-btns { justify-content: center; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.28);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-subtle);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.12;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-subtle);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.6;
}
@media (max-width: 900px) { .hero-sub { margin: 0 auto 32px; } }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

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

/* ---- PHONE MOCKUP ---- */
.hero-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.28) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.phone-wrap {
  position: relative;
  z-index: 1;
  perspective: 1200px;
}

.phone {
  position: relative;
  width: 260px;
  height: 520px;
  background: #1A1A2E;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: rotateY(-8deg) rotateX(3deg);
  transition: transform 0.4s ease;
}
.phone-wrap:hover .phone {
  transform: rotateY(-4deg) rotateX(1.5deg);
}

/* Decorative side buttons */
.phone-btn {
  position: absolute;
  background: #2A2A40;
  border-radius: 3px;
}
.phone-btn--vol-up {
  left: -4px; top: 100px;
  width: 4px; height: 28px;
}
.phone-btn--vol-dn {
  left: -4px; top: 138px;
  width: 4px; height: 28px;
}
.phone-btn--power {
  right: -4px; top: 120px;
  width: 4px; height: 38px;
}

/* Dynamic Island */
.phone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 20;
}

/* Phone screen */
.phone-screen {
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  background: var(--card-navy);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ---- APP FEED TOP BAR ---- */
.app-feed-topbar {
  position: absolute;
  top: 44px;
  left: 0; right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 10;
}

.app-topbar-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.app-topbar-btn:hover { background: rgba(0,0,0,0.55); }
.app-topbar-btn .mi {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

.app-name-small {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.3px;
}

/* ---- APP CARD STACK ---- */
.app-cards {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.app-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 30px;
}
.app-card.active {
  transform: translateY(0);
  opacity: 1;
}
.app-card.exiting {
  transform: translateY(-100%);
  opacity: 0;
}

/* Card background radial gradient */
.app-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.app-card-bg--indigo {
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.15) 0%, transparent 70%);
  animation: bgPulse 3s ease-in-out infinite;
}
.app-card-bg--green {
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.15) 0%, transparent 70%);
  animation: bgPulse 3s ease-in-out infinite;
}
.app-card-bg--amber {
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.15) 0%, transparent 70%);
  animation: bgPulse 3s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1.0; }
}

/* ---- APP CARD CONTENT ---- */
.app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
  position: relative;
  margin-top: 44px;
}

/* Category icon circles */
.app-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: iconPulse 1.5s ease-in-out infinite;
}
.app-icon-circle--indigo {
  background: rgba(99,102,241,0.20);
  border: 2px solid rgba(99,102,241,0.40);
  box-shadow: 0 0 20px rgba(99,102,241,0.30);
}
.app-icon-circle--green {
  background: rgba(34,197,94,0.20);
  border: 2px solid rgba(34,197,94,0.40);
  box-shadow: 0 0 20px rgba(34,197,94,0.30);
}
.app-icon-circle--amber {
  background: rgba(245,158,11,0.20);
  border: 2px solid rgba(245,158,11,0.40);
  box-shadow: 0 0 20px rgba(245,158,11,0.30);
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1.0);
    box-shadow: 0 0 14px rgba(255,255,255,0.12);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 28px rgba(255,255,255,0.22);
  }
}

/* Inner circle (decorative) */
.app-icon-inner {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  pointer-events: none;
}
.app-icon-inner--indigo { background: rgba(99,102,241,0.10); }
.app-icon-inner--green  { background: rgba(34,197,94,0.10); }
.app-icon-inner--amber  { background: rgba(245,158,11,0.10); }

.app-icon-mi {
  font-family: 'Material Icons Round';
  font-size: 30px;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* Card text */
.app-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-top: 14px;
  line-height: 1.2;
}

.app-counter-val {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
  margin-top: 6px;
  line-height: 1.1;
}

.app-per-sec {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

.app-funfact {
  margin-top: 16px;
  background: rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 9px 13px;
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255,255,255,0.80);
  max-width: 85%;
  text-align: center;
}

.app-source {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 9px;
  color: rgba(255,255,255,0.30);
}

/* Action bar */
.app-actions-bar {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  z-index: 1;
  position: relative;
}

.app-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}

.app-action-icon {
  font-family: 'Material Icons Round';
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  line-height: 1;
  transition: color 0.2s;
}
.app-action-item:hover .app-action-icon { color: #fff; }

.app-action-label {
  font-family: var(--font-body);
  font-size: 9px;
  color: rgba(255,255,255,0.50);
}

/* Card counter */
.app-card-counter {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
  z-index: 1;
  position: relative;
}

/* Indicator dots */
.app-indicator {
  position: absolute;
  bottom: 22px;
  left: 0; right: 0;
  display: flex;
  gap: 5px;
  justify-content: center;
  z-index: 5;
}
.app-ind-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s;
}
.app-ind-dot.active { background: rgba(255,255,255,0.80); }

/* Home indicator bar */
.app-home-bar {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  z-index: 5;
}

/* ---- TICKER ---- */
.ticker-section {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 22px 24px;
}
.ticker-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-icon {
  font-size: 26px;
  line-height: 1;
}
.ticker-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 2px;
}
.ticker-val {
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1;
}
.ticker-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 600px) {
  .ticker-divider { display: none; }
  .ticker-inner { gap: 18px; }
}

/* ---- SECTIONS ---- */
.section {
  padding: 96px 0;
}
.section-alt {
  background: rgba(30,41,59,0.45);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-subtle);
  max-width: 500px;
  margin: 0 auto;
}

/* ---- FEATURES GRID ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  border-color: rgba(99,102,241,0.25);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon {
  font-size: 26px;
  line-height: 1;
}
.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.feature-desc {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.6;
}

/* ---- STEPS GRID ---- */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 20px;
}

.step-connector {
  flex: 0 0 60px;
  height: 3px;
  background: linear-gradient(90deg, rgba(99,102,241,0.4), rgba(139,92,246,0.4));
  border-radius: 3px;
  margin-top: 28px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(99,102,241,0.40);
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.step-desc {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .steps-grid { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { display: none; }
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  gap: 24px;
}
@media (max-width: 700px) {
  .pricing-grid--2 { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.pricing-card--pro {
  border-color: rgba(99,102,241,0.40);
  background: linear-gradient(145deg, rgba(99,102,241,0.08), var(--surface));
  box-shadow: 0 0 40px rgba(99,102,241,0.12);
}

.pricing-badge-free,
.pricing-badge-pro {
  display: inline-block;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-badge-free {
  background: rgba(34,197,94,0.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
}
.pricing-badge-pro {
  background: rgba(99,102,241,0.15);
  color: var(--primary);
  border: 1px solid rgba(99,102,241,0.30);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}
.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-subtle);
}
.pricing-check {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1;
  flex-shrink: 0;
}
.pricing-check--pro { color: var(--primary); }

.pricing-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-save {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 12px;
  transition: color var(--transition);
  cursor: pointer;
}
.faq-q:hover { color: var(--primary); }

.faq-chevron {
  font-size: 22px;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 18px;
}
.faq-a p {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.7;
  padding: 0 4px;
}

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(139,92,246,0.06) 50%, rgba(6,182,212,0.05) 100%);
}
.cta-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.22), transparent 70%);
  top: -100px; left: -100px;
}
.orb-cta-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 70%);
  bottom: -80px; right: -80px;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-subtle);
  margin-bottom: 36px;
}
.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #a5b4fc;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* Store buttons */
.store-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 12px 22px;
  color: var(--text);
  transition: all var(--transition);
  min-width: 160px;
}
.store-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.store-btn-icon {
  font-size: 30px;
  color: var(--text);
  line-height: 1;
}
.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.store-btn-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}
.store-btn-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--surface2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 56px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}

.footer-brand { max-width: 260px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.6;
}

.footer-links-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 14px;
  color: var(--text-subtle);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  text-align: center;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- LEGAL PAGE STYLES ---- */
.legal-hero {
  padding: 120px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.legal-hero h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--text);
  margin-bottom: 10px;
}
.legal-hero p {
  font-size: 15px;
  color: var(--text-muted);
}
.legal-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.10);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--amber);
  margin-bottom: 14px;
}
.legal-notice .mi { font-size: 16px; }

.legal-body {
  padding: 60px 0 96px;
  max-width: 760px;
  margin: 0 auto;
}
.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  font-size: 15px;
  color: var(--text-subtle);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-body ul li {
  font-size: 15px;
  color: var(--text-subtle);
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover { color: var(--violet); }

/* ---- UTILITY ---- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
