/* ============================================================
   Nuti Landing Page — Glossy Dark Blue Theme
   (Modern, Out-of-the-box Positioning, Glowy)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors - Glowy Blue */
  --blue-glow: #3B82F6;
  --blue-deep: #1E3A8A;
  --blue-bright: #60A5FA;
  --dark-bg: #030712; /* Deepest Navy/Black */
  --dark-surface: rgba(17, 24, 39, 0.7);
  
  /* Text */
  --text-primary: #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-tertiary: #6B7280;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  background: var(--dark-bg);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Privacy page override */
body.page-privacy {
  background: var(--dark-bg);
}

/* Terms page override */
body.page-terms {
  background: var(--dark-bg);
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.text-glow {
  color: var(--blue-bright);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.text-gradient {
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.95);
}

.btn--primary {
  background: var(--blue-glow);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.btn--primary:hover {
  background: var(--blue-bright);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
}

.btn--glass {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--blue-glow);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn--full {
  width: 100%;
  padding: 14px 24px;
}

/* ---------- Section Helpers ---------- */
.section-header {
  margin-bottom: 80px;
}

.section-header--center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-sm);
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  height: 80px;
  display: flex;
  align-items: center;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo-icon {
  color: var(--blue-bright);
  font-size: 24px;
  filter: drop-shadow(0 0 8px var(--blue-glow));
}

.navbar__logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.navbar__link:hover {
  color: var(--blue-bright);
}

.navbar__cta-btn {
  background: var(--blue-glow);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 220px 0 100px;
  overflow: hidden;
}

.hero__glow-sphere {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 60px 60px;
  position: relative;
  z-index: 1;
}

.hero__stats-container {
  grid-column: 1 / -1;
  align-self: end;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-bright);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue-bright);
}

.hero__title {
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title-line1 {
  display: block;
  white-space: nowrap;
}

.hero__title-glow {
  white-space: nowrap;
}

.hero__title-nowrap {
  white-space: nowrap;
}

.hero__subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero__subtitle-line2 {
  display: block;
}

@media (min-width: 1025px) {
  .hero__subtitle {
    white-space: nowrap;
    max-width: none;
  }
  .hero__subtitle-line2 {
    display: inline;
  }
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

/* Out of the box visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__main-visual {
  width: 300px;
  height: 300px;
  background: var(--blue-deep);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  position: relative;
  animation: morph 8s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(59, 130, 246, 0.4);
}

.visual-orb {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-bright));
  border-radius: inherit;
  opacity: 0.8;
  filter: blur(20px);
  z-index: 0;
}

.hero__graph-img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  /* height: calc(100% - 24px); */
  object-fit: contain;
  border-radius: 16px;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@keyframes morph {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.floating-card {
  position: absolute;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  box-shadow: var(--glass-shadow);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  color: var(--blue-bright);
}

.floating-card--1 {
  top: -20px;
  right: -40px;
  animation-delay: 0s;
}

.floating-card--2 {
  bottom: 20px;
  left: -60px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes float-mobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-32px); }
}

/* Stats at the bottom of hero (inside hero layout on desktop) */
.hero__stats-container {
  margin-top: 48px;
  padding: 32px 0 0;
  border-top: 1px solid var(--glass-border);
}

.hero__stats {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  text-align: left;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-bright);
  display: block;
}

.hero__stat-label {
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 140px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card__desc {
  color: var(--text-secondary);
  font-size: 15px;
  flex-grow: 1;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--blue-glow);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Replaces .feature-card__icon */
.feature-illustration {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  position: relative;
}

.feature-illustration svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.3));
}

/* --- Illustration Animations --- */

/* Orb Pulse */
@keyframes orbPulse {
  0% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.15), inset 0 0 20px rgba(59, 130, 246, 0.05); transform: scale(1); }
  50% { box-shadow: 0 0 50px rgba(59, 130, 246, 0.3), inset 0 0 30px rgba(59, 130, 246, 0.1); transform: scale(1.02); }
  100% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.15), inset 0 0 20px rgba(59, 130, 246, 0.05); transform: scale(1); }
}

/* Pulsing Nodes */
.pulse-node {
  animation: nodePulse 2s infinite ease-in-out;
}
@keyframes nodePulse {
  0%, 100% { opacity: 0.5; r: 3; }
  50% { opacity: 1; r: 4.5; }
}

/* Chart Draw */
.chart-draw {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 3s ease-out infinite alternate;
}
@keyframes drawLine {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

/* Camera Scan */
.scan-frame {
  animation: scanPulse 2s infinite alternate;
}
.scan-line-anim {
  animation: scanMove 2.5s ease-in-out infinite;
}

@keyframes scanMove {
  0% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(40px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.5; }
}

@keyframes scanPulse {
  0% { opacity: 0.2; stroke-width: 1; }
  100% { opacity: 0.8; stroke-width: 2; }
}

/* Gauge Fill */
.gauge-arc {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: gaugeFill 1.5s ease-out forwards;
  animation-delay: 0.5s;
}
.gauge-needle {
  transform-origin: 50px 50px;
  transform: rotate(-45deg);
  animation: gaugeNeedle 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.5s;
}
@keyframes gaugeFill {
  to { stroke-dashoffset: 60; }
}
@keyframes gaugeNeedle {
  to { transform: rotate(45deg); }
}

/* Gut Particles */
.gut-particle {
  animation: floatParticle 3s ease-in-out infinite;
}
.gut-particle.p1 { animation-delay: 0s; }
.gut-particle.p2 { animation-delay: 1s; }
.gut-particle.p3 { animation-delay: 0.5s; }
.gut-particle.p4 { animation-delay: 1.5s; }
@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -5px); }
}

/* Chart Bars */
.chart-bar {
  transform-origin: bottom;
  transform: scaleY(0);
  animation: barGrow 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.chart-bar.b1 { animation-delay: 0.2s; }
.chart-bar.b2 { animation-delay: 0.4s; }
.chart-bar.b3 { animation-delay: 0.6s; }
.chart-bar.b4 { animation-delay: 0.8s; }
@keyframes barGrow {
  to { transform: scaleY(1); }
}

/* Star/Tips Pulse */
.star-pulse {
  transform-origin: 50px 45px;
  animation: starPulse 3s ease-in-out infinite;
}
@keyframes starPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.2) rotate(10deg); opacity: 1; }
}

/* Coach chat lines */
.coach-line {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: coachLineDraw 2s ease-out infinite alternate;
}
@keyframes coachLineDraw {
  0% { stroke-dashoffset: 40; opacity: 0.5; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

/* Shield Check */
.shield-check {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: checkDraw 1s ease-out forwards;
  animation-delay: 0.5s;
}
@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card__desc {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 140px 0;
  background: radial-gradient(circle at 0% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.steps-v2 {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.step-v2 {
  display: flex;
  align-items: center;
  gap: 80px;
}

.step-v2--reverse {
  flex-direction: row-reverse;
}

.step-v2__content {
  flex: 1;
  min-width: 0;
}

.step-v2__num {
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  display: block;
  margin-bottom: -40px;
  margin-left: -20px;
  pointer-events: none;
  user-select: none;
}

.step-v2__title {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-v2__desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 400px;
}

.step-v2__visual {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.2), rgba(0, 0, 0, 0));
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--blue-bright);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15), inset 0 0 20px rgba(59, 130, 246, 0.05);
  animation: orbPulse 3s infinite ease-in-out;
}

.step-v2__visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.2));
}

.step-v2__visual::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--blue-glow) 0%, transparent 60%);
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1;
}

/* Desktop: grid-based layout for clear content/visual columns */
@media (min-width: 769px) {
  .how-it-works .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .how-it-works .section-header {
    width: 100%;
  }

  .steps-v2 {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    gap: 100px;
  }

  .step-v2 {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 48px 64px;
    align-items: center;
  }

  .step-v2--reverse {
    grid-template-columns: 200px 1fr;
  }

  .step-v2--reverse .step-v2__content {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }

  .step-v2--reverse .step-v2__visual {
    grid-column: 1;
    grid-row: 1;
  }

  .step-v2__content {
    min-width: 0;
  }

  .step-v2__num {
    font-size: 72px;
    margin-bottom: -32px;
    margin-left: -16px;
  }

  .step-v2--reverse .step-v2__num {
    margin-left: 0;
    margin-right: -16px;
  }

  .step-v2__title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .step-v2__desc {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.6;
  }

  .step-v2__visual {
    width: 200px;
    height: 200px;
    flex: none;
    justify-self: center;
  }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 140px 0;
}

.pricing__grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card-v2 {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  transition: 0.3s;
}

.pricing-card-v2:hover {
  border-color: var(--blue-glow);
  transform: scale(1.02);
}

.pricing-card-v2--featured {
  background: rgba(59, 130, 246, 0.05);
  border-color: var(--blue-glow);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.pricing-card-v2__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--blue-glow);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.pricing-card-v2__name {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-card-v2__price {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 32px;
}

.pricing-card-v2__price span {
  font-size: 16px;
  color: var(--text-tertiary);
}

.pricing-card-v2__trial {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-top: -24px;
  margin-bottom: 8px;
}

.pricing-card-v2__savings {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-bright);
  margin-top: 0;
  margin-bottom: 24px;
}

.pricing-card-v2__features {
  margin-bottom: 40px;
}

.pricing-card-v2__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.pricing-card-v2__features i {
  color: var(--blue-bright);
}

/* ============================================================
   DOWNLOAD
   ============================================================ */
.download {
  padding: 140px 0;
}

.download__glass-card {
  background: linear-gradient(135deg, var(--blue-deep), var(--dark-bg));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download__glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.download__content {
  position: relative;
  z-index: 1;
}

.download__title {
  font-size: 48px;
  margin-bottom: 16px;
}

.download__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px 0;
  border-top: 1px solid var(--glass-border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__tagline {
  color: var(--text-tertiary);
  font-size: 14px;
  margin-top: 8px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.footer__socials a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.footer__socials a:hover {
  background: var(--blue-glow);
  border-color: var(--blue-glow);
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
    gap: 40px;
  }
  
  .hero__stats-container {
    justify-self: center;
  }

  .hero__stats {
    justify-content: center;
    text-align: center;
  }

  .hero__stat {
    align-items: center;
  }
  
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    margin-top: 40px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid-v2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Base: smaller text and touch targets on mobile */
  html {
    font-size: 14px;
  }

  /* Mobile Navigation Overlay */
  .navbar {
    height: 64px;
  }

  .navbar__logo-icon {
    font-size: 18px;
  }

  .navbar__logo-text {
    font-size: 18px;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    padding: 20px;
  }

  .navbar__links.active {
    transform: translateY(0);
  }

  .navbar__link {
    font-size: 15px;
    font-weight: 700;
  }

  .navbar__hamburger {
    display: flex;
    z-index: 1001;
  }

  .navbar__hamburger span {
    width: 20px;
    height: 2px;
  }

  .navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* Hero Adjustments */
  .hero {
    padding: 0;
    display: block;
    min-height: auto;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero__content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px; /* Navbar offset */
    padding-bottom: 40px;
  }

  .hero__visual {
    min-height: 60vh;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
  }

  .hero__main-visual {
    animation: morph 6s ease-in-out infinite;
    width: 280px;
    height: 280px;
  }

  .hero__title {
    font-size: 42px;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero__badge {
    font-size: 12px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero__actions .btn {
    font-size: 13px;
    padding: 12px 20px;
  }

  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }
  
  .hero__stat-number {
    font-size: 28px;
  }

  .hero__stat-label {
    font-size: 12px;
  }

  /* Adjust floating cards for mobile */
  .floating-card {
    padding: 12px 16px;
    font-size: 13px;
    animation: float-mobile 5s ease-in-out infinite;
  }

  .floating-card i {
    font-size: 16px;
  }
  
  .floating-card--1 {
    right: 0;
    top: 10px;
  }
  
  .floating-card--2 {
    left: 0;
    bottom: 60px;
  }

  /* Features Adjustments */
  .features {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-tag {
    font-size: 11px;
    padding: 3px 10px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .feature-illustration {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .feature-card__title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .feature-card__desc {
    font-size: 13px;
  }

  .feature-card {
    padding: 24px;
  }

  /* How It Works Adjustments */
  .how-it-works {
    padding: 80px 0;
  }

  .steps-v2 {
    gap: 60px;
  }

  .step-v2 {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }

  .step-v2--reverse {
    flex-direction: column-reverse;
  }
  
  .step-v2__visual {
    width: 96px;
    height: 96px;
    margin: 0 auto;
    font-size: 32px;
  }
  
  .step-v2__num {
    margin-left: 0;
    margin-bottom: -20px;
    font-size: 48px;
  }

  .step-v2__title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .step-v2__desc {
    font-size: 14px;
  }

  /* Pricing Adjustments */
  .pricing {
    padding: 80px 0;
  }
  
  .pricing-card-v2 {
    padding: 24px;
  }

  .pricing-card-v2__name {
    font-size: 18px;
  }

  .pricing-card-v2__price {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .pricing-card-v2__price span {
    font-size: 14px;
  }

  .pricing-card-v2__features li {
    font-size: 13px;
    gap: 8px;
    margin-bottom: 12px;
  }

  .pricing-card-v2__features i {
    font-size: 14px;
  }

  /* Download Adjustments */
  .download {
    padding: 80px 0;
  }

  .download__glass-card {
    padding: 40px 24px;
  }

  .download__title {
    font-size: 26px;
  }

  .download__subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  /* Footer Adjustments */
  .footer {
    padding: 60px 0;
  }

  .footer__tagline {
    font-size: 12px;
  }

  .footer__links a {
    font-size: 13px;
  }

  .footer__socials a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.1;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__stat-number {
    font-size: 24px;
  }

  .section-title {
    font-size: clamp(20px, 5vw, 28px);
  }

  .feature-illustration {
    width: 48px;
    height: 48px;
  }

  .step-v2__visual {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }

  .step-v2__num {
    font-size: 40px;
  }

  .step-v2__title {
    font-size: 18px;
  }

  .download__title {
    font-size: 22px;
  }

  .navbar__logo-icon {
    font-size: 16px;
  }

  .navbar__logo-text {
    font-size: 16px;
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn--full, .btn--lg {
    width: 100%;
    font-size: 13px;
    padding: 12px 20px;
  }
  
  .hero__main-visual {
    width: 280px;
    height: 280px;
  }
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

