/* ============================================
   Galaxy Fishing — Landing Page Styles
   2026 Dark Glass Edition
   Brand: Crystal Blue #17A2B8, Seafoam #42C2B6
   Background: #050E18
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg: #050E18;
  --crystal-blue: #17A2B8;
  --seafoam: #42C2B6;
  --sunset-orange: #FF7D4F;
  --golden-yellow: #FAD633;
  --white: #ffffff;

  --gradient-cta: linear-gradient(90deg, var(--crystal-blue) 0%, var(--seafoam) 100%);
  --gradient-step: linear-gradient(135deg, var(--crystal-blue) 0%, var(--seafoam) 100%);

  --glass-bg: rgba(255, 255, 255, 0.031);
  --glass-border: rgba(255, 255, 255, 0.071);
  --glass-blur: 20px;

  --shadow-cta: 0 4px 24px rgba(23, 162, 184, 0.25);

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.67);
  --text-muted: rgba(255, 255, 255, 0.38);
  --text-subtle: rgba(255, 255, 255, 0.19);
  --text-accent: #9AABB8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 28px;
  --radius-pill: 100px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;

  --nav-height: 72px;
  --container-max: 1280px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--crystal-blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--seafoam);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-2xl);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.btn:active::after {
  opacity: 1;
  transition: opacity 0s;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(23, 162, 184, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.031);
  color: var(--crystal-blue);
  border-color: rgba(255, 255, 255, 0.125);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-2xl);
}

.btn-xl {
  padding: 18px 48px;
  font-size: 18px;
  border-radius: var(--radius-2xl);
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

/* ---------- Section Commons ---------- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  color: var(--crystal-blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.features-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.features-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.steps .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.steps .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.testimonial-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stats-container .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stats-container .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.stats-container .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }


/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
  background: rgba(5, 14, 24, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.063);
}

.navbar.scrolled {
  background: rgba(5, 14, 24, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  flex-shrink: 0;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 4px;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-sign-in {
  font-size: 14px;
  font-weight: 500;
  color: var(--crystal-blue);
  text-decoration: none;
}

.nav-sign-in:hover {
  color: var(--seafoam);
}

.nav-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 24px;
  background: var(--gradient-cta);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-download-btn:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(23, 162, 184, 0.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg) translate(5px, -5px); }


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: var(--bg);
  padding-top: var(--nav-height);
  min-height: 760px;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  top: 100px;
  right: 15%;
  background: radial-gradient(circle, rgba(23, 162, 184, 0.125) 0%, transparent 70%);
  opacity: 0.8;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  bottom: 0;
  left: -50px;
  background: radial-gradient(circle, rgba(66, 194, 182, 0.094) 0%, transparent 70%);
  opacity: 0.6;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  bottom: 50px;
  right: 5%;
  background: radial-gradient(circle, rgba(255, 125, 79, 0.082) 0%, transparent 70%);
  opacity: 0.5;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  gap: 40px;
}

.hero-text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 24px;
  background: rgba(23, 162, 184, 0.071);
  border: 1px solid rgba(23, 162, 184, 0.188);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: fit-content;
}

.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--crystal-blue);
}

.hero-title {
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.67);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.hero-trust-stars {
  font-size: 16px;
  color: var(--golden-yellow);
}

.hero-trust-text {
  font-size: 14px;
  color: var(--text-accent);
}

.hero-phone {
  flex-shrink: 0;
  position: relative;
}

.hero-device-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotateY(-2deg); }
  50% { transform: translateY(-12px) rotateY(2deg); }
}


/* =============================================
   FEATURES
   ============================================= */
.features {
  position: relative;
  background: var(--bg);
  padding: 120px 0 80px;
  overflow: hidden;
}

.features-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.features-orb {
  position: absolute;
  border-radius: 50%;
}

.features-orb--1 {
  width: 400px;
  height: 400px;
  top: -50px;
  left: -100px;
  background: radial-gradient(circle, rgba(23, 162, 184, 0.082) 0%, transparent 70%);
  opacity: 0.4;
}

.features-orb--2 {
  width: 350px;
  height: 350px;
  bottom: 0;
  right: -80px;
  background: radial-gradient(circle, rgba(66, 194, 182, 0.071) 0%, transparent 70%);
  opacity: 0.3;
}

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

.feature-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
}

.feature-icon--blue {
  background: rgba(23, 162, 184, 0.082);
  border: 1px solid rgba(23, 162, 184, 0.188);
}

.feature-icon--orange {
  background: rgba(255, 125, 79, 0.082);
  border: 1px solid rgba(255, 125, 79, 0.188);
}

.feature-icon--seafoam {
  background: rgba(66, 194, 182, 0.082);
  border: 1px solid rgba(66, 194, 182, 0.188);
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.44);
}


/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  background: var(--bg);
  padding: 120px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.031);
  border-bottom: 1px solid rgba(255, 255, 255, 0.031);
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-step);
  color: var(--white);
  font-size: 26px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(23, 162, 184, 0.25);
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.step-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.44);
}


/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.031);
  border-bottom: 1px solid rgba(255, 255, 255, 0.031);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-size: 44px;
  font-weight: 600;
  color: var(--text-primary);
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
}


/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--bg);
  padding: 120px 0;
}

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

.testimonial-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  font-size: 18px;
  color: var(--golden-yellow);
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.author-avatar--warm {
  background: linear-gradient(135deg, var(--sunset-orange), var(--golden-yellow));
}

.author-avatar--cool {
  background: linear-gradient(135deg, var(--crystal-blue), var(--seafoam));
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.author-info strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.author-info span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-accent);
}


/* =============================================
   DOWNLOAD CTA
   ============================================= */
.download-cta {
  position: relative;
  background: var(--bg);
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.024);
}

.cta-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
}

.cta-orb--1 {
  width: 600px;
  height: 600px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(23, 162, 184, 0.094) 0%, transparent 70%);
  opacity: 0.6;
}

.cta-orb--2 {
  width: 300px;
  height: 300px;
  bottom: 0;
  left: -50px;
  background: radial-gradient(circle, rgba(66, 194, 182, 0.063) 0%, transparent 70%);
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-title {
  font-size: 56px;
  font-weight: 400;
  color: var(--text-primary);
}

.cta-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
}

.cta-buttons {
  padding-top: 8px;
}

.cta-note {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg);
  padding: 72px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.031);
}

.footer-grid {
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 3px;
}

.footer-logo:hover {
  color: inherit;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.25);
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.31);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.063);
  margin: 48px 0;
}

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

.footer-bottom p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.188);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
  display: flex;
}

.footer-social a:hover {
  color: var(--crystal-blue);
}


/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(23, 162, 184, 0.3);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 162, 184, 0.4);
}


/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(5, 14, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.063);
}

.cookie-text {
  font-size: 13px;
  color: var(--text-muted);
}

.cookie-text a {
  color: var(--crystal-blue);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-dismiss {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--font);
}

.cookie-accept {
  background: var(--gradient-cta);
  color: var(--white);
}

.cookie-accept:hover {
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.cookie-dismiss {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-dismiss:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}


/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero-title { font-size: 56px; }
  .section-title { font-size: 40px; }
  .cta-title { font-size: 44px; }

  .hero-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-device-img { max-width: 240px; }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  /* Nav */
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 14, 24, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 20px;
  }

  .nav-toggle {
    display: block;
  }

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

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-text {
    align-items: center;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-phone {
    order: -1;
  }

  .hero-device-img {
    max-width: 200px;
    margin: 0 auto;
  }

  /* Features */
  .features {
    padding: 80px 0 60px;
  }

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

  .feature-card {
    padding: 28px;
  }

  /* How It Works */
  .how-it-works {
    padding: 80px 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Stats */
  .stats-bar {
    padding: 60px 0;
  }

  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  /* Testimonials */
  .testimonials {
    padding: 80px 0;
  }

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

  .testimonial-card {
    padding: 28px;
  }

  /* CTA */
  .download-cta {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-subtitle br {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Cookie */
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Section */
  .section-title {
    font-size: 32px;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .hero-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 30px;
  }

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

  .btn-xl {
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* ========================================
   Legal Pages (Privacy Policy, Terms, etc.)
   ======================================== */

body.legal-page {
  background: var(--bg);
  color: var(--text-primary);
}

main.legal-page {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  min-height: 100vh;
}

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

.legal-header h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--crystal-blue), var(--seafoam));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--glass-border);
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 28px;
  margin-bottom: 12px;
}

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

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.legal-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crystal-blue);
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-content a {
  color: var(--crystal-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-content a:hover {
  color: var(--seafoam);
  text-decoration: underline;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  main.legal-page {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
  }

  .legal-header h1 {
    font-size: 32px;
  }

  .legal-content h2 {
    font-size: 20px;
    margin-top: 32px;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  main.legal-page {
    padding-top: calc(var(--nav-height) + 28px);
    padding-bottom: 48px;
  }

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

  .legal-header h1 {
    font-size: 26px;
  }

  .legal-content h2 {
    font-size: 18px;
    margin-top: 28px;
  }

  .legal-content h3 {
    font-size: 16px;
  }

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