/* ========================================
   InvoicePro Desktop - Premium Marketing Site
   ======================================== */

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

:root {
  /* Core palette - matches the app */
  --brand: #3B82F6;
  --brand-light: #60A5FA;
  --brand-dark: #2563EB;
  --brand-deeper: #1D4ED8;

  /* Dark tones for premium feel */
  --navy: #0B1120;
  --navy-light: #111827;
  --navy-mid: #1E293B;
  --slate: #334155;

  /* Accents */
  --emerald: #10B981;
  --amber: #F59E0B;
  --violet: #8B5CF6;
  --rose: #F43F5E;
  --cyan: #06B6D4;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Effects */
  --glow: 0 0 60px rgba(59, 130, 246, 0.15);
  --glow-strong: 0 0 80px rgba(59, 130, 246, 0.25);
  --shadow-soft: 0 2px 8px rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card: 0 4px 16px rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.08);
  --shadow-heavy: 0 8px 32px rgba(0,0,0,0.12), 0 24px 60px rgba(0,0,0,0.15);
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.08);

  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- SALE BANNER ---- */
.sale-banner {
  background: var(--navy);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.sale-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sale-fire { font-size: 16px; }

.sale-strikethrough {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 13px;
}

.sale-badge {
  background: var(--brand);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(11, 17, 32, 0.95);
}

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

.nav-logo { display: flex; align-items: center; }

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-mark svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-400);
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: var(--brand) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 7px 18px !important;
  margin-left: 8px !important;
}

.nav-cta:hover {
  background: var(--brand-dark) !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-400);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

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

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.section-header p {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  padding: 170px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: 38px;
}

/* Subtle grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

/* Glow orb */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--brand-light);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(96, 165, 250, 0); }
}

.hero h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--brand-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-subtitle strong {
  color: var(--emerald);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--gray-400);
  font-weight: 500;
}

.trust-item svg { flex-shrink: 0; }

/* Hero Screenshot */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-screenshot-frame {
  width: 100%;
  max-width: 520px;
  background: var(--navy-mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--glow-strong), var(--shadow-heavy);
  transition: transform 0.6s ease;
}

.hero-screenshot-frame:hover {
  transform: translateY(-4px);
}

.screenshot-bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--glass-border);
}

.screenshot-bar .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.screenshot-bar .dot.r { background: #EF4444; }
.screenshot-bar .dot.y { background: #F59E0B; }
.screenshot-bar .dot.g { background: #10B981; }

.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 12px;
  min-height: 320px;
  background: var(--navy-light);
}

.screenshot-placeholder p {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 500;
}

/* ---- FEATURES ---- */
.features {
  padding: 110px 0;
  background: var(--white);
}

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

.feature-card {
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.35s ease;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(59,130,246,0.03), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-card), var(--glow);
  transform: translateY(-4px);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-icon.blue { background: #EFF6FF; color: var(--brand); }
.feature-icon.green { background: #ECFDF5; color: var(--emerald); }
.feature-icon.purple { background: #F5F3FF; color: var(--violet); }
.feature-icon.orange { background: #FFFBEB; color: var(--amber); }
.feature-icon.red { background: #FFF1F2; color: var(--rose); }
.feature-icon.teal { background: #ECFEFF; color: var(--cyan); }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ---- WHAT'S INCLUDED ---- */
.included {
  padding: 110px 0;
  background: var(--gray-50);
  position: relative;
}

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

.included-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.25s ease;
}

.included-item:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.06);
  transform: translateX(4px);
}

.included-check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #34D399);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.included-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.included-item span {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ---- SCREENSHOTS ---- */
.screenshots {
  padding: 110px 0;
  background: var(--white);
}

.screenshots-tabs-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.screenshots-tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--gray-100);
  border-radius: 100px;
  padding: 4px;
}

.screenshot-tab {
  padding: 9px 22px;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.screenshot-tab:hover {
  color: var(--gray-700);
}

.screenshot-tab.active {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: var(--shadow-soft);
}

.screenshot-display {
  max-width: 880px;
  margin: 0 auto;
}

.screenshot-frame {
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  border: 1px solid rgba(255,255,255,0.06);
}

.screenshot-frame-bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.screenshot-frame-bar .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.screenshot-frame-bar .dot.red { background: #EF4444; }
.screenshot-frame-bar .dot.yellow { background: #F59E0B; }
.screenshot-frame-bar .dot.green { background: #10B981; }

.screenshot-image {
  background: var(--navy-light);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-placeholder-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px;
}

.screenshot-placeholder-large p {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 500;
}

.screenshot-placeholder-large span {
  font-size: 13px;
  color: var(--gray-600);
}

/* ---- PRICING ---- */
.pricing {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.pricing .section-label { color: var(--brand-light); }
.pricing .section-header h2 { color: var(--white); }
.pricing .section-header p { color: var(--gray-400); }

.pricing-card {
  max-width: 480px;
  margin: 0 auto 72px;
  background: var(--navy-mid);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(59, 130, 246, 0.15);
  overflow: hidden;
  box-shadow: var(--glow-strong);
  position: relative;
  z-index: 1;
}

.pricing-badge {
  background: linear-gradient(135deg, var(--brand), var(--violet));
  color: var(--white);
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pricing-header {
  padding: 32px 36px 0;
  text-align: center;
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.pricing-desc {
  color: var(--gray-400);
  font-size: 14px;
  margin-top: 4px;
}

.pricing-price {
  text-align: center;
  padding: 28px 36px 24px;
}

.price-old {
  font-size: 22px;
  color: var(--gray-500);
  text-decoration: line-through;
  font-weight: 500;
  margin-right: 8px;
}

.price-current {
  font-size: 60px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}

.price-period {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 8px;
  font-weight: 500;
}

.pricing-note {
  text-align: center;
  padding: 0 36px 28px;
  font-size: 13px;
  color: var(--emerald);
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  padding: 0 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-300);
}

.pricing-features li svg { flex-shrink: 0; }

.pricing-card .btn {
  margin: 0 36px 28px;
  width: calc(100% - 72px);
}

.pricing-guarantee {
  text-align: center;
  padding: 0 36px 36px;
  font-size: 12.5px;
  color: var(--gray-500);
}

/* Comparison */
.comparison {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.comparison h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comparison-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comparison-item.competitor {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.comparison-item.ours {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.comparison-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
}

.comparison-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}

.comparison-annual {
  font-size: 12.5px;
  color: var(--gray-500);
}

.comparison-item.ours .comparison-annual {
  color: var(--brand-light);
  font-weight: 600;
}

/* ---- UPDATES & SUPPORT ---- */
.updates {
  padding: 110px 0;
  background: var(--white);
}

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

.update-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-xl);
  background: var(--gray-50);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.update-card:hover {
  border-color: var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.update-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.update-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.update-card p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ---- FAQ ---- */
.faq {
  padding: 110px 0;
  background: var(--white);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
  background: var(--white);
}

.faq-item:hover { border-color: var(--gray-300); }

.faq-item.open {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.06);
}

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

.faq-question:hover { background: var(--gray-50); }

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

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--brand);
}

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

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---- DOWNLOAD CTA ---- */
.download {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.download-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius-2xl);
  padding: 60px 48px;
  box-shadow: var(--shadow-heavy), var(--glow);
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.download-card h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  position: relative;
}

.download-card > p {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 32px;
  line-height: 1.6;
  position: relative;
}

.download-price {
  margin-bottom: 32px;
  position: relative;
}

.download-price .price-old {
  color: var(--gray-500);
}

.download-price .price-current {
  color: var(--white);
  font-size: 52px;
}

.download-price .price-label {
  display: block;
  color: var(--amber);
  font-weight: 700;
  font-size: 14px;
  margin-top: 8px;
}

.download-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  position: relative;
}

.download-buttons .btn-primary {
  background: var(--white);
  color: var(--navy);
}

.download-buttons .btn-primary:hover {
  background: var(--gray-100);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

.download-note {
  font-size: 13px;
  color: var(--gray-500);
  position: relative;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

.footer-brand .logo-mark {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 280px;
  color: var(--gray-500);
}

.footer-links h4 {
  color: var(--gray-300);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  padding: 4px 0;
  transition: color 0.2s ease;
}

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

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

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.07s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.07s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.14s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.21s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.28s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.42s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.49s; }
.stagger-children .reveal:nth-child(10) { transition-delay: 0.56s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-visual { order: -1; }
  .hero-screenshot-frame { max-width: 480px; }
  .hero h1 { font-size: 42px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-launch-badge { margin-left: auto; margin-right: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .updates-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .sale-banner { font-size: 13px; padding: 8px 12px; }
  .sale-fire { display: none; }
  .navbar { top: 34px; }
  .hero { padding: 150px 0 72px; }
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 8px; align-items: center; }
  .section-header h2 { font-size: 28px; }
  .section-header p { font-size: 15px; }
  .features-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .price-current { font-size: 48px !important; }
  .comparison-grid { grid-template-columns: 1fr; }
  .updates-grid { grid-template-columns: 1fr; }
  .download-card { padding: 48px 28px; }
  .download-card h2 { font-size: 26px; }
  .download-buttons { flex-direction: column; align-items: center; }
  .download-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--glass-border);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-cta { text-align: center; margin-top: 8px; margin-left: 0 !important; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .feature-card { padding: 28px 22px; }
  .pricing-card .btn { margin: 0 24px 24px; width: calc(100% - 48px); }
  .pricing-features { padding: 0 24px 24px; }
  .pricing-header { padding: 28px 24px 0; }
  .pricing-price { padding: 24px 24px 20px; }
}
