/* ============================================================
   OmNom Landing Page — Styles
   Warm, playful aesthetic with bold typography to match
   the fuzzy monster mascot. Cream tones + coral accents.
   ============================================================ */

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

:root {
  /* Palette */
  --cream:       #FFF8F0;
  --cream-dark:  #F5EDE3;
  --ink:         #1A1613;
  --ink-soft:    #4A4340;
  --ink-muted:   #8A8280;
  --coral:       #FF6B4A;
  --coral-dark:  #E5553A;
  --coral-light: #FFDDD4;
  --peach:       #FFE8D6;
  --warm-white:  #FFFCF9;
  --charcoal:    #2C2826;
  --green:       #2A8A5E;
  --green-light: #E6F5ED;
  --red-light:   #FDE8E8;
  --red-soft:    #C53030;

  /* Typography */
  --font-display: 'Fredoka', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --content-max: 1200px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }


/* --- Reveal animation base --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.5s; }


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  box-shadow: 0 4px 20px rgba(255, 107, 74, 0.3);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  box-shadow: 0 6px 28px rgba(255, 107, 74, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-muted);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.btn-full { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }


/* ========================
   NAV
   ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 10px 32px;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 60px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: all 0.3s var(--ease-out-expo);
}
.nav-links .nav-cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5.5px);
}
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5.5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a { color: var(--ink); }
.mobile-menu .nav-cta {
  background: var(--coral);
  color: #fff;
  padding: 14px 40px;
  border-radius: 60px;
  font-size: 1.2rem;
}


/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 60px;
  overflow: hidden;
}

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

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--peach);
  top: -200px; right: -100px;
  animation: blobFloat 20s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--coral-light);
  bottom: -100px; left: -100px;
  animation: blobFloat 25s ease-in-out infinite reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  background: var(--peach);
  top: 40%; left: 50%;
  animation: blobFloat 18s ease-in-out infinite 3s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--coral-light);
  color: var(--coral-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 60px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--coral);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.hero-store-actions {
  align-items: stretch;
}

.btn-store {
  min-width: 220px;
  min-height: 64px;
  padding: 14px 22px;
  gap: 14px;
  border-radius: 22px;
  white-space: normal;
  text-align: left;
}

.btn-store-ios {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 0 10px 28px rgba(26, 22, 19, 0.2);
}

.btn-store-ios:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(26, 22, 19, 0.24);
}

.btn-store-google {
  background: rgba(255, 248, 240, 0.94);
  color: var(--ink);
  border-color: rgba(26, 22, 19, 0.12);
  box-shadow: 0 10px 28px rgba(26, 22, 19, 0.08);
}

.btn-store-google:hover {
  background: #fff;
  border-color: rgba(26, 22, 19, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(26, 22, 19, 0.12);
}

.store-badge-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: block;
}

.store-badge-icon-ios {
  filter: brightness(0) invert(1);
}

.store-badge-copy {
  display: inline-block;
  line-height: 1.15;
}

.hero-fine {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* Hero phone mockups */
.hero-phones {
  position: relative;
  width: 360px;
  height: 520px;
  flex-shrink: 0;
}

.hero-phone {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.hero-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-phone-back {
  width: 230px;
  top: 20px;
  left: 0;
  z-index: 1;
  animation: phoneFloatBack 6s ease-in-out infinite;
}

.hero-phone-front {
  width: 210px;
  top: 50px;
  right: 0;
  z-index: 2;
  animation: phoneFloatFront 6s ease-in-out infinite 1.5s;
}

@keyframes phoneFloatBack {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(-4deg); }
}

@keyframes phoneFloatFront {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--ink-muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--coral);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}


/* ========================
   PROOF STRIP
   ======================== */
.proof-strip {
  background: var(--ink);
  padding: 48px 32px;
}
.proof-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.proof-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--coral);
  letter-spacing: -0.03em;
}
.proof-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}


/* ========================
   SECTIONS SHARED
   ======================== */
.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) 32px;
}
.section-header {
  text-align: center;
  margin-bottom: 14px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section-subtitle {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* ========================
   WHAT'S INCLUDED / FEATURES
   ======================== */
.included {
  background: var(--warm-white);
}

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

.included-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease-out-expo);
}
.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-color: var(--coral-light);
}

.included-card-wide {
  grid-column: 1 / -1;
}

.included-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--coral-light);
  color: var(--coral-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.included-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.included-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pay-badge {
  background: var(--warm-white);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  padding: 8px 18px;
  border-radius: 60px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.pay-badge-alt {
  background: var(--ink);
  color: var(--coral);
  border-color: transparent;
}


/* ========================
   TIPLESS DELIVERY
   ======================== */
.delivery {
  background: var(--cream);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.delivery-card {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease-out-expo);
}
.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.delivery-card-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: transparent;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}
.delivery-card-dark:hover {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.2);
}

.delivery-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.delivery-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.delivery-card-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.delivery-example {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.delivery-example-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.delivery-example-tag {
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 60px;
}

.delivery-example-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.delivery-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.delivery-split-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
}

.delivery-split-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.delivery-split-total .delivery-split-amount {
  color: var(--coral);
  font-size: 2.2rem;
}

.delivery-split-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.delivery-split-divider {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
}

.delivery-note {
  margin-top: 20px;
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Delivery benefits */
.delivery-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.delivery-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.delivery-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--coral-light);
  color: var(--coral-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delivery-benefit strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.delivery-benefit p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}


/* ========================
   SCREENSHOTS
   ======================== */
.screenshots {
  background: var(--warm-white);
}

.screenshots-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.screenshot-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.screenshot-frame img {
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 2px solid rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 280px;
  transition: all 0.4s var(--ease-out-expo);
}
.screenshot-frame:hover img {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
}

.screenshot-caption {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink-muted);
  text-align: center;
}


/* ========================
   COMPARISON TABLE
   ======================== */
.compare {
  background: var(--cream);
}

.compare-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
  background: var(--warm-white);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: center;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 24px;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: rgba(255, 107, 74, 0.03);
}

.compare-label {
  text-align: left !important;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink);
  white-space: nowrap;
}

.compare-highlight {
  background: rgba(255, 107, 74, 0.04) !important;
  position: relative;
}

.compare-table thead .compare-highlight {
  background: var(--ink) !important;
  color: var(--cream) !important;
}

.compare-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.compare-brand-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: invert(1);
}

.compare-good {
  color: var(--green);
}
.compare-good strong {
  font-family: var(--font-display);
}

.compare-bad {
  color: var(--red-soft);
  font-size: 0.88rem;
}

.compare-footnote {
  max-width: 700px;
  margin: 32px auto 0;
  text-align: center;
}

.compare-footnote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--warm-white);
  border-radius: 18px;
  padding: 24px 28px;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
}


/* ========================
   CALCULATOR
   ======================== */
.calculator {
  background: var(--warm-white);
}

.calc-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.calc-row:last-child {
  margin-bottom: 0;
}

.calc-row label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  flex: 1 1 auto;
}

.calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.calc-slider-wrap input[type="range"] {
  width: 140px;
  cursor: pointer;
  accent-color: var(--coral);
  height: 6px;
}

.calc-badge {
  min-width: 56px;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.calc-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 28px 0 24px;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.calc-result-tile {
  padding: 20px 18px;
  border-radius: 16px;
  background: var(--warm-white);
  border: 1.5px solid rgba(0, 0, 0, 0.05);
}

.calc-result-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.calc-result-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}

.calc-result-highlight {
  background: var(--green-light);
  border-color: rgba(42, 138, 94, 0.15);
}
.calc-result-highlight .calc-result-value {
  color: var(--green);
  font-size: 2rem;
}

.calc-result-loss {
  background: var(--red-light);
  border-color: rgba(197, 48, 48, 0.1);
}
.calc-result-loss .calc-result-value {
  color: var(--red-soft);
}

.calc-result-savings .calc-result-value {
  color: var(--coral);
  font-size: 2rem;
}

.calc-helpers {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc-helpers p {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
}


/* ========================
   HOW IT WORKS
   ======================== */
.how-it-works {
  background: var(--cream);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1.5px solid rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease-out-expo);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  border-color: var(--coral-light);
}
.step-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--coral);
  opacity: 0.3;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1;
}
.step:hover .step-number { opacity: 0.7; }
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ========================
   FINAL CTA
   ======================== */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 32px;
  background: var(--warm-white);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.blob-4 {
  width: 500px; height: 500px;
  background: var(--coral-light);
  top: -200px; right: -100px;
  animation: blobFloat 22s ease-in-out infinite;
}
.blob-5 {
  width: 400px; height: 400px;
  background: var(--peach);
  bottom: -150px; left: -50px;
  animation: blobFloat 18s ease-in-out infinite 5s;
}

.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta-mascot {
  width: 120px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.06));
  animation: mascotBob 5s ease-in-out infinite;
}

@keyframes mascotBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.final-cta p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--ink);
  padding: 48px 32px;
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: invert(1);
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cream);
}
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.footer-links a:hover { color: var(--cream); }
.footer-legal {
  display: flex;
  gap: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal a:hover { color: var(--cream); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}


/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-fine { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-phones {
    width: 300px;
    height: 420px;
    margin: 0 auto;
    order: -1;
  }
  .hero-phone-back {
    width: 190px;
  }
  .hero-phone-front {
    width: 170px;
  }
  .included-grid { grid-template-columns: 1fr; }
  .included-card-wide { grid-column: auto; }
  .delivery-grid { grid-template-columns: 1fr; }
  .screenshots-row {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 48px auto 0;
  }
  .steps { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .proof-inner { flex-direction: column; gap: 24px; }
  .proof-divider { width: 48px; height: 1px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 340px; }
  .section-inner { padding: 64px 20px; }
  .step { padding: 28px 24px; }
  .included-card { padding: 28px 24px; }
  .hero-scroll-hint { display: none; }
  .calc-card { padding: 28px 20px; }
  .calc-slider-wrap input[type="range"] { width: 100px; }
  .calc-results { grid-template-columns: 1fr; }
  .calc-result-highlight .calc-result-value { font-size: 1.7rem; }
  .delivery-card { padding: 28px 24px; }
  .delivery-split { gap: 10px; }
  .delivery-split-amount { font-size: 1.4rem; }
  .delivery-split-total .delivery-split-amount { font-size: 1.8rem; }
  .compare-table th,
  .compare-table td { padding: 14px 16px; font-size: 0.82rem; }
  .payment-badges { gap: 8px; }
  .pay-badge { padding: 6px 14px; font-size: 0.78rem; }
  .hero-phones {
    width: 250px;
    height: 340px;
  }
  .hero-phone-back {
    width: 160px;
  }
  .hero-phone-front {
    width: 140px;
    top: 30px;
  }
}
