/* ═══════════════════════════════════════════════════════════════════════════
   Veyron — AI Companion | Landing Page Styles
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CSS Variables ────────────────────────────────────────────────────── */
:root {
  --brand-primary: #0E7490;
  --brand-dark: #0C2B38;
  --brand-light: #22B8D1;
  --brand-glow: rgba(14, 116, 144, 0.4);
  --brand-glow-strong: rgba(34, 184, 209, 0.6);

  --bg: #0A0A0A;
  --bg-alt: #0D0D0D;
  --surface: #131313;
  --surface-2: #1A1A1A;
  --surface-3: #222222;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(34, 184, 209, 0.25);

  --text: #F5F5F5;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(14, 116, 144, 0.15);
  --shadow-btn: 0 4px 20px rgba(14, 116, 144, 0.4);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* ─── Utility ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(14, 116, 144, 0.1);
  border: 1px solid rgba(14, 116, 144, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.section-label svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-title .gradient-text {
  background: linear-gradient(135deg, var(--brand-light), var(--brand-primary), #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Particle Canvas ──────────────────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── Navigation ───────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.navbar-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(14, 116, 144, 0.3);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.navbar-links a:hover {
  color: var(--text);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-light);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff !important;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(14, 116, 144, 0.5);
}

.navbar-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-bg-gradient .orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-primary), transparent 70%);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero-bg-gradient .orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--brand-light), transparent 70%);
  bottom: -10%;
  left: -5%;
  animation-delay: -4s;
}

.hero-bg-gradient .orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -8s;
  opacity: 0.2;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(14, 116, 144, 0.12);
  border: 1px solid rgba(14, 116, 144, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-light);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--brand-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-primary) 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
  text-decoration: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-primary));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(14, 116, 144, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary svg,
.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: inherit;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  background: rgba(14, 116, 144, 0.08);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-light);
  letter-spacing: -0.02em;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 280px;
  perspective: 1000px;
}

.phone-frame {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(14, 116, 144, 0.15);
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotateY(0deg);
  }

  50% {
    transform: translateY(-15px) rotateY(2deg);
  }
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 9 / 19.5;
  position: relative;
}

.phone-screen-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-alt), var(--surface));
}

/* Chat mockup inside phone */
.mock-statusbar {
  padding: 10px 16px 6px;
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.mock-header {
  padding: 8px 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.mock-header-text {
  flex: 1;
}

.mock-header-text .name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
}

.mock-header-text .status {
  font-size: 0.55rem;
  color: #00C853;
}

.mock-chat {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.mock-bubble {
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 0.6rem;
  line-height: 1.5;
  max-width: 85%;
  animation: fadeInUp 0.5s ease both;
}

.mock-bubble.user {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.mock-bubble.ai {
  background: var(--surface-2);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.mock-dots {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  align-self: flex-start;
}

.mock-dots span {
  width: 6px;
  height: 6px;
  background: var(--brand-light);
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite;
}

.mock-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.mock-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {

  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.mock-inputbar {
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-input {
  flex: 1;
  height: 28px;
  background: var(--surface-3);
  border-radius: 14px;
  border: none;
  padding: 0 12px;
  font-size: 0.55rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.mock-send {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-send svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

/* Floating rings */
.phone-ring {
  position: absolute;
  border: 1px solid rgba(14, 116, 144, 0.15);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}

.phone-ring-1 {
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.phone-ring-2 {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -1.5s;
}

.phone-ring-3 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -3s;
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* ─── Features ─────────────────────────────────────────────────────────── */
.features {
  background: var(--bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), var(--brand-light), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Coming Soon variant */
.feature-card--coming-soon {
  border-style: dashed;
  border-color: rgba(14, 116, 144, 0.25);
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(14, 116, 144, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(14, 116, 144, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(34, 184, 209, 0.5);
  }
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(14, 116, 144, 0.1);
  border: 1px solid rgba(14, 116, 144, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── How It Works ─────────────────────────────────────────────────────── */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.how-it-works-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-light), var(--brand-primary));
  opacity: 0.2;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-btn);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ─── Download Section ─────────────────────────────────────────────────── */
.download {
  position: relative;
  overflow: hidden;
}

.download-card {
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.08), rgba(12, 43, 56, 0.15));
  border: 1px solid rgba(14, 116, 144, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(14, 116, 144, 0.06), transparent 50%);
  animation: downloadGlow 8s ease-in-out infinite;
}

@keyframes downloadGlow {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }
}

.download-card>* {
  position: relative;
  z-index: 1;
}

.download-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  box-shadow: 0 0 50px rgba(14, 116, 144, 0.3);
}

.download-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.download-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
  text-decoration: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.download-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-primary), var(--brand-light));
  border-radius: inherit;
  z-index: -1;
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.download-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 50px rgba(14, 116, 144, 0.5);
}

.download-btn svg {
  width: 22px;
  height: 22px;
  transition: var(--transition);
}

.download-btn:hover svg {
  transform: translateY(2px);
}

.download-info {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.download-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.download-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-light);
}

/* ─── Footer ───────────────────────────────────────────────────────────── */
.footer {
  padding: 70px 0 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), var(--brand-light), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(14, 116, 144, 0.2);
}

.footer-about-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--brand-light);
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-contact-item svg {
  color: var(--brand-light);
  flex-shrink: 0;
}

.footer-contact-item:hover {
  color: var(--brand-light);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── Scroll Reveal ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .phone-ring {
    display: none;
  }

  .how-it-works-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transition: var(--transition-slow);
    border-left: 1px solid var(--border);
  }

  .navbar-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    gap: 24px;
  }

  .download-card {
    padding: 40px 24px;
  }

  .download-info {
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .phone-mockup {
    width: 240px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}