/* ============================================
   Floor40 — Marketing Website
   Giga.ai aesthetic: dark hero → light content
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --primary: #0066FF;
  --primary-hover: #0052CC;
  --accent: #00D9A3;
  --accent-hover: #00B886;
  --black: #000000;
  --dark: #050505;
  --dark-brown: #0f0e0d;
  --card-dark: #111111;
  --card-dark-hover: #191919;
  --border-dark: rgba(255,255,255,0.1);
  --white: #FFFFFF;
  --off-white: #fefcfb;
  --card-light: #FFFFFF;
  --card-light-hover: #f8f8f8;
  --border-light: rgba(5,5,5,0.08);
  --text-white: #FFFFFF;
  --text-white-secondary: rgba(255,255,255,0.6);
  --text-white-muted: rgba(255,255,255,0.35);
  --text-dark: #050505;
  --text-dark-secondary: rgba(5,5,5,0.55);
  --text-dark-muted: rgba(5,5,5,0.35);
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(42px, 6vw, 80px); }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 18px; font-weight: 600; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.label-light { color: var(--text-white-muted); }

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(2.8); opacity: 0; }
}
.label-accent { color: var(--accent); }
.label-dark { color: var(--text-dark-muted); }

.subtext {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  font-weight: 400;
}

/* --- Buttons (Pill-shaped like Giga) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

/* White button on dark backgrounds */
.btn-primary {
  padding: 14px 32px;
  background: var(--dark);
  color: var(--white);
}
.btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

/* White button variant for dark sections */
.btn-primary-white {
  padding: 14px 32px;
  background: var(--white);
  color: var(--black);
}
.btn-primary-white:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-1px);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: rgba(5,5,5,0.2);
  background: rgba(5,5,5,0.03);
}

/* Outline for dark sections */
.btn-outline-white {
  padding: 14px 32px;
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-dark);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

.btn-accent {
  padding: 14px 32px;
  background: var(--accent);
  color: var(--black);
  font-weight: 600;
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Navigation (Floating, Giga-style) --- */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1200px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-dark);
  border-radius: 9999px;
  padding: 0 8px 0 24px;
}

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

.logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white-secondary);
  padding: 8px 16px;
  border-radius: 9999px;
  transition: all var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--text-white);
  background: rgba(255,255,255,0.08);
}

.header-actions { display: flex; align-items: center; }
.header-actions .btn-primary {
  background: var(--white);
  color: var(--black);
}
.header-actions .btn-primary:hover {
  background: rgba(255,255,255,0.85);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 20px;
  cursor: pointer;
  padding: 8px 16px;
}

/* --- Hero (Dark, full viewport, Giga-style) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--black);
  color: var(--text-white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, transparent, var(--off-white));
  pointer-events: none;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-content h1 {
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--text-white);
}

.hero-content .subtext {
  color: var(--text-white-secondary);
  max-width: 520px;
  margin: 0 auto 48px;
}

.hero-content .btn-group {
  justify-content: center;
}

/* Hero buttons: white on dark */
.hero .btn-primary {
  background: var(--white);
  color: var(--black);
}
.hero .btn-primary:hover {
  background: rgba(255,255,255,0.85);
}
.hero .btn-outline {
  color: var(--text-white);
  border-color: var(--border-dark);
}
.hero .btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

/* Hero integration logos */
.hero-integrations {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 80px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 10px 28px;
}
.hero-integrations span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-white-muted);
  letter-spacing: 0.04em;
}
.hero-logo {
  height: 24px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.hero-logo:hover {
  opacity: 1;
}

/* Shorter hero for sub-pages */
.hero-short {
  min-height: auto;
  padding: 180px 24px 100px;
}

.hero-short::after { display: none; }

/* --- Light Sections (default content) --- */
.section-light {
  background: var(--off-white);
  color: var(--text-dark);
  padding: 120px 0;
}

.section-light .subtext { color: var(--text-dark-secondary); }
.section-light .label { color: var(--text-dark-muted); }

/* --- Dark Sections (for contrast bands) --- */
.section-dark {
  background: var(--black);
  color: var(--text-white);
  padding: 120px 0;
  position: relative;
}

.section-dark .subtext { color: var(--text-white-secondary); }

/* --- Stats Bar (light) --- */
.stats-bar {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-light);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 12px;
}

.stat-value {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-dark);
}

.stat-value-accent { color: var(--accent); }


/* --- Feature Sections (Alternating layout, light bg) --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-row.reverse .feature-content { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-content h2 { margin-bottom: 24px; }

.feature-content .subtext {
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
}

.feature-list.light li { color: var(--text-dark-secondary); }
.feature-list.dark li { color: var(--text-white-secondary); }

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}

.check-icon-light {
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary);
}

.check-icon-dark {
  background: rgba(0, 217, 163, 0.15);
  color: var(--accent);
}

.feature-visual {
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.feature-visual-light {
  background: #f0f0f0;
  border: 1px solid var(--border-light);
}

.feature-visual-dark {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder {
  text-align: center;
  padding: 40px;
  font-size: 14px;
}

.section-light .placeholder { color: var(--text-dark-muted); }
.section-dark .placeholder { color: var(--text-white-muted); }

.placeholder svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  opacity: 0.25;
}

/* --- Feature Grid (Cards on light bg) --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-light);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--card-light);
  padding: 48px;
  transition: background var(--transition);
}

.feature-card:hover {
  background: var(--card-light-hover);
}

.feature-card-icon {
  font-size: 32px;
  margin-bottom: 28px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  color: var(--text-dark);
}

.feature-card > p {
  color: var(--text-dark-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card ul li {
  font-size: 14px;
  color: var(--text-dark-secondary);
  padding-left: 20px;
  position: relative;
}

.feature-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* --- Testimonial / Spotlight (dark band) --- */
.spotlight {
  padding: 120px 0;
  background: var(--black);
  color: var(--text-white);
}

.spotlight-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.spotlight-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  margin-bottom: 12px;
}

.spotlight-number {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 32px;
}

.spotlight-card blockquote {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: var(--text-white-secondary);
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 400;
}

.spotlight-card cite {
  font-size: 14px;
  color: var(--text-white-muted);
  font-style: normal;
}

/* --- Pricing (light bg) --- */
.pricing-section {
  padding: 0 0 120px;
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 60px;
}

.pricing-card {
  background: var(--card-light);
  padding: 48px;
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
  color: var(--text-dark);
}

.pricing-card:hover { background: var(--card-light-hover); }

.pricing-card.featured { position: relative; }

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.pricing-card .price {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card .price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark-muted);
}

.pricing-card .price-annual {
  font-size: 14px;
  color: var(--text-dark-muted);
  margin-bottom: 32px;
}

.pricing-card .price-annual strong { color: var(--primary); }

.pricing-card .divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 32px;
}

.pricing-card ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

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

.pricing-card ul li .check {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 1px;
}

.pricing-card .btn { width: 100%; }

/* Add-on cards (light bg) */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.addon-card {
  background: var(--card-light);
  padding: 40px;
  color: var(--text-dark);
}

.addon-card h3 { margin-bottom: 8px; font-size: 20px; }

.addon-card .price {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.addon-card .price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark-muted);
}

.addon-card .price-annual {
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
}

.addon-card .price-annual strong { color: var(--primary); }

.addon-card > p {
  color: var(--text-dark-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* --- FAQ (light bg) --- */
.faq-section {
  padding: 120px 0;
  background: var(--off-white);
  color: var(--text-dark);
}

.faq-grid {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border-light);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  background: var(--card-light);
  padding: 24px 32px;
}

.faq-item summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--text-dark-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

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

/* --- Download (light bg) --- */
.download-card {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 64px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.download-card .os-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.download-card h3 { margin-bottom: 8px; color: var(--text-dark); }
.download-card > p { color: var(--text-dark-secondary); margin-bottom: 32px; }

.file-size {
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-top: 16px;
}

.system-reqs,
.install-steps {
  max-width: 600px;
  margin: 0 auto 60px;
}

.system-reqs h3,
.install-steps h3 { margin-bottom: 24px; }

.system-reqs ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.system-reqs ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark-secondary);
}

.system-reqs ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.install-steps ol {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.install-steps ol li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-dark-secondary);
}

.install-steps ol li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.coming-soon {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 60px;
  border-top: 1px solid var(--border-light);
}

.coming-soon h3 { margin-bottom: 20px; }

.coming-soon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.coming-soon-item {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: var(--text-dark-secondary);
}

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(0,102,255,0.08);
  color: var(--primary);
  letter-spacing: 0.03em;
}

/* --- Contact (light bg) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 { margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--text-dark-secondary); }
.contact-item a { color: var(--primary); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-dark);
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--card-light);
  color: var(--text-dark);
}

/* --- CTA Section (dark band for contrast) --- */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: var(--black);
  color: var(--text-white);
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 16px;
  color: var(--text-white);
}

.cta-inner .subtext {
  color: var(--text-white-secondary);
  margin-bottom: 40px;
}

.cta-inner .btn-group { justify-content: center; }

/* CTA buttons: white on dark */
.cta-section .btn-primary {
  background: var(--white);
  color: var(--black);
}
.cta-section .btn-primary:hover {
  background: rgba(255,255,255,0.85);
}
.cta-section .btn-outline {
  color: var(--text-white);
  border-color: var(--border-dark);
}
.cta-section .btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

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

.section-header h2 { margin-bottom: 16px; }

.section-header .subtext {
  max-width: 500px;
  margin: 0 auto;
}

/* --- Footer (dark) --- */
.footer {
  border-top: 1px solid var(--border-dark);
  padding: 64px 0 40px;
  background: var(--black);
  color: var(--text-white);
}

.footer .logo { color: var(--text-white); }

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

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p {
  font-size: 14px;
  color: var(--text-white-muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-white-muted);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-white-secondary);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text-white); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-white-muted);
}

/* --- Legal Pages (light bg) --- */
.legal-page {
  padding: 0 0 80px;
  background: var(--off-white);
  color: var(--text-dark);
}

.legal-content {
  max-width: 700px;
  margin: 0 auto;
}

.legal-content h1 { margin-bottom: 8px; }

.legal-content .last-updated {
  font-size: 14px;
  color: var(--text-dark-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

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

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 15px;
  color: var(--text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

.legal-content ol li { list-style: decimal; }
.legal-content a { color: var(--primary); text-decoration: underline; }

/* --- Divider --- */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  z-index: 999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 16px;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white-secondary);
  border-radius: 12px;
  transition: all var(--transition);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .feature-row.reverse .feature-content { order: 1; }
  .feature-row.reverse .feature-visual { order: 2; }

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

@media (max-width: 768px) {
  .nav { display: none; }
  .header-actions .btn { display: none; }
  .mobile-menu-btn { display: block; }

  .hero { min-height: auto; padding: 140px 24px 80px; }
  .hero-short { padding: 140px 24px 60px; }

  .section-dark,
  .section-light,
  .cta-section,
  .faq-section,
  .spotlight { padding: 80px 0; }

  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item:not(:last-child) {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
  }

  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .coming-soon-grid { grid-template-columns: 1fr; }
  .download-card { padding: 40px 24px; }
  .spotlight-card { padding: 0 12px; }
}
