/* ============================================================
   Snail Trail — Marketing Website Styles
   Design system: dark navy / cyan accent / premium feel
   ============================================================ */

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

:root {
  /* Backgrounds */
  --bg-base:    #0A0B0E;
  --bg-1:       #121620;
  --bg-2:       #1A1F26;
  --bg-3:       #21283300;
  --bg-card:    #1C2230;

  /* Accents */
  --cyan:       #22D3EE;
  --cyan-dim:   #1ba3be;
  --green:      #4ADE80;
  --orange:     #FB923C;
  --pink:       #FF6B9D;
  --purple:     #A855F7;
  --navy-acc:   #2B4A8A;

  /* Text */
  --text-primary:  #FFFFFF;
  --text-muted:    #969CA6;
  --text-dim:      #5C636F;

  /* Borders */
  --border:     rgba(255,255,255,0.08);
  --border-acc: rgba(34,211,238,0.25);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Transitions */
  --trans: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.02em; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-1);
}

.text-center { text-align: center; }
.text-cyan { color: var(--cyan); }

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

/* Glow effects */
.glow-cyan {
  box-shadow: 0 0 32px rgba(34,211,238,0.18);
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.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; }

/* ── CTA Button ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: #000;
}
.btn-primary:hover {
  background: #3be0f8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,211,238,0.35);
}
.btn-outline {
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(34,211,238,0.1);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: var(--r-lg);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,11,14,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--trans);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(34,211,238,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(168,85,247,0.06) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg-base) 0%, #0d1420 100%);
  pointer-events: none;
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 24px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================================================================
   PHONE MOCKUP — shared component
   ================================================================ */
.phone {
  position: relative;
  width: 260px;
  min-height: 530px;
  background: #0d1118;
  border-radius: 42px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(34,211,238,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Notch */
.phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 22px;
  background: #0d1118;
  border-radius: 11px;
  z-index: 10;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Status bar */
.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 8px;
  padding-top: 44px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ================================================================
   HERO SCREEN — Keşfet (Discover)
   ================================================================ */
.hero-screen {
  background: linear-gradient(180deg, #0d1420 0%, #0A0B0E 100%);
}

.hero-screen-header {
  padding: 8px 20px 12px;
  flex-shrink: 0;
}
.hero-screen-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.hero-screen-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-search {
  margin: 0 20px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  flex-shrink: 0;
}
.hero-search-icon { font-size: 0.75rem; }
.hero-search-text {
  font-size: 0.65rem;
  color: var(--text-dim);
}

/* Country chips */
.country-chips {
  display: flex;
  gap: 6px;
  padding: 0 20px 14px;
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: none;
}
.chip {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 0.6rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.chip-active {
  background: rgba(34,211,238,0.15);
  border: 1px solid rgba(34,211,238,0.4);
  color: var(--cyan);
}
.chip-inactive {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* Trail card (small) */
.trail-card-sm {
  margin: 0 20px 10px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px;
  flex-shrink: 0;
}
.trail-card-sm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.trail-card-sm-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}
.trail-badge {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(34,211,238,0.15);
  color: var(--cyan);
}
.trail-card-sm-meta {
  display: flex;
  gap: 10px;
  font-size: 0.58rem;
  color: var(--text-muted);
}
.trail-card-sm-meta span { display: flex; align-items: center; gap: 3px; }
.trail-card-sm-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.trail-card-sm-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 2px;
}

/* ================================================================
   FEATURES SECTION
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent, var(--cyan)), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.feature-card:hover {
  border-color: var(--border-acc);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ================================================================
   SCREENSHOTS SECTION
   ================================================================ */
.screenshots-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: flex-end;
  margin-top: 64px;
  flex-wrap: wrap;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.screenshot-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Different heights to create hierarchy */
.screenshot-item:nth-child(2) .phone { transform: scale(1.05); }
.screenshot-item:nth-child(2) .screenshot-label { color: var(--cyan); }

/* ================================================================
   SCREEN: Parkur Detayı
   ================================================================ */
.detail-screen {
  background: var(--bg-base);
  flex: 1;
}
.detail-hero-map {
  height: 120px;
  background: linear-gradient(135deg, #1a2d4a 0%, #0f1f35 50%, #1d3a5c 100%);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
/* Simulated trail path on map */
.map-trail-path {
  position: absolute;
  inset: 0;
}
.detail-hero-map::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-base) 0%, transparent 50%);
}

.detail-content {
  padding: 16px 20px;
  flex: 1;
  overflow: hidden;
}
.detail-title {
  font-size: 1.0rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.detail-country {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.detail-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.detail-chip {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.chip-green { background: rgba(74,222,128,0.15); color: var(--green); }
.chip-orange { background: rgba(251,146,60,0.15); color: var(--orange); }
.chip-purple { background: rgba(168,85,247,0.15); color: var(--purple); }
.chip-cyan { background: rgba(34,211,238,0.15); color: var(--cyan); }

.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.detail-stat {
  background: var(--bg-2);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
}
.detail-stat-val {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cyan);
}
.detail-stat-label {
  font-size: 0.5rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.poi-section-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.poi-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.poi-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  color: var(--text-primary);
}
.poi-icon { font-size: 0.8rem; }
.poi-dist { margin-left: auto; color: var(--text-dim); font-size: 0.55rem; }

/* ================================================================
   SCREEN: Rota Detayı
   ================================================================ */
.route-screen { background: var(--bg-base); }

.elevation-profile {
  margin: 0 20px 12px;
  background: var(--bg-2);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 12px;
  flex-shrink: 0;
}
.elev-title {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.elev-chart {
  height: 48px;
  position: relative;
  overflow: hidden;
}
.elev-chart svg {
  width: 100%;
  height: 100%;
}

.route-list {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.route-option {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  position: relative;
}
.route-option.preferred {
  border-color: rgba(34,211,238,0.35);
  background: rgba(34,211,238,0.05);
}
.route-opt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.route-opt-name {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-primary);
}
.pref-badge {
  font-size: 0.48rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(34,211,238,0.2);
  color: var(--cyan);
}
.route-opt-meta {
  display: flex;
  gap: 8px;
  font-size: 0.55rem;
  color: var(--text-muted);
}
.route-opt-bar {
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  margin-top: 6px;
  overflow: hidden;
}
.route-opt-bar-fill {
  height: 100%;
  border-radius: 1px;
}

/* ================================================================
   SCREEN: Harita
   ================================================================ */
.map-screen { background: #0e1926; }

.map-view {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(43,74,138,0.5) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(43,74,138,0.3) 0%, transparent 40%),
    linear-gradient(160deg, #0e1926 0%, #121f33 50%, #0a1520 100%);
}
/* Grid lines for map */
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
/* Trail area polygon */
.map-trail-area {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 80%;
  height: 65%;
  background: rgba(43,74,138,0.35);
  border: 1.5px solid rgba(34,211,238,0.3);
  clip-path: polygon(10% 5%, 70% 0%, 95% 20%, 90% 70%, 60% 95%, 15% 90%, 0% 50%);
  border-radius: 4px;
}
/* Route line */
.map-route {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 70%;
  height: 55%;
  pointer-events: none;
}
/* POI markers */
.map-poi {
  position: absolute;
  width: 22px; height: 22px;
  background: var(--bg-base);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.map-user-pin {
  position: absolute;
  bottom: 35%;
  left: 40%;
  width: 14px; height: 14px;
  background: var(--cyan);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(34,211,238,0.25);
}

.map-controls {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.map-btn {
  width: 28px; height: 28px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
}

.map-bottom-sheet {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  flex-shrink: 0;
}
.map-sheet-handle {
  width: 32px; height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 10px;
}
.map-sheet-title {
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.map-sheet-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.map-sheet-pills {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.map-pill {
  flex-shrink: 0;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.map-pill.active {
  background: rgba(34,211,238,0.12);
  border-color: rgba(34,211,238,0.35);
  color: var(--cyan);
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0.3;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
}
.hiw-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(168,85,247,0.2));
  border: 2px solid rgba(34,211,238,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 20px;
}
.hiw-icon { font-size: 1.8rem; margin-bottom: 16px; }
.hiw-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.hiw-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   COMPARISON TABLE
   ================================================================ */
.compare-table {
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-card);
}

.compare-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.compare-cell {
  padding: 20px 24px;
  font-size: 0.9rem;
  font-weight: 700;
}
.compare-cell.feature-col { color: var(--text-muted); }
.compare-col-header {
  text-align: center;
  padding: 20px 16px;
}
.col-free { font-weight: 800; color: var(--text-primary); font-size: 1rem; }
.col-pro {
  font-weight: 800;
  font-size: 1rem;
  color: var(--cyan);
  position: relative;
}
.pro-badge-small {
  display: inline-block;
  font-size: 0.55rem;
  padding: 2px 7px;
  background: rgba(34,211,238,0.15);
  border-radius: 4px;
  color: var(--cyan);
  margin-left: 6px;
  vertical-align: middle;
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.025); }

.compare-feature {
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-feature-icon { font-size: 1rem; }

.compare-check {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.check-yes { color: var(--green); font-size: 1.1rem; }
.check-no { color: var(--text-dim); font-size: 1.1rem; }
.check-pro { color: var(--cyan); font-size: 0.7rem; font-weight: 700; }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.pricing-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(34,211,238,0.08) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.2), 0 20px 60px rgba(34,211,238,0.12);
  transform: scale(1.02);
  position: relative;
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-6px); }

.pricing-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-price {
  margin-bottom: 24px;
}
.pricing-amount {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.pricing-amount.big { font-size: 2.6rem; color: var(--cyan); }
.pricing-currency { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-top: 6px; display: inline-block; }
.pricing-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.pricing-annual-note {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 700;
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-feature-check {
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-feature-check.muted { color: var(--text-dim); }
.pricing-feature-text.highlight { color: var(--text-primary); font-weight: 600; }

.btn-pricing {
  width: 100%;
  justify-content: center;
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 0.95rem;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  max-width: 760px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: var(--border-acc); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  gap: 16px;
}
.faq-question:hover { color: var(--cyan); }

.faq-arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--trans);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--cyan); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
}
.footer-logo img {
  width: 30px; height: 30px;
  object-fit: contain;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-cta-mini {
  margin-top: 8px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-love {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-love span { color: var(--pink); }

/* ================================================================
   MOBILE RESPONSIVENESS
   ================================================================ */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .compare-header, .compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: rgba(10,11,14,0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.mobile-open .nav-cta-mobile {
    display: block;
    margin-top: 8px;
  }
  .nav-links.mobile-open a { font-size: 1.1rem; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-stats { gap: 20px; }

  .screenshots-row { gap: 16px; }
  .phone { width: 200px; min-height: 410px; }
  .screenshot-item:nth-child(2) .phone { transform: scale(1); }

  .hiw-steps { grid-template-columns: 1fr; gap: 16px; }
  .hiw-steps::before { display: none; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

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

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

  .compare-feature { font-size: 0.8rem; padding: 14px 16px; }
  .compare-cell { padding: 16px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================================================
   STORE BUTTONS
   ================================================================ */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--trans);
}
.store-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.store-btn-icon { font-size: 1.4rem; }
.store-btn-text { line-height: 1.2; }
.store-btn-label { font-size: 0.62rem; color: var(--text-muted); display: block; }
.store-btn-name { font-size: 0.9rem; font-weight: 800; display: block; }
