/* ============================================================
   TradeOS Landing Page v2.30 — style.css
   Premium dark-theme marketing site for TradeOS by Wyckoff Labs
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  --bg-primary: #0D0D15;
  --bg-card: #111122;
  --bg-card-hover: #1A1A2E;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(108, 92, 231, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0C0;
  --text-muted: #6B6B80;
  --accent-purple: #7B61FF;
  --accent-purple-hover: #6a52e0;
  --accent-gold: #F59E0B;
  --accent-gold-dark: #D97706;
  --accent-green: #10B981;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 200ms ease;
  --max-w: 1120px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.text-accent {
  background: linear-gradient(135deg, var(--accent-purple), #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Fade-in Animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-purple);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: var(--accent-purple-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(123, 97, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.btn-elite {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #fff;
  border: none;
}

.btn-elite:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}


/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 21, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo-img {
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.navbar-brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.navbar-login:hover {
  color: var(--text-primary);
}

.navbar-cta {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  background: var(--accent-purple);
  color: #fff;
  font-weight: 600;
  transition: all var(--transition);
}

.navbar-cta:hover {
  background: var(--accent-purple-hover);
  box-shadow: 0 0 24px rgba(123, 97, 255, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

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

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(13, 13, 21, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

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

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--text-primary);
}

.mobile-menu .btn-primary {
  text-align: center;
  margin-top: 8px;
  border-bottom: none;
  color: #fff;
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--accent-purple), #3B82F6, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

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

/* Hero Visual / Browser Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-mockup {
  width: 100%;
  max-width: 540px;
}

.browser-frame {
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 120px rgba(123, 97, 255, 0.06);
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #EF4444; opacity: 0.7; }
.browser-dots span:nth-child(2) { background: #F59E0B; opacity: 0.7; }
.browser-dots span:nth-child(3) { background: #22C55E; opacity: 0.7; }

.browser-content {
  min-height: 300px;
}

.placeholder-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: var(--text-muted);
  font-size: 14px;
}


/* ================================================================
   SOCIAL PROOF BAR
   ================================================================ */
.social-proof {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof-text {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.social-proof-text strong {
  color: var(--text-secondary);
  font-weight: 600;
}


/* ================================================================
   FEATURES
   ================================================================ */
.features {
  padding: 80px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.feature-badge-pro {
  background: var(--accent-purple);
  color: #fff;
}

.feature-badge-elite {
  background: var(--accent-gold);
  color: #fff;
}

.feature-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(123, 97, 255, 0.08);
}

.feature-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

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


/* ================================================================
   SCREENSHOTS
   ================================================================ */
.screenshots {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.screenshots .section-title {
  margin-bottom: 48px;
}

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

.screenshot-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.browser-frame-sm {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.browser-frame-sm .browser-dots {
  padding: 10px 16px;
}

.browser-frame-sm .browser-dots span {
  width: 8px;
  height: 8px;
}

.browser-frame-sm .browser-content {
  min-height: 200px;
}

.placeholder-screen-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.screenshot-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

.screenshots-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}


/* ================================================================
   PRICING
   ================================================================ */
.pricing {
  padding: 80px 0;
  background: rgba(17, 17, 34, 0.4);
  border-top: 1px solid var(--border);
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-save {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
}

.pricing-toggle-switch {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
}

.pricing-toggle-switch:hover {
  background: rgba(255, 255, 255, 0.15);
}

.pricing-toggle-switch.active {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
}

.pricing-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
}

.pricing-toggle-switch.active .pricing-toggle-knob {
  transform: translateX(20px);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-2px);
}

/* Popular (Pro) Card */
.pricing-card-popular {
  border: 2px solid var(--accent-purple);
  box-shadow: 0 0 60px rgba(123, 97, 255, 0.12);
}

.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Elite Card */
.pricing-card-elite {
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.pricing-card-elite:hover {
  border-color: rgba(245, 158, 11, 0.5);
}

.pricing-card-header {
  margin-bottom: 16px;
}

.pricing-tier {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

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

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.pricing-amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

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

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.pricing-founding {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 40px;
  margin-bottom: 8px;
}

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


/* ================================================================
   FOUNDER
   ================================================================ */
.founder {
  padding: 80px 0;
  background: rgba(17, 17, 34, 0.3);
  border-top: 1px solid var(--border);
}

.founder .section-title {
  margin-bottom: 32px;
}

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

.founder-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-content p:last-child {
  margin-bottom: 0;
}


/* ================================================================
   FAQ
   ================================================================ */
.faq {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.faq .section-title {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

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

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

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: rgba(17, 17, 34, 0.4);
  border-top: 1px solid var(--border);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
}

.final-cta-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
}

.final-cta .btn {
  position: relative;
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-logo-img {
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}

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

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

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

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

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


/* ================================================================
   MOBILE STICKY CTA
   ================================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  height: 60px;
  align-items: center;
  transition: transform 0.3s ease;
}


/* ================================================================
   RESPONSIVE — TABLET (below 900px)
   ================================================================ */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots-scroll {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card-popular {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* ================================================================
   RESPONSIVE — MOBILE (below 768px)
   ================================================================ */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .hero {
    padding: 120px 0 48px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    min-height: 48px;
  }

  .features {
    padding: 48px 0;
  }

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

  .screenshots {
    padding: 48px 0;
  }

  .screenshots-scroll {
    grid-template-columns: 1fr;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .screenshot-item {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .pricing {
    padding: 48px 0;
  }

  .founder {
    padding: 48px 0;
  }

  .faq {
    padding: 48px 0;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-cta-title {
    font-size: 24px;
  }

  .final-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  /* Add bottom padding so footer content isn't hidden behind sticky CTA */
  body {
    padding-bottom: 60px;
  }
}


/* ================================================================
   RESPONSIVE — SMALL MOBILE (below 480px)
   ================================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 26px;
  }

  .pricing-amount {
    font-size: 36px;
  }
}
