/* ============================================
   PILOTE LANDING PAGE — Apple-inspired clean design
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --bg-secondary: #f5f5f7;
  --bg-dark: #000000;
  --bg-dark-secondary: #1d1d1f;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-muted: #86868b;
  --text-light: #f5f5f7;
  --accent: #0071e3;
  --accent-hover: #0077ED;
  --border: rgba(0,0,0,0.06);
  --border-dark: rgba(255,255,255,0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --font: -apple-system, BlinkMacSystemFont, 'Geist', 'Helvetica Neue', 'Segoe UI', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w: 1060px;
}

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

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

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

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

.text-gradient {
  background: linear-gradient(90deg, #5ac8fa, #0071e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === REVEAL ANIMATION (Apple-style subtle fade-in) === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.28, 0.11, 0.32, 1),
              transform 0.9s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === NAVBAR (Apple-style frosted glass) === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0.5px 0 rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.75;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--accent); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-login {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav-login:hover { color: var(--accent); }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-mobile .nav-cta {
  text-align: center;
  margin-top: 8px;
}

/* === BUTTONS (Apple-style) === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  background: var(--accent-hover);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 100px;
  background: transparent;
  color: var(--accent);
  font-weight: 500;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.btn-ghost:hover { color: var(--accent-hover); }
.btn-ghost svg { width: 16px; height: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 100px;
  background: transparent;
  color: var(--accent);
  font-weight: 500;
  font-size: 17px;
  border: 1.5px solid var(--accent);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn-lg { padding: 14px 32px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* Dark section buttons */
.section-dark .btn-primary {
  background: #fff;
  color: #1d1d1f;
}
.section-dark .btn-primary:hover {
  background: #f5f5f7;
}
.section-dark .btn-ghost {
  color: #5ac8fa;
}
.section-dark .btn-ghost:hover {
  color: #7dd5fb;
}
.section-dark .btn-outline {
  color: #5ac8fa;
  border-color: #5ac8fa;
}
.section-dark .btn-outline:hover {
  background: #5ac8fa;
  color: #fff;
}

/* === HERO (Apple-style — full viewport, centered, dark) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text-light);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(0,113,227,0.15) 0%, transparent 60%);
  animation: pulseGlow 8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scale(1.05); }
}
.hero-grid {
  display: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #30d158;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: #f5f5f7;
}
.hero .text-gradient {
  background: linear-gradient(90deg, #5ac8fa, #0071e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 21px);
  color: #86868b;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero .btn-primary {
  background: #fff;
  color: #1d1d1f;
}
.hero .btn-primary:hover {
  background: #f5f5f7;
}
.hero .btn-ghost {
  color: #5ac8fa;
}
.hero .btn-ghost:hover {
  color: #7dd5fb;
}

/* Metrics */
.hero-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
.metric { text-align: center; }
.metric-value {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f5f5f7;
}
.metric-suffix {
  font-size: 40px;
  font-weight: 700;
  color: #5ac8fa;
}
.metric-label {
  display: block;
  font-size: 12px;
  color: #86868b;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.metric-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* Hero visual — fake dashboard */
.hero-visual {
  position: relative;
  max-width: 860px;
  margin: 56px auto 0;
}
.hero-screen {
  background: #1d1d1f;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.7);
  transform: perspective(1200px) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.hero-screen:hover { transform: perspective(1200px) rotateX(0deg); }
.hero-screen--real {
  background: none;
  border: none;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.7);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 480px;
}
.hero-screenshot {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top left;
}
.screen-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.screen-dots {
  display: flex;
  gap: 6px;
}
.screen-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.screen-dots span:nth-child(1) { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #28c840; }
.screen-url {
  font-size: 12px;
  color: #86868b;
  background: rgba(255,255,255,0.05);
  padding: 4px 14px;
  border-radius: 6px;
  flex: 1;
  text-align: center;
}
.screen-body {
  display: flex;
  min-height: 300px;
}
.screen-sidebar {
  width: 56px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sb-item {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  transition: 0.3s;
}
.sb-item.active { background: #0071e3; }
.screen-main {
  flex: 1;
  padding: 20px;
}
.screen-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.sc-card {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.sc-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.sc-label {
  font-size: 11px;
  color: #86868b;
  margin-top: 2px;
}
.sc-purple .sc-value { color: #0071e3; }
.sc-blue .sc-value { color: #64d2ff; }
.sc-green .sc-value { color: #30d158; }
.sc-orange .sc-value { color: #ffd60a; }
.screen-chart {
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
}
.chart-svg { width: 100%; height: auto; }

.hero-glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,113,227,0.12), transparent 70%);
  pointer-events: none;
}

/* === SOCIAL PROOF (light) === */
.social-proof {
  padding: 64px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.sp-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.sp-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.sp-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.sp-stat iconify-icon { color: var(--text-muted); }

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--text);
}
.section-subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 400;
}

/* Dark section headers */
.section-dark .section-label { color: #2997ff; }
.section-dark .section-title { color: #f5f5f7; }
.section-dark .section-subtitle { color: #86868b; }

/* === FEATURES (light background, Apple card style) === */
.features {
  padding: 120px 0;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-secondary);
  border: none;
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.feature-card:hover {
  transform: scale(1.02);
}
.feature-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  background: var(--bg-dark);
  color: var(--text-light);
}
.feature-large p { color: #86868b; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}
.feature-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fv-bar {
  height: 6px;
  border-radius: 100px;
  opacity: 0.9;
  transition: width 1.5s cubic-bezier(0.28, 0.11, 0.32, 1);
}

/* === SHOWCASE (Driver App — dark section) === */
.showcase {
  padding: 120px 0;
  background: var(--bg-dark);
  color: var(--text-light);
}
.showcase > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase .section-label { color: #2997ff; }
.showcase .section-title { color: #f5f5f7; }
.showcase .section-subtitle { color: #86868b; }
.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #86868b;
  font-weight: 500;
}
.showcase-list li iconify-icon { color: #30d158; }

/* Phone mockup */
.phone-frame {
  width: 260px;
  margin: 0 auto;
  background: #2d2d2d;
  border-radius: 44px;
  border: 3px solid #3a3a3c;
  padding: 12px;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.5);
}
.phone-frame--real {
  background: none;
  border: none;
  padding: 0;
  width: 280px;
}
.phone-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.5);
}
.phone-notch {
  width: 90px;
  height: 22px;
  background: #2d2d2d;
  margin: 0 auto 10px;
  border-radius: 0 0 14px 14px;
}
.phone-screen {
  background: #1c1c1e;
  border-radius: 32px;
  overflow: hidden;
}
.ps-header {
  background: linear-gradient(135deg, #0071e3, #5ac8fa);
  padding: 32px 20px 24px;
  text-align: center;
}
.ps-greeting {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 6px;
}
.ps-amount {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ps-label {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}
.ps-card {
  padding: 20px;
}
.ps-card-title {
  font-size: 12px;
  font-weight: 600;
  color: #86868b;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ps-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ps-action {
  padding: 16px 8px;
  border-radius: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ps-action span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

/* === HOW IT WORKS (light, clean) === */
.how {
  padding: 120px 0;
  background: var(--bg-secondary);
}
.steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
}
.step-number {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
}
.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.step-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}
.step-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-left: 36px;
  border-radius: 1px;
}

/* === PRICING (white, Apple-style cards) === */
.pricing {
  padding: 120px 0;
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-secondary);
  border: none;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.pricing-card:hover {
  transform: scale(1.02);
}
.pricing-featured {
  background: var(--bg-dark);
  color: var(--text-light);
  transform: none;
}
.pricing-featured:hover { transform: scale(1.02); }
.pricing-featured .pc-desc,
.pricing-featured .pc-features li { color: #86868b; }
.pricing-featured .pc-currency,
.pricing-featured .pc-period { color: #86868b; }
.pricing-featured .btn-primary {
  background: #fff;
  color: #1d1d1f;
}
.pricing-featured .btn-primary:hover {
  background: #f5f5f7;
}
.pc-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pc-header {
  margin-bottom: 32px;
}
.pc-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.pc-currency {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.pc-amount {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.pc-period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.pc-desc {
  font-size: 14px;
  color: var(--text-muted);
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.pc-features li.disabled { color: var(--text-muted); opacity: 0.5; }

/* === FINAL CTA (dark, bold) === */
.final-cta {
  padding: 0;
}
.cta-box {
  position: relative;
  text-align: center;
  padding: 100px 40px;
  background: var(--bg-dark);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,113,227,0.12), transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  position: relative;
  color: #f5f5f7;
}
.cta-box p {
  color: #86868b;
  font-size: 19px;
  margin-bottom: 32px;
  position: relative;
}
.cta-box .btn-primary {
  position: relative;
  background: #fff;
  color: #1d1d1f;
}
.cta-box .btn-primary:hover {
  background: #f5f5f7;
}

/* === FOOTER (clean, minimal) === */
.footer {
  padding: 64px 0 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 56px;
  width: auto;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-column: span 2; grid-template-columns: 1fr; }
  .showcase > .container { grid-template-columns: 1fr; text-align: center; }
  .showcase-list { align-items: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .screen-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .hero-title { font-size: 40px; }
  .hero-metrics { gap: 28px; }
  .metric-value, .metric-suffix { font-size: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .step { flex-direction: column; gap: 12px; }
  .step-number { width: auto; }
  .step-line { margin-left: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 479px) {
  .hero { padding: 100px 16px 48px; }
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 16px; }
  .hero-metrics { flex-direction: column; gap: 16px; }
  .metric-divider { display: none; }
  .screen-sidebar { display: none; }
  .screen-cards { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 64px 24px; }
}
