/* ============================================
   SkiMap — B2B Marketing Website
   ============================================ */

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

:root {
  --bg: #0A0A0F;
  --bg-card: #12121A;
  --bg-card-hover: #1A1A25;
  --bg-surface: #16161F;
  --text: #E8E8ED;
  --text-muted: #8888A0;
  --text-dim: #555570;
  --accent: #3A8EF6;
  --accent-glow: rgba(58, 142, 246, 0.15);
  --green: #2ECC71;
  --blue: #3498DB;
  --red: #E74C3C;
  --orange: #F39C12;
  --black-trail: #888;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-logo-icon {
  font-size: 1.5rem;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: #4D9DF7;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(58, 142, 246, 0.3);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 0;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

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

.hero-gradient {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(58, 142, 246, 0.08) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(58, 142, 246, 0.1);
  border: 1px solid rgba(58, 142, 246, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #4D9DF7;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58, 142, 246, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--mono);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* --- Phone Mockup --- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: #1A1A1A;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(58, 142, 246, 0.05);
  position: relative;
}

.phone-frame-small {
  width: 260px;
  height: 540px;
  border-radius: 36px;
  padding: 10px;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #0A0A0A;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-frame-small .phone-notch {
  width: 100px;
  height: 24px;
  top: 10px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #0D0D12;
  position: relative;
}

.phone-frame-small .phone-screen {
  border-radius: 27px;
}

.phone-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.phone-placeholder-dark {
  background: #0D0D12;
}

.phone-placeholder-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  z-index: 2;
}

.phone-placeholder-sub {
  font-size: 0.7rem;
  color: var(--text-dim);
  opacity: 0.6;
  z-index: 2;
}

/* Animated trail lines in hero phone */
.phone-placeholder-map {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.trail-line {
  position: absolute;
  height: 3px;
  border-radius: 2px;
  transform-origin: left center;
}

.trail-green {
  background: var(--green);
  width: 60%;
  top: 25%;
  left: 15%;
  transform: rotate(25deg);
  animation: trailPulse 3s ease-in-out infinite;
}

.trail-blue {
  background: var(--blue);
  width: 50%;
  top: 40%;
  left: 25%;
  transform: rotate(-15deg);
  animation: trailPulse 3s ease-in-out 0.5s infinite;
}

.trail-black {
  background: var(--black-trail);
  width: 45%;
  top: 55%;
  left: 10%;
  transform: rotate(35deg);
  animation: trailPulse 3s ease-in-out 1s infinite;
}

.trail-red {
  background: var(--red);
  width: 35%;
  top: 65%;
  left: 30%;
  transform: rotate(-25deg);
  animation: trailPulse 3s ease-in-out 1.5s infinite;
}

.trail-orange {
  background: var(--orange);
  width: 70%;
  top: 45%;
  left: 15%;
  transform: rotate(80deg);
  animation: trailPulse 3s ease-in-out 2s infinite;
  height: 2px;
  opacity: 0.7;
}

.gps-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 3px solid white;
  border-radius: 50%;
  top: 40%;
  left: 50%;
  z-index: 2;
  animation: gpsPulse 2s ease-in-out infinite;
}

@keyframes trailPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes gpsPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(58, 142, 246, 0.4); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(58, 142, 246, 0); }
}

.phone-placeholder-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
  background: rgba(13, 13, 18, 0.7);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.6; }
}

/* --- Value Proposition --- */
.value-prop {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

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

.value-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.value-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(58, 142, 246, 0.08);
  border: 1px solid rgba(58, 142, 246, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Features --- */
.features {
  padding: 120px 0;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-showcase:last-child {
  margin-bottom: 0;
}

.feature-showcase-reverse {
  direction: rtl;
}

.feature-showcase-reverse > * {
  direction: ltr;
}

.feature-number {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.feature-showcase-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.feature-showcase-text > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.feature-list li:has(.difficulty-dot)::before {
  display: none;
}

.feature-list li:has(.difficulty-dot) {
  padding-left: 0;
}

.difficulty-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-showcase-visual {
  display: flex;
  justify-content: center;
}

.feature-phone {
  position: relative;
}

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

.steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-number {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #2ECC71);
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--mono);
  color: white;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), rgba(58, 142, 246, 0.1));
  margin-left: 25px;
  border-radius: 1px;
}

/* --- Customization --- */
.customization {
  padding: 120px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.custom-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.custom-item:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.custom-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 204, 113, 0.1);
  color: var(--green);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
}

.custom-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.custom-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Tech --- */
.tech {
  padding: 120px 0;
}

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

.tech-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.tech-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.tech-card-header {
  margin-bottom: 16px;
}

.tech-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(58, 142, 246, 0.1);
  border: 1px solid rgba(58, 142, 246, 0.15);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--mono);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tech-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- CTA --- */
.cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58, 142, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.contact-form .hidden {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: var(--text-dim);
}

.form-group input:focus {
  border-color: var(--accent);
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- Footer --- */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --- Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.value-grid [data-animate].visible,
.tech-grid.visible .tech-card,
.custom-grid.visible .custom-item {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-grid .tech-card,
.custom-grid .custom-item {
  opacity: 0;
}

.tech-grid.visible .tech-card:nth-child(1),
.custom-grid.visible .custom-item:nth-child(1) { animation-delay: 0s; }

.tech-grid.visible .tech-card:nth-child(2),
.custom-grid.visible .custom-item:nth-child(2) { animation-delay: 0.08s; }

.tech-grid.visible .tech-card:nth-child(3),
.custom-grid.visible .custom-item:nth-child(3) { animation-delay: 0.16s; }

.tech-grid.visible .tech-card:nth-child(4),
.custom-grid.visible .custom-item:nth-child(4) { animation-delay: 0.24s; }

.tech-grid.visible .tech-card:nth-child(5),
.custom-grid.visible .custom-item:nth-child(5) { animation-delay: 0.32s; }

.tech-grid.visible .tech-card:nth-child(6),
.custom-grid.visible .custom-item:nth-child(6) { animation-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .feature-showcase-reverse {
    direction: ltr;
  }

  .feature-showcase-text {
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

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

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-scroll-hint {
    display: none;
  }

  .feature-showcase {
    margin-bottom: 80px;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
  }

  .phone-frame-small {
    width: 220px;
    height: 460px;
  }

  .steps {
    padding: 0 12px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .phone-frame {
    width: 220px;
    height: 460px;
    border-radius: 32px;
  }

  .phone-frame-small {
    width: 200px;
    height: 420px;
    border-radius: 28px;
  }
}
