﻿/* ============================================
   DigiLaunch — Shared Stylesheet
   Rebuilt pixel-perfect from mainpages.pen
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --brand-primary: #3061b3;
  --brand-primary-dark: #1E3F7A;
  --brand-secondary: #4285F4;
  --brand-gradient: linear-gradient(135deg, #3061b3 0%, #4285F4 100%);
  --bg-dark: #0A1628;
  --bg-dark-hero: linear-gradient(160deg, #070D1A 0%, #162240 100%);
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  --text-on-dark: #E2E8F0;
  --border: #E0E0E0;
  --border-light: #E2E8F0;
  --surface: #F8FAFC;
  --white: #FFFFFF;
  --accent-orange: #F97316;
  --accent-green: #2F855A;
  --accent-green-light: #38A169;
  --font: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 28px;
  --shadow-nav: 0 6px 28px rgba(31,38,135,0.08);
  --shadow-modal: 0 24px 64px rgba(0,0,0,0.13);
  --transition: all 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-size: 14px;
}
.skip-link:focus { top: 16px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-blue { color: var(--brand-secondary) !important; }
.text-muted { color: var(--text-muted); }

/* ---------- Typography ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.badge--gradient {
  background: #0e1f3b;
  color: var(--brand-secondary);
  width: fit-content;
  padding: 0 10px;
}
.badge--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--brand-secondary);
}
.badge--blue-light {
  background: rgba(66,133,244,0.13);
  border-radius: 16px;
  height: 32px;
  padding: 0 16px;
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 13px;
}
.badge--text-blue {
  background: none;
  border: none;
  padding: 0;
  height: auto;
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.heading-xl { font-size: 72px; font-weight: 800; line-height: 1.05; }
.heading-lg { font-size: 45px; font-weight: 700; line-height: 1.15; }
.heading-md { font-size: 40px; font-weight: 500; line-height: 1.05; }
.heading-sm { font-size: 36px; font-weight: 500; line-height: 1.15; }
.heading-xs { font-size: 28px; font-weight: 500; line-height: 1.2; }
.subtitle { font-size: 22px; line-height: 1.6; color: rgba(18,18,18,0.87); }
.body-lg { font-size: 17px; line-height: 1.7; }
.body-md { font-size: 16px; line-height: 1.7; color: rgba(0,0,0,0.67); }
.body-sm { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  border-radius: 14px;
  height: 52px;
  padding: 0 32px;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }
.btn:active { transform: translateY(0); }
.btn--orange { background: var(--accent-orange); color: var(--text-white); }
.btn--blue { background: var(--brand-secondary); color: var(--text-white); }
.btn--brand { background: var(--brand-gradient); color: var(--text-white); }
.btn--white { background: var(--white); color: var(--brand-primary); }
.btn--outline-blue {
  background: transparent;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-weight: 500;
}
.btn--outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--text-white);
  font-weight: 500;
}
.btn--sm { height: 44px; font-size: 14px; padding: 0 24px; border-radius: 12px; }
.btn--lg { height: 52px; }
.btn--full { width: 100%; }
.btn--icon { gap: 8px; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 110px;
  display: flex;
  justify-content: center;
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1220px;
  height: 56px;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-pill);
  padding: 0 8px 0 24px;
  box-shadow: var(--shadow-nav);
  border: 1px solid rgba(0,0,0,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__icon { width: 34px; height: 34px; border-radius: 8px; }
.nav-logo__text { font-size: 20px; font-weight: 800; }
.nav-logo__text--primary { color: var(--brand-primary); }
.nav-logo__text--secondary { color: var(--brand-secondary); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 15px; font-weight: 500; color: #1E293B; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-secondary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
  overflow: visible;
}
.nav-lang:hover { border-color: var(--brand-secondary); color: var(--brand-secondary); }
.nav-lang svg { width: 16px; height: 16px; }
.nav-login { font-size: 14px; font-weight: 500; color: #1E293B; cursor: pointer; transition: color 0.2s; padding: 0 8px; }
.nav-login:hover { color: var(--brand-secondary); }
.nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  border-radius: 20px;
  background: var(--brand-secondary);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-mobile-toggle { display: none; color: var(--text-primary); }

/* Language Dropdown */
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid var(--border-light);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  min-width: 160px;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s;
}
.lang-option:hover { background: var(--surface); }
.lang-option.active { color: var(--brand-secondary); font-weight: 600; }
.lang-option .flag { font-size: 18px; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 500; padding: 12px 0; color: var(--text-primary); border-bottom: 1px solid var(--border-light); }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  padding: 64px 48px 32px;
  color: var(--text-on-dark);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand { max-width: 300px; display: flex; flex-direction: column; gap: 16px; }
.footer__brand-text { font-size: 14px; color: var(--text-on-dark); line-height: 1.6; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__link { font-size: 14px; color: var(--text-light); transition: color 0.2s; }
.footer__link:hover { color: var(--text-white); }
.footer__divider { height: 1px; background: #1E293B; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}
.footer__copy { font-size: 13px; color: var(--text-muted); }
.footer__socials { display: flex; gap: 16px; }
.footer__social { color: var(--text-muted); transition: color 0.2s; display: flex; align-items: center; }
.footer__social:hover { color: var(--text-white); }
.footer__social svg { width: 18px; height: 18px; }

/* ========== SECTION LAYOUTS ========== */
.section { width: 100%; max-width: 1440px; margin: 0 auto; }
.section--surface { background: var(--surface); }

/* ========== HERO (Home) ========== */
.hero {
  position: relative;
  min-height: 900px;
  padding: 180px 120px 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--white);
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
}
.hero__content { max-width: 560px; display: flex; flex-direction: column; gap: 20px; z-index: 1; }
.hero__title { font-size: 72px; font-weight: 800; line-height: 1.05; color: var(--brand-primary); }
.hero__subtitle { font-size: 22px; line-height: 1.6; color: rgba(18,18,18,0.87); max-width: 463px; }
.hero__actions { display: flex; gap: 16px; align-items: center; margin-top: 8px; }
.hero__image {
  position: absolute;
  right: 80px;
  top: 100px;
  width: 480px;
  height: 640px;
}
.hero__image .placeholder-image { width: 100%; height: 100%; border-radius: var(--radius-lg); }
.hero__section-title {
  font-size: 40px;
  font-weight: 500;
  color: var(--brand-secondary);
  text-align: center;
  margin-top: 80px;
  padding: 0 120px;
}

/* ========== DARK HERO (shared for pricing/features/about/support/terms) ========== */
.hero--dark {
  background: var(--bg-dark-hero);
  color: var(--text-white);
  min-height: auto;
  padding: 160px 200px 160px;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: none;
}
.hero--dark .hero__title {
  color: var(--text-white);
  font-size: 56px;
  max-width: 100%;
}
.hero--dark .hero__subtitle {
  color: rgba(255,255,255,0.67);
  font-size: 18px;
  max-width: 600px;
  text-align: center;
  line-height: 1.6;
}
.hero--dark-sm {
  padding: 180px 200px;
  min-height: auto;
  gap: 20px;
}
.hero--dark-sm .hero__title { font-size: 48px; font-weight: 700; line-height: 1.15; }

/* ========== LOGO / PARTNER ROW ========== */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 120px;
}
.logo-row__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1021px;
  width: 100%;
}

/* ========== PRODUCT CARDS ========== */
.product-cards {
  display: flex;
  gap: 16px;
  max-width: 1100px;
  margin: 40px auto 0;
  justify-content: center;
  padding: 0 60px;
}
.product-card {
  flex: 1;
  max-width: 343px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: none;
  background: transparent;
  transition: var(--transition);
}
.product-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-card__icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-card__title { font-size: 18px; font-weight: 500; color: rgba(0,0,0,0.87); }
.product-card__desc { font-size: 14px; color: rgba(0,0,0,0.6); line-height: 1.6; }

/* ========== FEATURE ROW (video + text) ========== */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 100px 120px;
  max-width: 1300px;
  margin: 0 auto;
}
.feature-row--reversed { flex-direction: row-reverse; }
.feature-row__media { flex: 1; min-width: 0; }
.feature-row__text {
  width: 480px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-row--compact { padding: 50px 100px; gap: 130px; max-width: 1200px; margin: 0 auto; }
.feature-row--compact .feature-row__media { max-width: 411px; }
.feature-row--compact .feature-row__text { width: 378px; }

/* Video Placeholder */
.video-placeholder {
  width: 100%;
  min-height: 420px;
  background: #0F172A;
  border-radius: var(--radius-lg);
  border: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-placeholder--sm { min-height: 267px; }
.video-placeholder__play {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.video-placeholder__play:hover { background: rgba(255,255,255,0.15); }

/* ========== BENTO GRID ========== */
.bento-section { padding: 100px 120px; max-width: 1440px; margin: 0 auto; }
.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 20px;
  max-width: 1241px;
  margin: 0 auto;
}
.bento-card {
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.bento-card--orange {
  background: #EA8D36;
  color: var(--text-white);
  grid-row: span 2;
  justify-content: space-between;
  align-items: flex-start;
}
.bento-card--light {
  background: #F5F5F5;
  color: var(--text-primary);
  padding: 28px;
}
.bento-card__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 330px;
  z-index: 1;
}
.btn--orange-invert {
  background: #FFFFFF;
  color: #EA8D36;
  font-size: 14px;
  font-weight: 600;
  padding: 0 24px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: fit-content;
}
.bento-card__text { display: flex; flex-direction: column; gap: 16px; max-width: 330px; z-index: 1; }
.bento-card__image {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 55%;
  height: 70%;
}
.bento-card--light p { font-size: 25px; font-weight: 300; max-width: 252px; line-height: 1.3; }

/* ========== CTA BANNER ========== */
.cta-banner { padding: 60px 100px; max-width: 1440px; margin: 0 auto; }
.cta-banner__inner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 386px;
  background: linear-gradient(30deg, #3061B3 0%, rgba(83,135,255,0.9) 100%);
  display: flex;
  align-items: stretch;
}
.cta-banner__image-wrap {
  width: 40%;
  flex-shrink: 0;
  overflow: hidden;
}
.cta-banner__image-wrap .placeholder-image {
  min-height: 100%;
  border-radius: 0;
}
.cta-banner__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 48px;
  text-align: center;
  z-index: 1;
}
.cta-banner__link { font-size: 14px; color: rgba(255,255,255,0.8); text-decoration: underline; margin-top: 4px; }

/* ========== DIGIFINANCE ========== */
.digifinance { padding: 30px 120px; max-width: 1440px; margin: 0 auto; }
.digifinance__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.digifinance__label {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(0,0,0,0.87);
}
.digifinance__cards {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.digifinance__showcase {
  flex: 1;
  min-height: 397px;
  border-radius: 24px;
  border: 3px solid var(--border-light);
  overflow: hidden;
}
.digifinance__card {
  width: 274px;
  min-height: 397px;
  border-radius: 24px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  justify-content: space-between;
}
.digifinance__card--dark {
  background: rgba(0,0,0,0.87);
  color: rgba(255,255,255,0.87);
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.digifinance__card--light {
  background: #F5F5F5;
  color: rgba(0,0,0,0.87);
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}

/* ========== DF FEATURE ROWS ========== */
.df-rows { padding: 100px; display: flex; flex-direction: column; gap: 48px; align-items: center; max-width: 1300px; margin: 0 auto; }
.df-row {
  display: flex;
  align-items: center;
  gap: 130px;
  max-width: 1158px;
  width: 100%;
}
.df-row--reversed { flex-direction: row-reverse; }
.df-row__media {
  width: 411px;
  min-height: 267px;
  background: #0B1526;
  border-radius: var(--radius-lg);
  border: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.df-row__text { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.df-row__title { font-size: 28px; font-weight: 500; color: rgba(0,0,0,0.87); }
.df-row__desc { font-size: 20px; color: rgba(0,0,0,0.67); max-width: 378px; line-height: 1.5; }

/* ========== 3 STEPS ========== */
.steps { padding: 60px 120px; text-align: center; max-width: 1300px; margin: 0 auto; }
.steps__cards {
  display: flex;
  gap: 16px;
  margin-top: 15px;
  justify-content: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.step-card {
  flex: 1;
  max-width: 343px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: none;
  text-align: left;
}
.step-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-card__badge {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(66,133,244,0.13);
  color: var(--brand-secondary);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-card__title { font-size: 18px; font-weight: 700; color: var(--text-primary); }
.step-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ========== PRICING CARDS (Home page dark bg) ========== */
.pricing { padding: 100px 100px; text-align: center; max-width: 1300px; margin: 0 auto; }
.pricing__cards {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  flex: 1;
  max-width: 400px;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--brand-secondary);
  background: white;
  text-align: left;
  position: relative;
}
.pricing-card--popular { border: 2px solid var(--accent-orange); background: var(--white); }
.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-orange);
  color: var(--text-white);
  font-size: 11px;
  font-weight: 600;
  padding: 0 10px;
  height: 24px;
  border-radius: 12px;
  width: fit-content;
}
.pricing-card__name { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.pricing-card__price { display: flex; align-items: baseline; gap: 4px; }
.pricing-card__amount { font-size: 36px; font-weight: 800; color: rgba(15,23,42,0.87); }
.pricing-card__period { font-size: 14px; color: rgba(0,0,0,0.67); }
.pricing-card__desc { font-size: 14px; color: rgba(0,0,0,0.67); line-height: 1.5; }
.pricing-card__sep { height: 1px; background: #dee2e6; width: 100%; border: none; }
.pricing-card--popular .pricing-card__sep { background: var(--border-light); }
.pricing-card__features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-card__features li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pricing-card__features li::before { content: "✓  "; color: var(--text-secondary); font-weight: 600; }
.pricing-card--popular .pricing-card__features li::before { color: var(--text-secondary); }
.pricing-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.pricing-card__btn--outline {
  background: transparent;
  border: 1px solid var(--brand-secondary);
  color: var(--brand-secondary);
}
.pricing-card__btn--orange {
  background: var(--accent-orange);
  border: none;
  color: var(--text-white);
}
.pricing-card__btn:hover { opacity: 0.88; transform: translateY(-1px); }

.pricing__learn-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-secondary);
  display: inline-block;
  margin-top: 4px;
}

/* ========== COMPARE TABLE ========== */
.compare { padding: 0 0px 60px; max-width: 1100px; margin: 0 auto; }
.compare__title { font-size: 32px; font-weight: 700; text-align: center; padding: 60px 0 40px; color: var(--text-primary); }
.compare__table { width: 100%; }
.compare__row {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #F1F5F9;
}
.compare__row--header {
  background: var(--surface);
  padding: 16px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
}
.compare__cell { font-size: 14px; color: var(--text-secondary); }
.compare__cell--feature { flex: 1; padding-left: 20px; }
.compare__cell--plan { width: 140px; text-align: center; }
.compare__row--header .compare__cell { color: var(--text-primary); font-weight: 600; }
.compare__check { color: #22C55E; font-size: 16px; }
.compare__row .compare__cell:nth-child(3) { color: var(--brand-secondary); font-weight: 500; }
.compare__cross { color: var(--text-light); font-size: 14px; }

/* ========== SPOTSLOTH ========== */
.spotsloth {
  background: linear-gradient(180deg, #FFFFFF 2%, #ECFDF5 4%);
  padding: 70px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.spotsloth__header { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.spotsloth__label {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(0,0,0,0.87);
}
.spotsloth__showcase {
  position: relative;
  width: 100%;
  max-width: 1386px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 690px;
}
.spotsloth__phone {
  width: 329px;
  height: 658px;
  border-radius: 36px;
  flex-shrink: 0;
  border: 2px solid rgba(34,197,94,0.19);
  overflow: hidden;
}
.spotsloth__feature { max-width: 300px; display: flex; flex-direction: column; gap: 20px; }
.spotsloth__feature h3 { font-size: 30px; font-weight: 500; line-height: 1.15; }
.spotsloth__feature p { font-size: 16px; color: rgba(0,0,0,0.67); line-height: 1.8; }
.spotsloth__feature--left { text-align: right; align-self: flex-end; transform: translate(-30px, -100px); }
.spotsloth__feature--right { align-self: flex-start; transform: translate(30px, 100px); }
.spotsloth__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 1100px;
}
.spotsloth-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: transparent;
  border: none;
  justify-content: center;
  width: 100%;
}
.spotsloth-card__text { width: 478px; flex-shrink: 0; display: flex; flex-direction: column; gap: 8px; }
.spotsloth-card__title { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.spotsloth-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.spotsloth-card__phone {
  width: 329px;
  height: 413px;
  border-radius: 36px;
  flex-shrink: 0;
  border: 2px solid rgba(34,197,94,0.19);
  overflow: hidden;
}

/* SpotSloth Video Row */
.spotsloth__video-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1181px;
  width: 100%;
}
.spotsloth__video-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ========== FAQ ========== */
.faq { padding: 100px 120px; max-width: 1300px; margin: 0 auto; }
.faq__layout { display: flex; flex-direction: row; gap: 48px; }
.faq__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 324px;
  flex-shrink: 0;
}
.faq__actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: flex-start;
}
.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--brand-secondary); }
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-item__icon { color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-top 0.35s ease;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-item__answer { max-height: 500px; padding-top: 12px; }

/* FAQ centered variant (for pricing/support) */
.faq--centered .faq__layout { flex-direction: column; align-items: center; }
.faq--centered .faq__list { width: 100%; max-width: 800px; }

/* FAQ content wrapper (right side in side-by-side layout) */
.faq__content { flex: 1; display: flex; flex-direction: column; gap: 24px; min-width: 0; }

/* Section Title (between hero and products) */
.section-title-block {
  text-align: center;
  padding: 60px 120px 0;
  max-width: 1300px;
  margin: 0 auto;
}

/* ========== MODALS ========== */
.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  backdrop-filter: blur(4px);
}
.modal-bg.active { display: block; }

/* Login Modal */
.modal--login {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  z-index: 2001;
  box-shadow: var(--shadow-modal);
  border: 1px solid var(--border-light);
  flex-direction: column;
  gap: 20px;
}
.modal--login.active { display: flex; }
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
}
.modal__close:hover { background: var(--surface); color: var(--text-primary); }
.modal__logo { display: flex; align-items: center; gap: 8px; }
.modal__logo-icon { width: 32px; height: 32px; }
.modal__title { font-size: 24px; font-weight: 700; color: var(--text-primary); }
.modal__sub { font-size: 15px; color: var(--text-muted); margin-top: -12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.modal__label { font-size: 13px; font-weight: 500; color: #334155; }
.modal__input {
  height: 44px;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  padding: 0 14px;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.modal__input:focus { border-color: var(--brand-secondary); box-shadow: 0 0 0 3px rgba(66,133,244,0.1); }
.modal__input::placeholder { color: var(--text-light); }
.modal__forgot {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-primary);
  align-self: flex-end;
  margin-top: -8px;
}
.modal__forgot:hover { text-decoration: underline; }
.modal__submit {
  height: 48px;
  border-radius: 10px;
  background: var(--brand-secondary);
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  width: 100%;
}
.modal__submit:hover { opacity: 0.9; }
.modal__divider {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  position: relative;
}
.modal__divider::before,
.modal__divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 20px);
  height: 1px;
  background: var(--border-light);
}
.modal__divider::before { left: 0; }
.modal__divider::after { right: 0; }
.modal__google {
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  background: var(--white);
}
.modal__google:hover { background: var(--surface); border-color: var(--border); }
.modal__footer { text-align: center; font-size: 14px; color: var(--text-muted); }
.modal__footer a { color: var(--brand-secondary); font-weight: 500; }
.modal__footer a:hover { text-decoration: underline; }
.modal__error {
  display: none;
  font-size: 13px;
  color: #DC2626;
  background: #FEF2F2;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #FECACA;
}
.modal__error.active { display: block; }

/* Modal form layout */
.modal--login form,
.signup__form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Signup Modal */
.modal--signup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 960px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-xl);
  z-index: 2001;
  box-shadow: var(--shadow-modal);
  overflow: hidden auto;
  flex-direction: row;
}
.modal--signup.active { display: flex; }
.signup__brand {
  width: 400px;
  flex-shrink: 0;
  background: linear-gradient(to top right, #1E3F7A 0%, #4285F4 100%);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  color: var(--text-white);
}
.signup__brand-title { font-size: 28px; font-weight: 700; line-height: 1.25; color: #fff; }
.signup__brand-sub { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.signup__brand-features { display: flex; flex-direction: column; gap: 16px; }
.signup__brand-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.signup__brand-feature span { color: rgba(255,255,255,0.9); }
.signup__brand-feature svg { width: 20px; height: 20px; flex-shrink: 0; color: #22C55E; }
.signup__form {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  min-height: 0;
}
.signup__form .modal__title { font-size: 24px; }
.signup__name-row { display: flex; gap: 12px; }
.signup__name-row .form-group { flex: 1; }

/* ========== AUTH PAGES ========== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  padding: 40px;
}
.auth-card {
  width: 440px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-modal);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(66,133,244,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
}
.auth-card--wide {
  width: 960px;
  flex-direction: row;
  padding: 0;
  overflow: hidden;
  height: 640px;
}
.auth-card__brand {
  width: 400px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #1E3F7A 0%, #4285F4 100%);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  color: var(--text-white);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.auth-card__form {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.password-strength {
  height: 4px;
  border-radius: 2px;
  background: var(--border-light);
  margin-top: 4px;
  overflow: hidden;
}
.password-strength__bar {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s, background 0.3s;
}

/* ========== FEATURES PAGE ========== */
.feature-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 120px;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border-light);
}
.feature-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
  background: none;
  border-radius: 20px;
  white-space: nowrap;
}
.feature-tab:hover {
  color: var(--brand-secondary);
  background: rgba(66,133,244,0.06);
  border-color: rgba(66,133,244,0.15);
}
.feature-tab.active {
  color: var(--text-white);
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
}
.fun-facts { padding: 15px 120px; text-align: center; }
.fun-facts__title { font-size: 40px; font-weight: 800; color: var(--brand-secondary); line-height: 1.05; }
.fun-facts__cards {
  display: flex;
  gap: 16px;
  margin-top: 15px;
  max-width: 1021px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.fun-fact-card {
  flex: 1;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  text-align: center;
}
.fun-fact-card__value { font-size: 36px; font-weight: 800; color: var(--brand-secondary); }
.fun-fact-card__label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.more-features { padding: 100px 120px; text-align: center; }
.more-features__title { font-size: 40px; font-weight: 500; color: rgba(0,0,0,0.87); }
.more-features__grid {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}
.more-feature-card {
  flex: 1;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.more-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(66,133,244,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  font-size: 20px;
}
.more-feature-card__title { font-size: 18px; font-weight: 600; color: var(--text-primary); }
.more-feature-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ========== ABOUT PAGE ========== */
.about-section { padding: 100px 120px; }
.about-section--center { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.about-title { font-size: 50px; font-weight: 300; color: rgba(0,0,0,0.87); max-width: 621px; }
.about-values { display: flex; gap: 16px; max-width: 1021px; justify-content: center; }
.about-value-card {
  flex: 1;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: none;
  text-align: center;
}
.about-value-card:nth-child(1) h3 { color: #F97316; }
.about-value-card:nth-child(2) h3 { color: var(--brand-secondary); }
.about-value-card:nth-child(3) h3 { color: #2F855A; }
.about-story-row {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.about-story-row--reversed { flex-direction: row-reverse; }
.about-story-text { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.about-story-image {
  flex: 1;
  min-height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-phone {
  width: 329px;
  height: 413px;
  border-radius: 36px;
  border: 2px solid rgba(34,197,94,0.19);
  flex-shrink: 0;
}
.founders-grid { display: flex; gap: 40px; justify-content: center; align-items: center; }
.founder-card {
  width: 471px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.founder-card__photo {
  width: 471px;
  height: 634px;
  overflow: hidden;
  border-radius: 0;
}
.founder-card__photo .placeholder-image { width: 100%; height: 100%; border-radius: 0; }
.founder-card__info { padding: 10px 0px; height: 224px; display: flex; flex-direction: column; justify-content: flex-end; }
.founder-card__info--right { text-align: right; }
.founder-card__info--left { text-align: left; justify-content: flex-start;}
.founder-card--stagger-top { align-self: flex-start; }
.founder-card--stagger-bottom { align-self: flex-end; }
.founder-card__name { font-size: 35px; font-weight: 300; color: rgba(0,0,0,0.87); }
.founder-card__role { font-size: 35px; font-weight: 300; color: rgba(0,0,0,0.87); }

/* Citations */
.citation-row { display: flex; align-items: center; gap: 50px; justify-content: center; }
.citation-row--reversed { flex-direction: row-reverse; }
.citation-avatar { flex-shrink: 0; }
.citation-text { font-size: 35px; font-weight: 300; color: rgba(0,0,0,0.87); max-width: 600px; transform: rotate(-0.2deg); }
.contact-row {
  display: flex;
  gap: 80px;
  padding: 100px 300px;
  align-items: flex-start;
}
.contact-info { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.contact-form {
  width: 480px;
  flex-shrink: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 400px;
}
.contact-form__input {
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  padding: 0 14px;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  background: var(--white);
}
.contact-form__input:focus { border-color: var(--brand-secondary); }
.contact-form__textarea {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  resize: vertical;
  min-height: 120px;
  background: var(--white);
}
.contact-form__textarea:focus { border-color: var(--brand-secondary); }

/* ========== DOCS LINKS (Features page) ========== */
.docs-links { padding: 60px 120px; max-width: 1300px; margin: 0 auto; }
.docs-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.docs-link-card {
  display: column;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--white);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}
.docs-link-card:hover {
  border-color: var(--brand-secondary);
  background: rgba(66,133,244,0.04);
  color: var(--brand-secondary);
}

/* ========== SUPPORT PAGE ========== */
.support-search {
  display: flex;
  align-items: center;
  width: 540px;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.19);
  border-radius: 10px;
  padding: 0 16px;
  gap: 12px;
}
.support-search__icon { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.support-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--text-white);
  background: transparent;
}
.support-search__input::placeholder { color: rgba(255,255,255,0.4); }

.support-channels { padding: 80px 120px; text-align: center; }
.support-channels__title { font-size: 36px; font-weight: 500; color: var(--text-primary); margin-bottom: 48px; }
.support-channels__grid { display: flex; gap: 32px; }
.support-channel {
  flex: 1;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.support-channel__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(66,133,244,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  font-size: 24px;
}
.support-channel__title { font-size: 18px; font-weight: 600; color: var(--text-primary); }
.support-channel__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.help-topics { padding: 80px 120px; text-align: center; }
.help-topics__title { font-size: 36px; font-weight: 500; color: var(--text-primary); margin-bottom: 48px; }
.help-topics__grid { display: flex; gap: 32px; margin-bottom: 32px; }
.help-topic-card {
  flex: 1;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  min-height: 200px;
}
.help-topic-card:hover { border-color: var(--brand-secondary); box-shadow: var(--shadow-nav); }
.help-topic-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(66,133,244,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  font-size: 20px;
}
.help-topic-card__title { font-size: 18px; font-weight: 600; color: var(--text-primary); }
.help-topic-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ========== TERMS PAGE ========== */
.terms-tabs {
  display: flex;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 120px;
}
.terms-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  background: none;
}
.terms-tab.active { color: var(--text-white); background: var(--brand-secondary); }
.terms-body { padding: 60px 200px; display: flex; flex-direction: column; gap: 40px; }
.terms-section { display: flex; flex-direction: column; gap: 12px; }
.terms-section__title { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.terms-section__text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.terms-update {
  background: #F0F7FF;
  border: 1px solid rgba(66,133,244,0.19);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.terms-update__title { font-size: 14px; font-weight: 600; color: var(--brand-secondary); }
.terms-update__text { font-size: 13px; color: var(--text-secondary); }

/* ========== GUIDE / HELP PAGE ========== */
.guide-hero {
  background: var(--bg-dark-hero);
  padding: 120px 200px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.guide-section { padding: 80px 120px; }
.guide-section__title { font-size: 36px; font-weight: 700; color: var(--text-primary); margin-bottom: 40px; }
.guide-cards { display: flex; gap: 24px; }
.guide-card {
  flex: 1;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.guide-card:hover { border-color: var(--brand-secondary); box-shadow: var(--shadow-nav); }
.guide-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(66,133,244,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  font-size: 22px;
}
.guide-card__title { font-size: 18px; font-weight: 600; color: var(--text-primary); }
.guide-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ========== HELP ARTICLE PAGE ========== */
.help-article { padding: 60px 200px; max-width: 900px; margin: 0 auto; }
.help-article h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.help-article h2 { font-size: 24px; font-weight: 600; margin: 32px 0 12px; color: var(--text-primary); }
.help-article h3 { font-size: 18px; font-weight: 600; margin: 24px 0 8px; color: var(--text-primary); }
.help-article p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.help-article ul, .help-article ol { margin: 12px 0; padding-left: 20px; }
.help-article li { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.help-article ol li { list-style: decimal; }

/* ========== PLACEHOLDER IMAGES ========== */
.placeholder-image {
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  min-height: 100px;
}
.placeholder-image::after { content: attr(data-placeholder); }

/* ========== PRICING PAGE TOGGLE ========== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}
.pricing-toggle__label { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.pricing-toggle__label.active { color: var(--text-primary); font-weight: 600; }
.pricing-toggle__switch {
  width: 48px;
  height: 26px;
  background: var(--brand-secondary);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.pricing-toggle__switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}
.pricing-toggle__switch.annual::after { transform: translateX(22px); }

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .navbar { padding: 16px 40px; }
  .hero { padding: 140px 60px 80px; }
  .hero__image { right: 40px; width: 400px; height: auto; }
  .hero--dark { padding: 100px 80px 60px; }
  .hero--dark-sm { padding: 80px; }
  .section { max-width: 100%; }
  .feature-row { padding: 60px; gap: 40px; }
  .feature-row__text { width: 400px; }
  .faq { padding: 80px 60px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .spotsloth { padding: 60px; }
  .pricing { padding: 80px 60px; }
  .terms-body { padding: 40px 80px; }
  .more-features { padding: 80px 60px; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .nav-mobile-toggle { display: flex; }
  .mobile-menu a { display: block; }

  .hero { min-height: auto; }
  .hero__image { position: static; width: 100%; height: auto; margin-top: 40px; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: 48px; }

  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-card--orange { grid-row: auto; min-height: 400px; }

  .feature-row { flex-direction: column !important; gap: 32px; }
  .feature-row__text { width: 100%; }

  .pricing__cards { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 100%; width: 100%; }

  .spotsloth__showcase { flex-direction: column; gap: 32px; }

  .df-row { flex-direction: column !important; gap: 32px; }
  .df-row__media { width: 100%; }

  .modal--signup, .auth-card--wide { width: 95vw; max-width: 500px; flex-direction: column; height: auto; max-height: 90vh; overflow-y: auto; }
  .signup__brand, .auth-card__brand { width: 100%; border-radius: var(--radius-xl) var(--radius-xl) 0 0; padding: 32px; }
  .signup__form { flex: none; width: 100%; padding: 32px; }

  .compare__cell--plan { width: 100px; }
  .contact-row { flex-direction: column; padding: 60px; }
  .contact-form { width: 100%; }
}

@media (max-width: 768px) {
  .navbar { padding: 12px 16px; }
  .hero { padding: 100px 24px 60px; }
  .hero__title { font-size: 36px; }
  .hero--dark { padding: 80px 24px 40px; }
  .hero--dark .hero__title { font-size: 32px; }

  .feature-row { padding: 40px 24px; }
  .faq { padding: 40px 24px; }
  .steps { padding: 40px 24px; }
  .steps__cards { flex-direction: column; }
  .pricing { padding: 40px 24px; }
  .spotsloth { padding: 40px 24px; }
  .digifinance { padding: 40px 24px; }
  .digifinance__cards { flex-direction: column; }
  .digifinance__card { width: 100%; min-height: auto; }
  .bento-section { padding: 40px 24px; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner__inner { flex-direction: column; }
  .cta-banner__image-wrap { width: 100%; height: 200px; }
  .more-features { padding: 40px 24px; }
  .more-features__grid { flex-direction: column; }
  .footer { padding: 40px 24px 24px; }
  .footer__top { flex-direction: column; gap: 32px; }
  .terms-body { padding: 24px; }
  .support-channels { padding: 40px 24px; }
  .support-channels__grid { flex-direction: column; }
  .help-topics { padding: 40px 24px; }
  .help-topics__grid { flex-direction: column; }
  .about-section { padding: 40px 24px; }
  .about-story-row { flex-direction: column !important; }
  .founders-grid { flex-direction: column; align-items: center; }
  .founder-card { width: 100%; max-width: 400px; }
  .founder-card__photo { width: 100%; height: 400px; }
  .founder-card--stagger-top, .founder-card--stagger-bottom { align-self: center; }
  .citation-row { flex-direction: column !important; gap: 24px; }
  .citation-text { font-size: 22px; }
  .compare { padding: 0 24px 40px; }
  .compare__cell--plan { width: 80px; font-size: 12px; }

  .feature-tabs, .terms-tabs { padding: 0 16px; overflow-x: auto; }
  .feature-tab, .terms-tab { min-width: 100px; flex: none; padding: 0 16px; }

  .modal--login { width: 95vw; padding: 32px 24px; }
  .modal--signup { width: 95vw; max-width: 440px; }
  .signup__brand { padding: 24px; }
  .signup__form { padding: 24px; }

  .spotsloth__cards { flex-direction: column; }
  .spotsloth-card { flex-direction: column !important; }
  .spotsloth-card__text { width: 100%; }
  .spotsloth-card__phone { width: 100%; height: 300px; }
  .spotsloth__video-row { flex-direction: column; gap: 24px; }
  .spotsloth__video-row .video-placeholder { width: 100% !important; }
  .support-search { width: 100%; }
  .guide-section { padding: 40px 24px; }
  .guide-cards { flex-direction: column; }
  .fun-facts { padding: 40px 24px; }
  .fun-facts__cards { flex-direction: column; }
}
