/* omove – Refined Editorial Landing Page */

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

:root {
  --teal: #0D9488;
  --teal-deep: #115E59;
  --teal-soft: #CCFBF1;
  --teal-glow: rgba(13, 148, 136, .08);
  --coral: #F97066;
  --coral-soft: #FEE2E2;
  --ink: #1C1917;
  --stone: #57534E;
  --shell: #E7E5E4;
  --canvas: #F7F6F3;
  --white: #FFFFFF;

  --display: 'Sora', system-ui, sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;

  --max-w: 1120px;
  --px: 24px;
  --radius: 20px;
  --radius-sm: 14px;
}

html { scroll-behavior: smooth; }

#cityGrid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-deep); }
img { max-width: 100%; display: block; }

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

/* Ensure all content sits above the canvas */
.nav, .hero, .social-proof, .features, .how-it-works, .pricing, .cta-banner, .footer, .legal {
  position: relative;
  z-index: 1;
}

/* ===== Scroll Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

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

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, .8);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(231, 229, 228, .6);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-svg {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--stone);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--ink);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--teal-deep); transform: translateY(-1px); color: var(--white) !important; }
.nav-cta::after { display: none; }

.nav-cta--soon {
  background: var(--shell);
  color: var(--stone) !important;
  cursor: default;
}
.nav-cta--soon:hover { background: var(--shell); transform: none; color: var(--stone) !important; }

/* Coming Soon buttons */
.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--shell);
  color: var(--stone);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  cursor: default;
  position: relative;
}

.btn--soon {
  background: var(--shell) !important;
  color: var(--stone) !important;
  border-color: var(--shell) !important;
  cursor: default !important;
  box-shadow: none !important;
}
.btn--soon:hover { transform: none !important; }

.btn-white--soon {
  background: rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.7) !important;
  cursor: default;
  box-shadow: none !important;
}
.btn-white--soon:hover { transform: none !important; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle svg { width: 24px; height: 24px; color: var(--ink); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px var(--px) 20px;
  background: rgba(250, 250, 249, .98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--shell);
}

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

.nav-mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--shell);
}

.nav-mobile-menu a:last-child { border-bottom: none; }

.nav-mobile-menu .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  border-bottom: none;
}

/* ===== Hero ===== */
.hero {
  padding: 72px 0 48px;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient orb behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, .06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-text {
  text-align: left;
  animation: slideInLeft .8s cubic-bezier(.16, 1, .3, 1) both;
  background: rgba(247, 246, 243, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 40px 36px;
  margin: -40px -36px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2.5px;
  margin: 0 0 22px;
}

.hero h1 .accent {
  color: var(--teal);
  position: relative;
  display: inline-block;
}

/* Subtle underline accent — coral for dual-brand energy */
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--coral-soft);
  border-radius: 3px;
  z-index: -1;
}

.hero p {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--stone);
  max-width: 460px;
  margin: 0 0 36px;
  line-height: 1.55;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 4px 16px rgba(13, 148, 136, .25);
}
.btn-primary:hover {
  background: var(--teal-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, .3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--shell);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  animation: slideInRight .8s cubic-bezier(.16, 1, .3, 1) .15s both;
}

/* Glow effect behind mockup */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(13, 148, 136, .1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-mockup {
  max-width: 290px;
  width: 100%;
  border-radius: 40px;
  box-shadow:
    0 40px 80px rgba(28, 25, 23, .1),
    0 16px 32px rgba(28, 25, 23, .06),
    0 0 0 1px rgba(28, 25, 23, .04);
  background: var(--white);
  padding: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-mockup-img {
  width: 100%;
  border-radius: 32px;
  display: block;
}

/* ===== Social Proof ===== */
.social-proof {
  padding: 36px 0;
  border-top: 1px solid var(--shell);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -1px;
}

.stat-number--coral {
  color: var(--coral);
}

.stat-label {
  font-size: 13px;
  color: var(--stone);
  font-weight: 500;
  margin-top: 2px;
}

/* ===== Section Shared ===== */
.section-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--stone);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.5;
}

/* ===== Features ===== */
.features {
  padding: 88px 0;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--shell);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

/* Hover accent bar */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(28, 25, 23, .08), 0 0 0 1px rgba(13, 148, 136, .12);
  transform: translateY(-4px);
}

.feature-card:hover::before { transform: scaleX(1); }

/* Alternating coral accent on even cards */
.feature-card:nth-child(even)::before {
  background: var(--coral);
}
.feature-card:nth-child(even):hover .feature-icon {
  background: var(--coral);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
  transition: all .3s;
}

.feature-card:hover .feature-icon {
  background: var(--teal);
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.55;
}

/* ===== How it Works ===== */
.how-it-works {
  padding: 88px 0;
  background: var(--white);
  border-top: 1px solid var(--shell);
  border-bottom: 1px solid var(--shell);
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
  counter-reset: step;
}

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

.step-number {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 800;
  color: var(--coral-soft);
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -3px;
}

.step h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}

/* Connector lines between steps — teal to coral gradient */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-soft), var(--coral-soft));
}

/* ===== Pricing ===== */
.pricing {
  padding: 88px 0;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 52px auto 0;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--shell);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: all .3s;
}

.pricing-card--free:hover {
  border-color: var(--stone);
}

.pricing-card--pro {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(13, 148, 136, .1);
}

.pricing-card--pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
}

.pricing-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}

.pricing-card--pro .pricing-label {
  color: var(--teal);
}

.pricing-card--pro .pricing-price {
  color: var(--coral);
}

.pricing-price {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1;
}

.pricing-unit {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 9px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(231, 229, 228, .6);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 1px;
}

.pricing-feature--disabled {
  opacity: .35;
}

.pricing-feature--disabled svg {
  color: var(--stone) !important;
}

.pricing-note {
  font-size: 12px;
  color: var(--stone);
  margin-top: 12px;
  text-align: center;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 88px 0;
  background: var(--teal-deep);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(13, 148, 136, .3) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(249, 112, 102, .1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 18px;
  opacity: .75;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--teal-deep);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); color: var(--teal-deep); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ===== Footer ===== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--shell);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--stone); max-width: 260px; line-height: 1.5; }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--stone);
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--shell);
  font-size: 13px;
  color: var(--stone);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--stone); font-size: 13px; }

/* ===== Legal Pages ===== */
.legal {
  padding: 60px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal .legal-date {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 40px;
}

.legal h2 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal p, .legal li {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal a { text-decoration: underline; }

/* ===== Plan Generation Demo (inside mockup) ===== */
.hero-mockup {
  cursor: pointer;
  position: relative;
}

.hero-mockup-img {
  transition: opacity .4s ease;
}

/* Generating animation layer */
.mockup-generating {
  position: absolute;
  inset: 10px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--canvas);
  border-radius: 32px;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 2;
}

.mockup-progress-ring {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 16px;
}

.mockup-progress-ring svg {
  width: 90px;
  height: 90px;
  transform: rotate(-90deg);
}

.mockup-progress-ring .ring-bg {
  fill: none;
  stroke: var(--shell);
  stroke-width: 6;
}

.mockup-progress-ring .ring-fill {
  fill: none;
  stroke: var(--teal);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 376.99;
  stroke-dashoffset: 376.99;
  transition: stroke-dashoffset .3s ease;
}

.mockup-progress-percent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -1px;
}

.mockup-gen-title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
  text-align: center;
}

.mockup-gen-subtitle {
  font-size: 11px;
  color: var(--stone);
  text-align: center;
  margin-bottom: 16px;
}

.mockup-task-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-task-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--white);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
  border: 1px solid var(--shell);
}

.mockup-task-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.mtask-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  transition: background .3s;
}

.mockup-task-item.visible .mtask-check {
  background: var(--teal);
  color: var(--white);
}

/* Plan result image */
.mockup-result-img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  border-radius: 32px;
  display: none;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 2;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  :root { --px: 20px; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero { padding: 40px 0 32px; }
  .hero::before { display: none; }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-text {
    text-align: center;
    animation: fadeUp .6s cubic-bezier(.16, 1, .3, 1) both;
    padding: 28px 20px;
    margin: -28px -20px;
  }
  .hero-text p { margin-left: auto; margin-right: auto; margin-bottom: 28px; }
  .hero-actions { justify-content: center; }
  .hero h1 { margin-bottom: 16px; letter-spacing: -1.5px; }

  .btn-primary, .btn-secondary {
    padding: 13px 24px;
    font-size: 14px;
  }

  .hero-visual { animation: fadeUp .6s cubic-bezier(.16, 1, .3, 1) .1s both; }
  .hero-visual::before { display: none; }
  .hero-mockup {
    max-width: 200px;
    padding: 8px;
    border-radius: 28px;
    animation: none;
  }
  .hero-mockup-img { border-radius: 22px; }

  .mockup-generating { inset: 8px; border-radius: 22px; padding: 16px 12px; }
  .mockup-progress-ring { width: 70px; height: 70px; margin-bottom: 12px; }
  .mockup-progress-ring svg { width: 70px; height: 70px; }
  .mockup-progress-percent { font-size: 18px; }
  .mockup-gen-title { font-size: 12px; }
  .mockup-gen-subtitle { font-size: 10px; margin-bottom: 10px; }
  .mockup-task-item { font-size: 10px; padding: 5px 8px; gap: 6px; }
  .mtask-check { width: 14px; height: 14px; }
  .mtask-check svg { width: 8px; height: 8px; }
  .mockup-result-img { inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); border-radius: 22px; }

  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 24px 20px; }
  .feature-card::before { display: none; }

  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step::after { display: none; }
  .step-number { font-size: 48px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 24px; }
  .pricing-price { font-size: 40px; }

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

  .social-proof { padding: 28px 0; }
  .features, .how-it-works, .pricing { padding: 60px 0; }

  .section-title { font-size: 26px; letter-spacing: -1px; }
  .section-subtitle { font-size: 16px; margin-bottom: 36px; }

  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: 24px; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: row; gap: 10px; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 13px; }
}
