/* ===== Variables ===== */
:root {
  --navy: #1B2A4A;
  --navy-light: #2A3D66;
  --gold: #D4A843;
  --gold-light: #E8C96A;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 8px 32px rgba(27, 42, 74, 0.12);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== Layout ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger feature cards */
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(6) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(7) { transition-delay: 0.3s; }
.features-grid .reveal:nth-child(8) { transition-delay: 0.4s; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  padding: 16px 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(27, 42, 74, 0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 64px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--gray-600); font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.2s; transform-origin: center;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(170deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative; overflow: hidden;
}
/* Subtle geometric background pattern */
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(30deg, var(--navy) 12%, transparent 12.5%, transparent 87%, var(--navy) 87.5%, var(--navy)),
    linear-gradient(150deg, var(--navy) 12%, transparent 12.5%, transparent 87%, var(--navy) 87.5%, var(--navy)),
    linear-gradient(30deg, var(--navy) 12%, transparent 12.5%, transparent 87%, var(--navy) 87.5%, var(--navy)),
    linear-gradient(150deg, var(--navy) 12%, transparent 12.5%, transparent 87%, var(--navy) 87.5%, var(--navy));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative;
}

/* Hero entrance animation */
.anim-hero {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-hero.entered { opacity: 1; transform: translateY(0); }
.anim-hero-phone {
  opacity: 0; transform: translateY(60px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.anim-hero-phone.entered { opacity: 1; transform: translateY(0); }

.hero h1 { font-size: 3rem; font-weight: 700; line-height: 1.15; color: var(--navy); }
/* Gradient text for tagline */
.gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}
.gold { color: var(--gold); }
.hero-sub { font-size: 1.15rem; color: var(--gray-600); margin-top: 20px; max-width: 480px; }
.store-badges { display: flex; gap: 16px; margin-top: 32px; }
.badge-wrapper { position: relative; display: inline-block; transition: transform 0.2s; }
.badge-wrapper:hover { transform: scale(1.05); }
.store-badge { height: 48px; filter: grayscale(100%) opacity(0.5); }
.store-badge.disabled { cursor: default; }
.coming-soon-label {
  display: block; text-align: center; margin-top: 6px;
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* Phone Mockup */
.phone-mockup {
  width: 280px; margin: 0 auto;
  background: var(--navy);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 20px 60px rgba(27, 42, 74, 0.2);
  transition: transform 0.3s ease;
}
.phone-mockup:hover { transform: translateY(-8px) rotate(1deg); }
.phone-screen {
  background: var(--white);
  border-radius: 26px;
  padding: 24px 16px;
  min-height: 480px;
}
.mockup-header {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1.1rem; color: var(--navy);
  margin-bottom: 20px;
}
.mockup-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: var(--navy); color: var(--white);
  border-radius: 6px; font-weight: 700; font-size: 0.75rem;
}
.mockup-stat { text-align: center; margin-bottom: 24px; }
.mockup-label { display: block; font-size: 0.8rem; color: var(--gray-400); }
.mockup-value { display: block; font-size: 2rem; font-weight: 700; color: var(--navy); }
.mockup-cards { display: flex; flex-direction: column; gap: 10px; }
.mockup-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; background: var(--gray-50); border-radius: 10px;
  font-size: 0.85rem; font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mockup-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.mockup-amount { font-weight: 600; color: var(--navy); }
.mockup-tag {
  font-size: 0.7rem; font-weight: 600; padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.mockup-tag.paid { background: #d4edda; color: #155724; }
.mockup-tag.sent { background: #cce5ff; color: #004085; }
.mockup-tag.draft { background: var(--gray-200); color: var(--gray-600); }

/* ===== Features ===== */
.features { padding: 100px 0; }
.section-title { font-size: 2.2rem; font-weight: 700; color: var(--navy); text-align: center; }
.section-sub { text-align: center; color: var(--gray-600); font-size: 1.1rem; margin-top: 12px; margin-bottom: 48px; }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--gray-50); border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  border: 1px solid transparent;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  background: var(--white);
  border-color: var(--gray-200);
}
.feature-icon {
  font-size: 2rem; margin-bottom: 12px;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon { transform: scale(1.15); }
.feature-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; }

/* ===== How It Works ===== */
.how-it-works { padding: 100px 0; background: var(--navy); color: var(--white); }
.how-it-works .section-title { color: var(--white); }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 24px; margin-top: 48px; }
.step { text-align: center; flex: 1; max-width: 280px; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 1.3rem; margin-bottom: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(212, 168, 67, 0.2);
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.step-arrow {
  font-size: 2rem; color: var(--gold); padding-top: 10px;
  display: flex; align-items: center;
}

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; background: var(--gray-50); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  color: var(--gold); font-size: 1.2rem; margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card > p {
  font-size: 0.95rem; color: var(--gray-600); line-height: 1.6;
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-400); }

/* ===== Pricing ===== */
.pricing { padding: 100px 0; }
.pricing-cards { display: flex; gap: 32px; justify-content: center; margin-top: 48px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 36px; width: 340px; box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.pro {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.pricing-card.pro:hover {
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.2);
}
.pro-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  padding: 4px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
}
.pricing-card h3 { font-size: 1.3rem; font-weight: 600; color: var(--navy); }
.price {
  font-size: 2.5rem; font-weight: 700; color: var(--navy); margin: 12px 0 4px;
}
.price span { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.gold-text { color: var(--gold) !important; }
.price-alt { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 8px; }
.pricing-card ul { margin-top: 24px; }
.pricing-card li {
  padding: 8px 0; font-size: 0.95rem; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.pricing-card li::before {
  content: '\2713'; color: var(--gold); font-weight: 700; margin-right: 10px;
}

/* ===== FAQ Accordion ===== */
.faq { padding: 100px 0; background: var(--gray-50); }
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item {
  padding: 0; border-bottom: 1px solid var(--gray-200);
  cursor: pointer; overflow: hidden;
}
.faq-q {
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-toggle {
  font-size: 1.4rem; font-weight: 300; color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 0 20px;
}
.faq-a p { font-size: 0.95rem; color: var(--gray-600); }

/* ===== Footer ===== */
.footer { padding: 60px 0 32px; background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-brand { margin-bottom: 32px; }
.footer-logo-wrap {
  display: inline-block;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.footer-logo { height: 36px; width: auto; }
.footer-tagline { margin-top: 8px; font-size: 0.9rem; }
.footer-links { display: flex; gap: 80px; margin-bottom: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s, padding-left 0.2s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; font-size: 0.85rem;
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  border: 2px solid var(--gold);
  font-size: 1.3rem; cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 99;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { margin: 16px auto 0; }
  .store-badges { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 240px; }
  .phone-screen { min-height: 400px; padding: 20px 14px; }

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

  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }

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

  .footer-links { flex-direction: column; gap: 32px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .store-badges { flex-direction: column; align-items: center; }
  .nav-links { display: none; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 1.1rem; }
}

/* ===== Legal Section ===== */
.legal-section {
  padding: 80px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.legal-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.legal-close {
  background: none;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  line-height: 1;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--gray-600);
  transition: all 0.2s;
}
.legal-close:hover { border-color: var(--navy); color: var(--navy); }
.legal-tab {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: all 0.2s;
  cursor: pointer;
}
.legal-tab:hover { border-color: var(--navy); color: var(--navy); }
.legal-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.legal-doc { max-width: 800px; }
.legal-doc h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.legal-effective {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.legal-doc h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 8px;
}
.legal-doc p {
  color: var(--gray-800);
  margin-bottom: 10px;
  line-height: 1.7;
}
.legal-doc ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 10px;
}
.legal-doc ul li {
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 4px;
}
.legal-doc a { color: var(--gold); text-decoration: underline; }

/* ===== App Preview ===== */
.app-preview {
  padding: 80px 0;
  background: #f8f9fb;
}
.preview-phones {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.preview-phone { text-align: center; }
.phone-frame {
  width: 260px;
  height: 520px;
  background: #1B2A4A;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 2px #2e3f5e;
  position: relative;
  overflow: hidden;
}
.phone-notch {
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}
.phone-content {
  background: #0F1B33;
  border-radius: 20px;
  height: calc(100% - 32px);
  overflow: hidden;
  padding: 12px;
  font-size: 11px;
  color: #e0e4ea;
}
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1e2d48;
}
.mock-title { font-weight: 700; font-size: 14px; color: #fff; }
.mock-back { color: #D4A843; font-size: 16px; }
.mock-icon { color: #8899b3; }
.mock-stat-card {
  background: linear-gradient(135deg, #243250, #1e2d48);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}
.mock-stat-label { color: #8899b3; font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.mock-stat-value { display: block; font-size: 24px; font-weight: 700; color: #D4A843; margin: 4px 0; }
.mock-stat-row { display: flex; justify-content: space-between; }
.mock-stat-sub { color: #8899b3; font-size: 10px; }
.mock-green { color: #4ADE80; }
.mock-quick-actions {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.mock-action-btn {
  flex: 1;
  background: #243250;
  color: #D4A843;
  text-align: center;
  padding: 6px 4px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
}
.mock-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #1e2d48;
}
.mock-muted { color: #5a6e8a; font-size: 10px; }
.mock-right { text-align: right; }
.mock-amount { font-weight: 600; color: #fff; }
.mock-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 2px;
}
.mock-tag.paid { background: #064e3b; color: #4ADE80; }
.mock-tag.sent { background: #1e3a5f; color: #60A5FA; }
.mock-tag.draft { background: #3b3520; color: #FBBF24; }
.preview-label {
  margin-top: 16px;
  font-weight: 600;
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Invoice mock */
.mock-invoice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e2d48;
}
.mock-biz-name {
  width: 36px;
  height: 36px;
  background: #D4A843;
  color: #1B2A4A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.mock-invoice-line {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 11px;
}
.mock-invoice-line.subtotal { border-top: 1px solid #1e2d48; margin-top: 6px; padding-top: 8px; }
.mock-invoice-line.total { font-weight: 700; color: #D4A843; font-size: 13px; }
.mock-invoice-divider { height: 1px; background: #1e2d48; margin: 4px 0; }
.mock-invoice-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.mock-btn-send {
  flex: 1;
  background: #D4A843;
  color: #1B2A4A;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
}
.mock-btn-pdf {
  flex: 1;
  background: #243250;
  color: #e0e4ea;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
}

/* Chip mock */
.mock-chip-badge {
  background: #D4A843;
  color: #1B2A4A;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.mock-chat { display: flex; flex-direction: column; gap: 8px; }
.mock-msg {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 10.5px;
  line-height: 1.4;
  max-width: 90%;
}
.mock-msg.user {
  background: #243250;
  color: #e0e4ea;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.mock-msg.chip {
  background: #1a2842;
  color: #c8d0dc;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid #2e3f5e;
}
.mock-chip-name {
  display: block;
  color: #D4A843;
  font-weight: 700;
  font-size: 9px;
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .preview-phones { gap: 24px; }
  .phone-frame { width: 220px; height: 440px; }
}

/* ===== Comparison Table ===== */
.comparison {
  padding: 80px 0;
  background: #fff;
}
.comparison-table {
  max-width: 700px;
  margin: 40px auto 0;
  overflow-x: auto;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid #e8eaee;
}
.comparison-table th {
  font-weight: 700;
  color: var(--gray-800);
  font-size: 0.9rem;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--gray-700);
}
.comparison-table .highlight-col {
  background: #f0f5ff;
  color: var(--navy);
  font-weight: 600;
}
.comparison-table th.highlight-col {
  background: var(--navy);
  color: #fff;
  border-radius: 8px 8px 0 0;
}
.comparison-table td.highlight-col {
  background: #f0f5ff;
}
.comparison-table .price-row td {
  font-weight: 600;
  border-bottom: none;
}
/* Checkmark green, X red */
.comparison-table td:nth-child(2) { color: #16a34a; }
.comparison-table td:nth-child(3) { color: #6b7280; }
.comparison-table td:nth-child(4) { color: #6b7280; }
.comparison-table .price-row td { color: var(--gray-800); }
.comparison-table .price-row .highlight-col { color: var(--navy); }

/* ===== Made in Canada ===== */
.canada-section {
  padding: 60px 0;
  background: #fef9f0;
}
.canada-inner {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.canada-flag {
  font-size: 3rem;
  margin-bottom: 12px;
}
.canada-inner h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.canada-inner p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 1.05rem;
}
.canada-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.canada-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
}
.canada-badge-icon { font-size: 1.4rem; }

/* ===== Integrations ===== */
.integrations {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #e8eaee;
  border-bottom: 1px solid #e8eaee;
}
.integrations-label {
  text-align: center;
  color: var(--gray-500);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.integrations-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 500;
}
.integration-item svg { color: var(--gray-400); }

/* ===== Signup Counter ===== */
.signup-counter {
  text-align: center;
  color: #D4A843;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 16px;
  min-height: 1.4em;
}
.counter-number {
  font-size: 1.3rem;
  font-weight: 800;
}

/* ===== Coming Soon Reviews ===== */
.coming-soon-reviews {
  text-align: center;
  padding: 60px 20px;
}
.coming-soon-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.coming-soon-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.coming-soon-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ===== Interest Form ===== */
.interest-section {
  padding: 80px 0;
  background-color: #1B2A4A;
  background-image: linear-gradient(170deg, #1B2A4A 0%, #0F1B33 100%);
  position: relative;
  overflow: hidden;
}
.interest-section .section-title {
  color: #fff !important;
  font-size: 2.2rem;
}
.interest-section .section-sub {
  color: #b0b8c8 !important;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.interest-form {
  max-width: 520px;
  margin: 40px auto 0;
  background-color: #243250;
  border: 1px solid #2e3f5e;
  border-radius: 20px;
  padding: 36px 32px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  color: #8899b3;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #364b6e;
  border-radius: 12px;
  background-color: #1a2842;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group input::placeholder { color: #5a6e8a; }
.form-group select { color: #8899b3; background-color: #1a2842; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23D4A843' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { color: #333; background: #fff; }
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #D4A843;
  box-shadow: 0 0 0 3px rgba(212,168,67,0.2);
}
.consent-group { margin-bottom: 12px; }
.consent-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #8899b3;
  font-size: 0.8rem;
  line-height: 1.5;
  cursor: pointer;
  padding: 10px 12px;
  border: 1.5px solid #364b6e;
  border-radius: 10px;
  background: #1a2842;
  transition: border-color 0.2s;
}
.consent-label:has(input:checked) {
  border-color: #D4A843;
}
.consent-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 1px;
  accent-color: #D4A843;
  cursor: pointer;
  -webkit-appearance: checkbox;
}
.interest-privacy {
  text-align: center;
  color: #5a6e8a;
  font-size: 0.75rem;
  margin-top: 12px;
}
.interest-privacy a { color: #8899b3; }
.interest-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background-color: #D4A843;
  background-image: linear-gradient(135deg, #D4A843, #E8C06A);
  color: #1B2A4A;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 24px;
  letter-spacing: 0.02em;
  -webkit-appearance: none;
}
.interest-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.35);
}
.interest-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
/* duplicate removed - .interest-privacy defined above */
.interest-msg-spacer {
}
.interest-msg {
  text-align: center;
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.4em;
}
.interest-msg.success { color: #4ADE80; }
.interest-msg.error { color: #F87171; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .anim-hero, .anim-hero-phone { opacity: 1; transform: none; transition: none; }
  .gold-gradient { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
