/* ═══════════════════════════════════════════════════════════════════
   Proximity Lock — Professional Website
   Premium Design System + All Styles
   ═══════════════════════════════════════════════════════════════════ */

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

/* ── CSS Custom Properties ───────────────────────────────────────── */
:root {
  /* Colors — matching app's dark theme */
  --bg-primary: #06080f;
  --bg-secondary: #0a0e1a;
  --bg-tertiary: #0d1220;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-strong: rgba(255, 255, 255, 0.08);

  --accent: #007AFF;
  --accent-glow: rgba(0, 122, 255, 0.25);
  --accent-subtle: rgba(0, 122, 255, 0.08);
  --accent-hover: #339aff;

  --green: #30D158;
  --green-glow: rgba(48, 209, 88, 0.2);
  --green-subtle: rgba(48, 209, 88, 0.08);
  --red: #FF453A;
  --red-glow: rgba(255, 69, 58, 0.2);
  --yellow: #FFD60A;
  --orange: #FF9F0A;
  --purple: #BF5AF2;
  --teal: #64D2FF;
  --cyan: #32D7A0;

  --text-primary: #f5f5f7;
  --text-secondary: rgba(245, 245, 247, 0.6);
  --text-tertiary: rgba(245, 245, 247, 0.35);
  --text-accent: var(--accent);

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(0, 122, 255, 0.2);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }

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

/* ── Section ─────────────────────────────────────────────────────── */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header.center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header.center .section-label {
  justify-content: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.section-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Scroll Reveal Animation ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(6, 8, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--transition-fast);
}

.nav-links a:hover::after { width: 100%; }

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

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px;
}

.lang-toggle button {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.lang-toggle button.active {
  background: var(--accent);
  color: white;
}

/* Scroll progress bar */
.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  width: 0%;
  transition: width 0.1s linear;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: btn-shimmer 3s ease-in-out infinite;
}

@keyframes btn-shimmer {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Animated background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ── Particle Canvas ────────────────────────────────────────────── */
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

/* ── Aurora Gradient Background — Ultra Smooth ──────────────────── */
.hero-aurora {
  position: absolute;
  inset: -40%;
  width: 180%;
  height: 180%;
  background: 
    radial-gradient(ellipse 60% 40% at 25% 55%, rgba(0, 122, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 75% 35%, rgba(48, 209, 88, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 50% 75%, rgba(88, 86, 214, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 60% 45%, rgba(100, 210, 255, 0.035) 0%, transparent 55%);
  animation: aurora-drift 25s ease-in-out infinite alternate;
  filter: blur(60px);
  z-index: 0;
  will-change: transform;
}

@keyframes aurora-drift {
  0% {
    transform: translate(0%, 0%) scale(1);
  }
  50% {
    transform: translate(3%, -2%) scale(1.03);
  }
  100% {
    transform: translate(-2%, 1.5%) scale(0.97);
  }
}

/* ── Glow Pulse — subtle ambient breath ─────────────────────────── */
.hero-glow-pulse {
  position: absolute;
  top: 50%;
  left: 60%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.08) 0%, rgba(48, 209, 88, 0.02) 45%, transparent 70%);
  animation: glow-breathe 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes glow-breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.25;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.5;
  }
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

.hero-orb-1 {
  top: -15%;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
  animation: orb-drift-1 15s ease-in-out infinite alternate;
}

.hero-orb-2 {
  bottom: -20%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(48, 209, 88, 0.07) 0%, transparent 70%);
  animation: orb-drift-2 18s ease-in-out infinite alternate;
}

.hero-orb-3 {
  top: 35%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(88, 86, 214, 0.06) 0%, transparent 70%);
  animation: orb-drift-3 20s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -20px) scale(1.05); }
}

@keyframes orb-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-18px, 15px) scale(0.95); }
}

@keyframes orb-drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(12px, 20px) scale(1.03); }
}

/* Grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 70%);
  animation: grid-fade-in 2.5s ease-out forwards;
  opacity: 0;
}

@keyframes grid-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-subtle);
  border: 1px solid rgba(0, 122, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(48, 209, 88, 0); }
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--accent), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent-alt {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

/* ── Hero Text Line Entrance Animation ──────────────────────────── */
.hero-text-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: text-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-text-line:nth-child(1) { animation-delay: 0.3s; }
.hero-text-line:nth-child(3) { animation-delay: 0.5s; }
.hero-text-line:nth-child(5) { animation-delay: 0.7s; }

@keyframes text-slide-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-text-line {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-aurora,
  .hero-glow-pulse,
  .hero-gradient-orb {
    animation: none;
  }
  #particleCanvas {
    display: none;
  }
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-ctas .btn-primary {
  padding: 14px 28px;
  font-size: 15px;
}

.hero-ctas .btn-secondary {
  padding: 14px 28px;
  font-size: 15px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-chip svg {
  opacity: 0.6;
}

/* ── Hero Visual — Bluetooth Radar ───────────────────────────────── */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 400px;
}

.radar-container {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
}

.radar-ring-1 {
  width: 120px; height: 120px;
  border-color: rgba(0, 122, 255, 0.25);
  animation: radar-pulse 3s ease-out infinite;
}

.radar-ring-2 {
  width: 200px; height: 200px;
  border-color: rgba(0, 122, 255, 0.15);
  animation: radar-pulse 3s ease-out infinite 0.6s;
}

.radar-ring-3 {
  width: 300px; height: 300px;
  border-color: rgba(0, 122, 255, 0.08);
  animation: radar-pulse 3s ease-out infinite 1.2s;
}

@keyframes radar-pulse {
  0% { transform: translate(-50%, -50%) scale(0.85); opacity: 1; }
  60% { opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0; }
}

/* Radar sweep */
.radar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 122, 255, 0.08) 30deg,
    transparent 60deg
  );
  animation: radar-sweep-rotate 4s linear infinite;
}

@keyframes radar-sweep-rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.radar-center {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.9);
  border: 2px solid rgba(0, 122, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 0 30px rgba(0, 122, 255, 0.15);
}

/* Orbiting phone */
.radar-phone-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 200px; height: 200px;
  transform: translate(-50%, -50%);
  animation: phone-orbit 8s linear infinite;
}

.radar-phone-dot {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--green-glow), 0 0 40px rgba(48, 209, 88, 0.1);
  animation: phone-orbit-counter 8s linear infinite;
}

@keyframes phone-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes phone-orbit-counter {
  to { transform: translateX(-50%) rotate(-360deg); }
}

/* Signal particles */
.signal-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.signal-particle-1 {
  top: 25%; left: 30%;
  animation: particle-float 4s ease-in-out infinite;
}

.signal-particle-2 {
  top: 65%; right: 25%;
  animation: particle-float 5s ease-in-out infinite 1s;
}

.signal-particle-3 {
  bottom: 20%; left: 45%;
  animation: particle-float 6s ease-in-out infinite 2s;
}

@keyframes particle-float {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  50% { opacity: 0.8; transform: translateY(-15px) scale(1); }
}

/* Floating badges */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(10, 14, 26, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
  white-space: nowrap;
}

.float-badge-protected {
  top: 15%;
  right: 0;
  animation: float-badge 5s ease-in-out infinite;
  border-color: rgba(48, 209, 88, 0.2);
}

.float-badge-distance {
  bottom: 25%;
  left: -5%;
  animation: float-badge 6s ease-in-out infinite 1s;
  border-color: rgba(0, 122, 255, 0.2);
}

.float-badge-battery {
  bottom: 8%;
  right: 10%;
  animation: float-badge 7s ease-in-out infinite 2s;
  border-color: rgba(48, 209, 88, 0.2);
}

.float-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.float-badge-dot.green {
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}

.float-badge-icon {
  font-size: 14px;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════════════════
   STAT BAR
   ═══════════════════════════════════════════════════════════════════ */
.stat-bar {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.stat-bar .container {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   APP SHOWCASE
   ═══════════════════════════════════════════════════════════════════ */
.app-showcase {
  background: var(--bg-primary);
  overflow: hidden;
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  width: fit-content;
  margin: 0 auto 48px;
}

.showcase-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.showcase-tab:hover {
  color: var(--text-primary);
}

.showcase-tab.active {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.showcase-stage {
  position: relative;
  min-height: 500px;
}

.showcase-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  animation: panel-fade-in 0.5s ease;
}

.showcase-panel.active {
  display: flex;
}

@keyframes panel-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.showcase-devices {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.showcase-caption {
  text-align: center;
  max-width: 500px;
}

.showcase-caption h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.showcase-caption p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Device Frames ───────────────────────────────────────────────── */
.device-frame {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* iPhone Frame */
.iphone-frame {
  width: 260px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.iphone-frame img {
  border-radius: 24px;
  width: 100%;
}

.device-notch {
  width: 80px;
  height: 20px;
  background: #1a1a2e;
  border-radius: 0 0 14px 14px;
  margin: -12px auto 8px;
  position: relative;
  z-index: 2;
}

/* Mac Frame */
.mac-frame {
  width: 380px;
  background: #1a1a2e;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.mac-toolbar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mac-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mac-dot.red { background: #FF5F57; }
.mac-dot.yellow { background: #FEBC2E; }
.mac-dot.green { background: #28C840; }

.mac-frame img {
  width: 100%;
  display: block;
}

/* Small iPhone frame for feature sections */
.iphone-frame-small {
  width: 220px;
}

/* Mac frame for feature sections */
.mac-frame-feature {
  width: 340px;
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURE SECTION — Auto-Lock
   ═══════════════════════════════════════════════════════════════════ */
.features-autolock {
  background: var(--bg-secondary);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-grid-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.feature-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-screenshot-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Proximity rings around feature phone */
.proximity-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 122, 255, 0.12);
  animation: proximity-pulse 4s ease-out infinite;
}

.proximity-ring-1 { width: 280px; height: 280px; animation-delay: 0s; }
.proximity-ring-2 { width: 360px; height: 360px; animation-delay: 0.8s; }
.proximity-ring-3 { width: 440px; height: 440px; animation-delay: 1.6s; }

@keyframes proximity-pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 0; }
}

.feature-content {
  max-width: 480px;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.feature-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.feature-card .card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card .card-icon.blue { background: var(--accent-subtle); color: var(--accent); }
.feature-card .card-icon.green { background: var(--green-subtle); color: var(--green); }
.feature-card .card-icon.purple { background: rgba(191, 90, 242, 0.1); color: var(--purple); }
.feature-card .card-icon.yellow { background: rgba(255, 214, 10, 0.1); color: var(--yellow); }
.feature-card .card-icon.red { background: rgba(255, 69, 58, 0.1); color: var(--red); }

.feature-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURE SECTION — Café Mode
   ═══════════════════════════════════════════════════════════════════ */
.cafe-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cafe-shield-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.08) 0%, transparent 70%);
  animation: shield-breathe 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shield-breathe {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0.6; }
}

.badge-hot {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(255, 69, 58, 0.12);
  border: 1px solid rgba(255, 69, 58, 0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.3px;
  margin-left: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   REMOTE CONTROL
   ═══════════════════════════════════════════════════════════════════ */
.features-remote {
  background: var(--bg-secondary);
}

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

.remote-card {
  padding: 32px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.remote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.remote-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

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

.card-icon-large {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon-large.blue-bg { background: var(--accent-subtle); }
.card-icon-large.green-bg { background: var(--green-subtle); }
.card-icon-large.purple-bg { background: rgba(191, 90, 242, 0.1); }

.remote-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.remote-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.remote-future-banner {
  margin-top: 32px;
  text-align: center;
  padding: 14px 24px;
  background: rgba(0, 122, 255, 0.06);
  border: 1px solid rgba(0, 122, 255, 0.12);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════ */
.features-how {
  background: var(--bg-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 12px;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 48px;
  left: 17%;
  right: 17%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--green), var(--teal));
  opacity: 0.2;
  border-radius: 1px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: all var(--transition-medium);
}

.step-card:hover .step-number {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 24px var(--accent-glow);
}

.step-icon-wrap {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   PLATFORMS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.features-platforms {
  background: var(--bg-secondary);
}

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

.platform-card {
  padding: 36px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
}

.platform-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

.platform-card-featured {
  border-color: rgba(0, 122, 255, 0.15);
  background: rgba(0, 122, 255, 0.03);
}

.platform-card.coming-soon { opacity: 0.6; }

.coming-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  background: rgba(255, 159, 10, 0.12);
  border: 1px solid rgba(255, 159, 10, 0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
}

.platform-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--bg-glass-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.platform-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.platform-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  text-align: left;
}

.platform-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.platform-feature .check {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   PRICING / CTA SECTION
   ═══════════════════════════════════════════════════════════════════ */
.pricing {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.15;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 44px 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--green), transparent);
}

.pricing-trial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(48, 209, 88, 0.1);
  border: 1px solid rgba(48, 209, 88, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 24px;
}

.pricing-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.pricing-card .pricing-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.pricing-feature .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(48, 209, 88, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 700;
}

.pricing-cta {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: var(--radius-md);
  justify-content: center;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.pricing-trust span {
  font-size: 12px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 4px;
}
/* ═══════════════════════════════════════════════════════════════════
   DIRECT DOWNLOAD SECTION
   ═══════════════════════════════════════════════════════════════════ */
.direct-download {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.direct-download::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(48, 209, 88, 0.08) 0%, rgba(0, 122, 255, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.download-card {
  padding: 36px 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-medium);
}

.download-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.download-card-featured {
  border-color: rgba(48, 209, 88, 0.15);
  background: rgba(48, 209, 88, 0.03);
}

.download-card-featured:hover {
  border-color: rgba(48, 209, 88, 0.3);
  box-shadow: 0 20px 60px rgba(48, 209, 88, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.download-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--accent), transparent);
}

.download-card-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass-strong);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-medium);
}

.download-card:hover .download-card-icon {
  transform: scale(1.05);
  border-color: var(--border-hover);
}

.download-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.download-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  width: 100%;
}

.download-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex: 1;
  min-width: 80px;
}

.download-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.download-meta-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.download-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  border-radius: var(--radius-md);
  justify-content: center;
}

.download-btn-secondary {
  background: var(--bg-glass-strong);
  border: 1px solid var(--border);
}

.download-btn-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.download-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-tertiary);
}

.download-note svg {
  color: var(--green);
  flex-shrink: 0;
}

/* Installation Instructions */
.download-instructions {
  max-width: 600px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
}

.download-instructions h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}

.download-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.download-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-secondary);
}

.download-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid rgba(0, 122, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ═══════════════════════════════════════════════════════════════════ */
.legal-page {
  padding: 120px 0 60px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 780px;
}

.legal-header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.legal-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.legal-date {
  font-size: 14px;
  color: var(--text-tertiary);
}

.legal-body {
  line-height: 1.8;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

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

.legal-section ul,
.legal-section ol {
  margin: 12px 0;
  padding-left: 24px;
}

.legal-section li {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-section li strong {
  color: var(--text-primary);
}

.legal-section strong {
  color: var(--text-primary);
}

.legal-highlight {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 16px 0;
}

.legal-highlight-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.legal-highlight strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.legal-highlight p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.legal-link {
  color: var(--accent);
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-decoration-color: rgba(0, 122, 255, 0.3);
  text-underline-offset: 2px;
}

.legal-link:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent-hover);
}

/* ═══════════════════════════════════════════════════════════════════
   SUPPORT / FAQ PAGE
   ═══════════════════════════════════════════════════════════════════ */
.faq-category {
  margin-bottom: 36px;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.faq-category-header h2 {
  font-size: 20px;
  font-weight: 700;
}

.faq-category-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-category-icon.blue { background: var(--accent-subtle); color: var(--accent); }
.faq-category-icon.green { background: var(--green-subtle); color: var(--green); }
.faq-category-icon.red { background: rgba(255, 69, 58, 0.1); color: var(--red); }
.faq-category-icon.purple { background: rgba(191, 90, 242, 0.1); color: var(--purple); }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  background: var(--bg-glass);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.01);
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 16px 20px 20px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer p { margin-bottom: 10px; }

.faq-answer ul,
.faq-answer ol {
  padding-left: 20px;
  margin: 8px 0;
}

.faq-answer li {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text-secondary);
}

.faq-answer li strong {
  color: var(--text-primary);
}

/* Support CTA */
.support-cta-section {
  margin-top: 48px;
}

.support-cta-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.support-cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--green), transparent);
}

.support-cta-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.support-cta-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.support-cta-card p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.support-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE V2 — Web Contact Style
   ═══════════════════════════════════════════════════════════════════ */
.contact-page-v2 {
  min-height: 100vh;
  padding-top: 100px;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.contact-hero-v2 {
  text-align: center;
  padding: 48px 0 56px;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.contact-hero-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 36px;
}

.contact-hero-subtitle strong {
  color: var(--accent);
  font-weight: 700;
}

/* Meet My Team CTA */
.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent), #5856D6);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
  letter-spacing: -0.01em;
}

.contact-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 48px rgba(0, 122, 255, 0.4);
}

.contact-cta-btn-glow {
  position: absolute;
  top: 0; left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: btn-shimmer 3s ease-in-out infinite;
}

/* ── Contact Grid ────────────────────────────────────────────────── */
.contact-grid-section {
  padding-bottom: 48px;
}

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

.contact-grid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-grid-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-grid-card:nth-child(1)::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.contact-grid-card:nth-child(2)::before {
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}
.contact-grid-card:nth-child(3)::before {
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.contact-grid-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.contact-grid-card:hover::before {
  opacity: 1;
}

.contact-grid-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.contact-grid-card-icon.blue { background: var(--accent-subtle); color: var(--accent); }
.contact-grid-card-icon.purple { background: rgba(191, 90, 242, 0.1); color: var(--purple); }
.contact-grid-card-icon.green { background: var(--green-subtle); color: var(--green); }

.contact-grid-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-grid-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  word-break: break-all;
}

.contact-grid-card-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
  margin-top: auto;
}

.contact-grid-card:hover .contact-grid-card-action {
  color: var(--accent);
}

/* ── Framework Section ───────────────────────────────────────────── */
.contact-framework-section {
  padding-bottom: 64px;
}

.contact-framework-card {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  overflow: hidden;
  position: relative;
}

.contact-framework-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--accent), transparent);
}

.contact-framework-card-inner {
  padding: 32px;
}

.contact-framework-info {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-framework-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(100, 210, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.contact-framework-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.contact-framework-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-framework-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-framework-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-fw-tag {
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(100, 210, 255, 0.06);
  border: 1px solid rgba(100, 210, 255, 0.12);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}

.contact-framework-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(100, 210, 255, 0.08);
  border: 1px solid rgba(100, 210, 255, 0.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: all var(--transition-fast);
}

.contact-framework-link:hover {
  background: rgba(100, 210, 255, 0.15);
  border-color: rgba(100, 210, 255, 0.3);
  transform: translateY(-1px);
}
















/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

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

.footer-copyright {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-description { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 16px; }

  .feature-grid,
  .feature-grid-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-visual { order: -1; }
  .feature-content { max-width: 100%; }

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

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

  .remote-grid .remote-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
  }

  .steps-connector { display: none; }

  .showcase-devices {
    flex-direction: column;
    gap: 24px;
  }
}

/* ═══ Mobile (≤768px) ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-padding: 52px;
  }

  .container {
    padding: 0 20px;
  }

  /* ── Mobile Navbar ────────────────────────────────────────────── */
  .navbar {
    padding: 10px 0;
  }

  .nav-logo span {
    font-size: 16px;
  }

  .nav-logo .logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 8, 15, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
    padding: 80px 32px 40px;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
    animation: mobile-menu-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes mobile-menu-in {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease, background 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a:active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
  }

  .nav-links a::after {
    display: none;
  }

  /* Mobile menu CTA button */
  .nav-links::after {
    content: 'Download Free';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 14px 32px;
    background: var(--accent);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    width: 100%;
    max-width: 300px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  /* ── Mobile Hero ──────────────────────────────────────────────── */
  .hero {
    min-height: auto;
    padding: 88px 0 40px;
  }

  .hero .container {
    gap: 32px;
  }

  .hero-badge {
    padding: 6px 14px;
    font-size: 11px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .trust-chip {
    padding: 5px 12px;
    font-size: 11px;
    gap: 5px;
  }

  .trust-chip svg {
    width: 12px;
    height: 12px;
  }

  /* Hero Visual — Compact radar */
  .hero-visual {
    min-height: 240px;
    margin-top: 8px;
  }

  .radar-container {
    width: 200px;
    height: 200px;
  }

  .radar-ring-1 { width: 90px; height: 90px; }
  .radar-ring-2 { width: 150px; height: 150px; }
  .radar-ring-3 { width: 190px; height: 190px; }
  .radar-sweep { width: 190px; height: 190px; }

  .radar-center {
    width: 48px;
    height: 48px;
  }

  .radar-center svg {
    width: 22px;
    height: 22px;
  }

  .radar-phone-orbit {
    width: 150px;
    height: 150px;
  }

  .radar-phone-dot {
    width: 22px;
    height: 22px;
  }

  .radar-phone-dot svg {
    width: 10px;
    height: 10px;
  }

  .hero-float-badge {
    font-size: 10px;
    padding: 5px 10px;
    gap: 4px;
  }

  .float-badge-protected {
    top: 8%;
    right: -2%;
  }

  .float-badge-distance {
    bottom: 20%;
    left: -4%;
  }

  .float-badge-battery {
    bottom: 5%;
    right: 5%;
  }

  /* ── Mobile Stat Bar ─────────────────────────────────────────── */
  .stat-bar {
    padding: 28px 0;
  }

  .stat-bar .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 10px;
    letter-spacing: 0.3px;
    margin-top: 2px;
  }

  /* ── Mobile Showcase ─────────────────────────────────────────── */
  .showcase-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: var(--radius-lg);
    margin: 0 -20px 36px;
    padding: 4px 20px;
    background: transparent;
    border: none;
    gap: 6px;
    justify-content: flex-start;
    width: calc(100% + 40px);
  }

  .showcase-tabs::-webkit-scrollbar {
    display: none;
  }

  .showcase-tab {
    padding: 8px 18px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    border: 1px solid var(--border);
  }

  .showcase-tab.active {
    border-color: transparent;
  }

  .showcase-stage {
    min-height: 420px;
  }

  .showcase-devices {
    gap: 20px;
  }

  .showcase-caption h3 {
    font-size: 18px;
  }

  .showcase-caption p {
    font-size: 13px;
    padding: 0 8px;
  }

  /* Device frames */
  .iphone-frame {
    width: 180px;
    padding: 8px;
    border-radius: 28px;
    border-width: 1.5px;
  }

  .iphone-frame img {
    border-radius: 20px;
  }

  .device-notch {
    width: 64px;
    height: 16px;
    border-radius: 0 0 10px 10px;
    margin: -8px auto 6px;
  }

  .mac-frame {
    width: 280px;
    border-radius: 12px;
    border-width: 1.5px;
  }

  .mac-toolbar {
    padding: 7px 10px;
    gap: 5px;
  }

  .mac-dot {
    width: 8px;
    height: 8px;
  }

  .iphone-frame-small {
    width: 160px;
  }

  .mac-frame-feature {
    width: 260px;
  }

  /* ── Mobile Feature Sections ─────────────────────────────────── */
  .feature-content {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .section-title {
    text-align: center;
    font-size: clamp(24px, 6vw, 32px);
  }

  .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }

  .section-label {
    justify-content: center;
    width: 100%;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .section-header.center {
    margin-bottom: 28px;
  }

  /* Feature cards */
  .feature-cards {
    gap: 10px;
    margin-top: 24px;
    width: 100%;
  }

  .feature-card {
    padding: 16px;
    gap: 12px;
    border-radius: var(--radius-md);
    text-align: left;
  }

  .feature-card .card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .feature-card .card-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-card h4 {
    font-size: 13px;
  }

  .feature-card p {
    font-size: 12px;
  }

  /* Badge hot */
  .badge-hot {
    font-size: 10px;
    padding: 2px 8px;
  }

  /* Proximity rings */
  .proximity-ring-1 { width: 200px; height: 200px; }
  .proximity-ring-2 { width: 260px; height: 260px; }
  .proximity-ring-3 { width: 320px; height: 320px; }

  /* ── Mobile Remote Control ───────────────────────────────────── */
  .remote-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .remote-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .remote-card .card-icon-large {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .remote-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .remote-card p {
    font-size: 13px;
  }

  .remote-future-banner {
    margin-top: 20px;
    padding: 12px 16px;
    font-size: 13px;
    border-radius: var(--radius-md);
  }

  /* ── Mobile How It Works ──────────────────────────────────────── */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .step-icon-wrap {
    margin-bottom: 12px;
  }

  .step-icon-wrap svg {
    width: 28px;
    height: 28px;
  }

  .step-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .step-card p {
    font-size: 13px;
    max-width: 100%;
  }

  /* ── Mobile Platforms ────────────────────────────────────────── */
  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .platform-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
  }

  .platform-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .platform-icon-wrap svg {
    width: 28px;
    height: 28px;
  }

  .platform-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .platform-card p {
    font-size: 13px;
  }

  .platform-features {
    gap: 8px;
    margin-top: 18px;
  }

  .platform-feature {
    font-size: 12px;
  }

  .coming-soon-badge {
    font-size: 10px;
    padding: 3px 8px;
    top: 12px;
    right: 12px;
  }

  /* ── Mobile Pricing ──────────────────────────────────────────── */
  .pricing-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }

  .pricing-trial {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

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

  .pricing-card .pricing-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .pricing-features {
    gap: 10px;
    margin-bottom: 28px;
  }

  .pricing-feature {
    font-size: 13px;
  }

  .pricing-cta {
    padding: 14px;
    font-size: 15px;
    border-radius: var(--radius-md);
  }

  .pricing-trust {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-top: 18px;
  }

  .pricing-trust span {
    font-size: 11px;
    gap: 3px;
  }

  /* ── Mobile Download ──────────────────────────────────────────── */
  .download-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .download-card {
    padding: 28px 24px;
  }

  .download-card h3 {
    font-size: 20px;
  }

  .download-card-desc {
    font-size: 13px;
  }

  .download-meta {
    gap: 6px;
  }

  .download-meta-item {
    padding: 6px 10px;
  }

  .download-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .download-instructions {
    padding: 22px 24px;
  }

  .download-instructions h4 {
    font-size: 15px;
  }

  .download-step {
    font-size: 13px;
    gap: 12px;
  }

  .download-step-num {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  /* ── Mobile Footer ───────────────────────────────────────────── */
  .footer {
    padding: 36px 0 24px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
  }

  .footer-links a {
    font-size: 13px;
    padding: 6px 4px;
  }

  .footer-copyright {
    font-size: 12px;
    margin-top: 4px;
  }

  /* ── Mobile Legal / Support / Contact ─────────────────────────── */
  .legal-page {
    padding: 88px 0 40px;
  }

  .legal-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .legal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .legal-header h1 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .legal-section h2 {
    font-size: 18px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 14px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-cta-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .contact-framework-info {
    flex-direction: column;
    gap: 12px;
  }

  .contact-framework-card-inner {
    padding: 24px 20px;
  }

  .contact-hero-title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .contact-hero-subtitle {
    font-size: 15px;
  }

  .support-cta-card {
    padding: 28px 20px;
  }

  .support-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  /* ── Café visual responsive ──────────────────────────────────── */
  .cafe-shield-glow {
    width: 220px;
    height: 220px;
  }
}

/* ═══ Small phones (≤380px) ═══════════════════════════════════════ */
@media (max-width: 380px) {
  :root {
    --section-padding: 40px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 84px 0 32px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: -0.02em;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-visual {
    min-height: 200px;
  }

  .radar-container {
    width: 170px;
    height: 170px;
  }

  .radar-ring-1 { width: 80px; height: 80px; }
  .radar-ring-2 { width: 130px; height: 130px; }
  .radar-ring-3 { width: 160px; height: 160px; }
  .radar-sweep { width: 160px; height: 160px; }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .iphone-frame { width: 160px; }
  .iphone-frame-small { width: 140px; }
  .mac-frame { width: 240px; }
  .mac-frame-feature { width: 230px; }

  .stat-number { font-size: 22px; }
  .stat-label { font-size: 9px; }

  .pricing-card {
    padding: 24px 18px;
  }

  .pricing-card h3 {
    font-size: 22px;
  }

  .remote-card {
    padding: 20px 16px;
  }

  .step-card {
    padding: 20px 16px;
  }

  .platform-card {
    padding: 24px 20px;
  }

  .contact-hero-title { font-size: 28px; }

  .hero-float-badge {
    display: none;
  }
}

/* ═══ Landscape phones ════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 32px;
  }

  .hero-visual {
    min-height: 160px;
  }

  .nav-links {
    padding: 60px 32px 24px;
    gap: 0;
  }

  .nav-links a {
    font-size: 16px;
    padding: 10px 0;
  }
}
