/* ============================================================
   Cobble styles.css v4
   Premium redesign: Linear/Superwall/Raycast level quality
   Brand: #2D6A2D green, #E8733A orange, #FAFAF7 background
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --green:         #2D6A2D;
  --green-light:   #4A9B4A;
  --green-glow:    rgba(45,106,45,0.3);
  --green-subtle:  rgba(45,106,45,0.08);
  --orange:        #E8733A;
  --orange-light:  rgba(232,115,58,0.15);
  --bg:            #FAFAF7;
  --bg-dark:       #0F1A0F;
  --bg-dark-2:     #162316;
  --white:         #FFFFFF;
  --text:          #0A0F0A;
  --text-mid:      #3D4A3D;
  --text-soft:     #7A8A7A;
  --text-ghost:    rgba(255,255,255,0.5);
  --border:        rgba(0,0,0,0.08);
  --border-dark:   rgba(255,255,255,0.1);
  --radius:        20px;
  --radius-lg:     28px;
  --radius-pill:   100px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow:        0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.15);
  --shadow-glow:   0 0 40px rgba(45,106,45,0.25);
  --nav-h:         68px;
  --transition:    0.22s cubic-bezier(0.4,0,0.2,1);

  /* Legacy aliases used by existing inner pages */
  --green-dark:    #1A3A1A;
  --green-mid:     #4A8B4A;
  --orange-light-bg: #FFF0E8;
  --border-solid:  #E8E8E0;
  --radius-sm:     16px;
  --radius-xs:     10px;
  --nav-height:    68px;
  --shadow-xl:     0 32px 80px rgba(0,0,0,0.2);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; border: none; outline: none; background: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }

/* ── Keyframe Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
  50%       { transform: translateY(-16px) rotate(var(--rot, 0deg)); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
  50%       { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.82; transform: scale(1.04); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}
.section     { padding: 100px 0; }
.section-sm  { padding: 64px 0; }
.text-center { text-align: center; }
.text-green  { color: var(--green); }
.text-orange { color: var(--orange); }
.text-soft   { color: var(--text-soft); }
.text-mid    { color: var(--text-mid); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* ── Eyebrow pill (light bg variant) ── */
.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-subtle);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  border: 1px solid rgba(45,106,45,0.15);
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, #4fc94f 0%, #a8e6a8 50%, #7dd87d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, var(--orange) 0%, #f4a261 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Labels (pill badges) ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;
  border: none;
}
.section-label.dark {
  background: none;
  color: rgba(110,224,110,0.9);
  border: none;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title.on-dark { color: var(--white); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-top: 18px;
  max-width: 600px;
  line-height: 1.7;
}
.section-subtitle.on-dark { color: rgba(255,255,255,0.65); }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(45,106,45,0.3);
}
.btn-secondary:hover {
  background: var(--green-subtle);
  border-color: var(--green);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--bg-dark-2);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--text);
}
.btn-white:hover {
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-sm  { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg  { padding: 18px 40px; font-size: 1.05rem; font-weight: 700; }
.btn-xl  { padding: 22px 52px; font-size: 1.15rem; font-weight: 700; }
.btn-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled,
.nav.nav-light {
  background: rgba(250,250,247,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav.nav-dark-bg {
  background: rgba(15,26,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.nav.nav-dark-bg .nav-logo-text { color: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: var(--text-mid);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-links a.active { color: var(--green); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.nav.nav-dark-bg .nav-links a { color: rgba(255,255,255,0.65); }
.nav.nav-dark-bg .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav.nav-dark-bg .nav-links a.active { color: #6ee06e; }
.nav.nav-dark-bg .nav-links a.active::after { background: #6ee06e; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-hamburger:hover { background: rgba(0,0,0,0.06); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.nav-dark-bg .nav-hamburger span { background: var(--white); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 8999;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
  overflow-y: auto;
  animation: fadeSlideDown 0.2s ease;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 18px;
  border-radius: 14px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { background: var(--green-subtle); color: var(--green); }
.nav-mobile .btn { margin-top: 16px; width: 100%; text-align: center; }

/* ── Hero Dark ── */
.hero-dark {
  min-height: 100vh;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, #1a4a1a 0%, #0c1a0c 50%, #0F1A0F 100%);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

/* Animated mesh background */
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(45,106,45,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 80% 20%, rgba(74,155,74,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 60% 100%, rgba(232,115,58,0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: gradientShift 12s ease-in-out infinite;
  background-size: 200% 200%;
}
/* Subtle grid lines */
.hero-dark::after {
  content: '';
  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;
  pointer-events: none;
}

/* Floating food emoji decorations */
.hero-floaties {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-floatie {
  position: absolute;
  font-size: 2rem;
  opacity: 0.12;
  animation: float var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  --rot: var(--r, 0deg);
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-top: 40px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: #6ee06e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 24px;
  border: none;
  animation: fadeSlideUp 0.7s 0.1s both;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  animation: fadeSlideUp 0.7s 0.2s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  margin-top: 24px;
  max-width: 500px;
  line-height: 1.7;
  animation: fadeSlideUp 0.7s 0.35s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  animation: fadeSlideUp 0.7s 0.45s both;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s 0.55s both;
}
.hero-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  animation: fadeSlideUp 0.7s 0.65s both;
}

/* Dual phone mockup layout in hero */
.hero-phones {
  position: relative;
  height: 620px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  animation: fadeSlideUp 0.9s 0.3s both;
}
.hero-phone-primary {
  position: absolute;
  right: 20px;
  top: 0;
  transform: rotate(-3deg);
  z-index: 2;
  animation: float 7s ease-in-out infinite;
  --rot: -3deg;
}
.hero-phone-secondary {
  position: absolute;
  left: 0;
  top: 40px;
  transform: rotate(5deg);
  z-index: 1;
  opacity: 0.75;
  animation: float 8s 1s ease-in-out infinite;
  --rot: 5deg;
}

/* ── Phone Mockups ── */
.phone {
  background: #0d1a0d;
  border-radius: 44px;
  padding: 12px;
  position: relative;
  flex-shrink: 0;
}
.phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}
/* Side buttons */
.phone::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 80px;
  width: 3px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 0 3px 3px 0;
}
.phone-lg { width: 280px; height: 560px; }
.phone-md { width: 240px; height: 480px; }
.phone-sm { width: 200px; height: 400px; }

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1f3d1f 0%, #0a1a0a 100%);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px 16px 16px;
}
.phone-screen-light {
  background: linear-gradient(160deg, #f4f9f4 0%, #eaf3ea 100%);
}
.phone-screen-dark {
  background: linear-gradient(160deg, #0f2010 0%, #070f07 100%);
}

/* Phone status bar */
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.phone-screen-light .phone-status { color: var(--text-mid); }

/* Phone content */
.phone-header-text {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.phone-screen-light .phone-header-text { color: var(--text); }

.phone-card {
  background: rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-screen-light .phone-card {
  background: var(--white);
  border-color: transparent;
}
.phone-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-card-icon {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.phone-screen-light .phone-card-icon {
  background: var(--green-subtle);
}
.phone-card-text { flex: 1; min-width: 0; }
.phone-card-title {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.phone-screen-light .phone-card-title { color: var(--text); }
.phone-card-sub {
  font-size: 0.53rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1px;
}
.phone-screen-light .phone-card-sub { color: var(--text-soft); }

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  font-size: 0.52rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin: 2px 2px 0 0;
}
.phone-screen-light .phone-chip {
  background: var(--green-subtle);
  color: var(--green);
}

.phone-scan-area {
  flex: 1;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin: 6px 0;
  background: rgba(255,255,255,0.03);
}
.phone-scan-icon { font-size: 1.4rem; }

.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.phone-screen-light .phone-bottom-nav { border-top-color: rgba(0,0,0,0.08); }
.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.48rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.phone-nav-item.active { color: #6ee06e; }
.phone-screen-light .phone-nav-item { color: var(--text-soft); }
.phone-screen-light .phone-nav-item.active { color: var(--green); }
.phone-nav-dot {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

/* Legacy phone-mockup (used on inner pages) */
.phone-mockup {
  width: 260px;
  height: 520px;
  background: #0d1a0d;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}
.phone-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.phone-group {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}
.phone-group > div:nth-child(2) .phone-mockup { transform: translateY(-20px); }
.phone-group > div:nth-child(3) .phone-mockup { transform: translateY(-10px); }

/* ── Store Badges ── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 11px 20px;
  border-radius: 13px;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.store-badge:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}
.store-badge.coming-soon {
  opacity: 0.6;
  cursor: default;
  filter: grayscale(0.3);
}
.store-badge.coming-soon:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}
.badge-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.badge-main {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ── Proof Bar ── */
.proof-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
}
.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 6px 28px;
  border-right: 1px solid var(--border);
}
.proof-item:last-child { border-right: none; }
.proof-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Bento Grid ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.bento-cell {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.8);
  padding: 28px;
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-cell:hover {
  transform: translateY(-4px);
}
.bento-cell.span-4 { grid-column: span 4; }
.bento-cell.span-3 { grid-column: span 3; }
.bento-cell.span-2 { grid-column: span 2; }
.bento-cell.span-6 { grid-column: span 6; }
.bento-cell.tall   { min-height: 340px; }
.bento-cell.medium { min-height: 220px; }

/* Colored top accent borders */
.bento-cell.accent-green  { border-top: 3px solid var(--green); }
.bento-cell.accent-orange { border-top: 3px solid var(--orange); }
.bento-cell.accent-blue   { border-top: 3px solid #4A90D9; }
.bento-cell.accent-purple { border-top: 3px solid #8B5CF6; }

/* Dark bento cell */
.bento-cell.dark {
  background: var(--bg-dark);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.bento-cell.dark .bento-cell-icon { background: rgba(255,255,255,0.08); }
.bento-cell.dark .bento-cell-title { color: var(--white); }
.bento-cell.dark .bento-cell-desc { color: rgba(255,255,255,0.55); }

.bento-cell-icon {
  width: 52px;
  height: 52px;
  background: var(--green-subtle);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.bento-cell-icon.orange-bg { background: var(--orange-light); }
.bento-cell-icon.dark-bg { background: rgba(255,255,255,0.08); }
.bento-cell-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.05);
  position: absolute;
  right: 20px;
  bottom: 10px;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.bento-cell.dark .bento-cell-number { color: rgba(255,255,255,0.04); }
.bento-cell-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-subtle);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.bento-cell-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.bento-cell.span-4 .bento-cell-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}
.bento-cell-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── How It Works (steps) ── */
.steps-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.steps-track::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, rgba(45,106,45,0.1) 100%);
}
.step-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 28px 28px 0;
  border-radius: var(--radius);
  transition: background var(--transition);
  position: relative;
}
.step-row:hover {
  background: rgba(45,106,45,0.04);
}
.step-num-wrap {
  width: 64px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.step-num {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content { flex: 1; padding-top: 12px; }
.step-emoji { font-size: 1.6rem; margin-bottom: 10px; }
.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; }
.step-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-subtle);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* Legacy steps grid (inner pages) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(45,106,45,0.1), var(--green), rgba(45,106,45,0.1));
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-4px); }
.step-number {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step-emoji-lg { font-size: 1.5rem; margin-bottom: 10px; }
.step-title-sm { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-desc-sm { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

/* ── App Store Section ── */
.store-section {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.store-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(45,106,45,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(232,115,58,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.store-section-inner { position: relative; z-index: 1; }
.store-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.store-meta-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.store-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.1);
}

/* App icon display */
.app-icon-display {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #2D6A2D 0%, #1a4a1a 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin: 0 auto 32px;
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-5px); ; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 54px;
  height: 54px;
  background: var(--green-subtle);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-icon.orange { background: var(--orange-light); }
.feature-title { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ── Personalisation section ── */
.personalise-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.personalise-pref-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.pref-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.pref-item:hover { transform: translateX(4px); ; }
.pref-icon {
  width: 40px;
  height: 40px;
  background: var(--green-subtle);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pref-label { font-size: 0.92rem; font-weight: 600; color: var(--text); }
.pref-desc  { font-size: 0.8rem; color: var(--text-soft); margin-top: 1px; }

/* ── Pricing ── */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
}
.pricing-toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  cursor: pointer;
  user-select: none;
}
.pricing-toggle-label.active { color: var(--text); font-weight: 700; }
.pricing-toggle {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.08);
}
.pricing-toggle.yearly { background: var(--green); }
.pricing-toggle-thumb {
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}
.pricing-toggle.yearly .pricing-toggle-thumb { transform: translateX(24px); }
.pricing-save-badge {
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: none;
}
.show-yearly .pricing-save-badge { display: inline-block; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  background: var(--bg-dark);
  border-color: var(--green);
  color: var(--white);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.7); }
.pricing-price-wrap { margin-bottom: 8px; }
.pricing-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price-period { font-size: 0.88rem; color: var(--text-soft); font-weight: 400; }
.pricing-card.featured .pricing-price-period { color: rgba(255,255,255,0.5); }
.pricing-equiv  { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 4px; min-height: 20px; }
.pricing-crossed { font-size: 0.82rem; color: var(--text-soft); text-decoration: line-through; min-height: 20px; margin-bottom: 20px; }
.pricing-card.featured .pricing-equiv  { color: rgba(255,255,255,0.4); }
.pricing-card.featured .pricing-crossed { color: rgba(255,255,255,0.3); }
.pricing-divider { height: 1px; background: var(--border); margin: 22px 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.75); }
.pricing-check {
  width: 20px;
  height: 20px;
  background: var(--green-subtle);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-check {
  background: rgba(110,224,110,0.2);
  color: #6ee06e;
}
.pricing-footer-note { text-align: center; font-size: 0.8rem; color: var(--text-soft); margin-top: 32px; }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th,
.comparison-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.comparison-table th { background: var(--bg-dark); color: var(--white); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--bg); }
.comparison-table .check-yes { color: var(--green); font-weight: 700; }
.comparison-table .check-no  { color: var(--text-soft); }

/* ── CTA Section ── */
.cta-section {
  background: var(--bg-dark);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(45,106,45,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin: 20px auto 0;
  max-width: 520px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 18px; }

/* ── FAQ Accordion ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-category { margin-bottom: 40px; }
.faq-category-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-subtle);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-left: 3px solid var(--green); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
  cursor: pointer;
}
.faq-question:hover { background: var(--bg); }
.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--green-subtle);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: var(--white); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  background: var(--white);
}
.faq-item.open .faq-answer { display: block; }

/* ── Forms ── */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  display: block;
}
.form-control:focus {
  border-color: var(--green);
  outline: none;
}
.form-control::placeholder { color: var(--text-soft); }
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  font-size: 0.95rem;
  color: var(--text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color var(--transition);
  display: block;
}
.form-select:focus { border-color: var(--green); ; outline: none; }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-checkboxes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-mid);
  transition: all var(--transition);
  user-select: none;
}
.checkbox-item input { display: none; }
.checkbox-item.checked {
  background: var(--green-subtle);
  border-color: var(--green);
  color: var(--green);
  font-weight: 600;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: var(--green-subtle);
  border-radius: var(--radius);
  border: 1px solid rgba(45,106,45,0.2);
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--green); font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--text-mid); font-size: 0.95rem; }

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.contact-item:hover { transform: translateX(4px); }
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--green-subtle);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.78rem; font-weight: 600; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-item a { font-size: 0.9rem; color: var(--green); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

/* ── Legal pages ── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.35rem; font-weight: 800; margin-top: 48px; margin-bottom: 16px; color: var(--text); padding-top: 16px; border-top: 1px solid var(--border); }
.legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; font-weight: 700; margin-top: 24px; margin-bottom: 12px; color: var(--text); }
.legal-content p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul, .legal-content ol { margin: 0 0 16px 0; padding-left: 24px; list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--green); text-decoration: underline; }
.legal-content a:hover { color: var(--green-light); }
.legal-meta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 48px;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.legal-hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: calc(var(--nav-h) + 48px) 0 56px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(45,106,45,0.25) 0%, transparent 70%);
}
.legal-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; position: relative; z-index: 1; }
.legal-hero p { color: rgba(255,255,255,0.65); margin-top: 10px; position: relative; z-index: 1; }
.legal-hero .section-label { position: relative; z-index: 1; color: rgba(110,224,110,0.9); }
.disclaimer-box {
  background: #fff8e1;
  border: 2px solid #f59e0b;
  border-radius: 14px;
  padding: 20px 24px;
  margin: 24px 0;
}
.disclaimer-box p { color: #92400e; font-size: 0.9rem; margin: 0; font-weight: 500; }

/* ── 404 ── */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) 24px 80px;
}
.notfound-emoji { font-size: 4rem; margin-bottom: 24px; display: block; }
.notfound-code { font-size: 7rem; font-weight: 900; color: rgba(45,106,45,0.12); line-height: 1; margin-bottom: 8px; }
.notfound h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.notfound p { color: var(--text-mid); max-width: 400px; margin: 0 auto 32px; }
.notfound-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Background Variants ── */
.bg-food-warm { background: linear-gradient(135deg, #fdf6f0 0%, #f0f7f0 50%, #fafaf7 100%); }
.bg-green-light { background: rgba(45,106,45,0.05); }
.bg-green-dark  { background: var(--bg-dark); }
.bg-dark        { background: var(--bg-dark); }
.bg-white       { background: var(--white); }
.bg-orange-light { background: var(--orange-light); }

/* ── Diagonal section clip ── */
.section-diagonal {
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  padding-bottom: 120px;
}
.section-diagonal-reverse {
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  padding-top: 120px;
}

/* ── About page ── */
.about-hero-visual {
  background: linear-gradient(135deg, var(--green) 0%, #0f2010 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  text-align: center;
}
.about-hero-visual .big-emoji { font-size: 4rem; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.value-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
.about-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 48px 0; }
.about-stat { text-align: center; }
.about-stat-num { font-size: 2.8rem; font-weight: 900; color: var(--green); letter-spacing: -0.04em; }
.about-stat-label { font-size: 0.88rem; color: var(--text-soft); margin-top: 4px; }

/* ── How It Works detailed (inner page) ── */
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: transform var(--transition);
}
.hiw-step:hover { transform: translateX(4px); ; }
.hiw-step-num {
  width: 60px;
  height: 60px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.hiw-step-emoji { font-size: 1.2rem; margin-bottom: 4px; }
.hiw-step-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; }
.hiw-step-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.hiw-step-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.hiw-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-subtle);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ── Waitlist ── */
.waitlist-form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  border: 1px solid var(--border);
}

/* ── Data deletion ── */
.deletion-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.deletion-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
}
.deletion-step-num {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 14px;
}

/* ── Accessibility ── */
.a11y-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.a11y-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.a11y-card:hover { transform: translateY(-3px); }
.a11y-card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.a11y-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.a11y-card-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-dark);
  color: var(--white);
  padding: 20px 28px;
  z-index: 2000;
  display: none;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
}
.cookie-banner.show { display: flex; }
.cookie-text { flex: 1; font-size: 0.88rem; color: rgba(255,255,255,0.8); min-width: 200px; }
.cookie-text a { color: #6ee06e; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-accept:hover { background: var(--green-light); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.cookie-decline:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }

/* ── Feature detail grid (inner pages) ── */
.feature-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.feature-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.feature-detail-card:hover { transform: translateY(-4px); ; }
.fdc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.fdc-icon {
  width: 52px;
  height: 52px;
  background: var(--green-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.fdc-icon.orange-bg { background: var(--orange-light); }
.fdc-title { font-size: 1.1rem; font-weight: 700; }
.fdc-subtitle { font-size: 0.78rem; color: var(--text-soft); }
.fdc-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.fdc-benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--green-subtle);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
}
.fdc-benefit::before { content: '✓'; font-weight: 900; flex-shrink: 0; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--bg-dark);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(45,106,45,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.page-hero .section-label { position: relative; z-index: 1; color: rgba(110,224,110,0.9); }

/* ── Stats row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-soft); margin-top: 8px; line-height: 1.4; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 0.775rem; color: var(--text-soft); }

/* ── App Store metadata section ── */
.appstore-meta {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.appstore-meta h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.appstore-meta p, .appstore-meta li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.appstore-meta ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.appstore-meta ul li::before { content: '✓  '; color: var(--green); font-weight: 700; }
.appstore-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.appstore-meta-item {
  background: var(--bg);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
}
.appstore-meta-item .label { font-size: 0.72rem; color: var(--text-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.appstore-meta-item .value { font-size: 0.95rem; font-weight: 700; color: var(--text); }

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo-text { color: var(--white); }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  line-height: 1.65;
}
.footer-emails {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-emails a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-emails a:hover { color: rgba(255,255,255,0.9); }
.footer-store-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.footer-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
  width: fit-content;
}
.footer-store-badge:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social-link:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* ══════════════════════════════════════════════
   RESPONSIVE — mobile-first breakpoints
   ══════════════════════════════════════════════ */

/* ── Tablet landscape (≤1100px) ── */
@media (max-width: 1100px) {
  .bento-cell.span-4 { grid-column: span 6; }
  .bento-cell.span-2 { grid-column: span 3; }
  .bento-cell.span-3 { grid-column: span 3; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 48px; }
}

/* ── Tablet portrait (≤1024px) ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .feature-detail-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .personalise-split { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .appstore-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Large mobile / tablet (≤768px) ── */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Layout */
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-subtitle { font-size: 0.95rem; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-dark { padding: calc(var(--nav-h) + 32px) 0 48px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-subtitle {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-badges { justify-content: center; flex-wrap: wrap; }
  .hero-note { text-align: center; }

  /* Phones in hero */
  .hero-phones { height: 380px; }
  .hero-phone-primary { right: 10px; top: 0; }
  .hero-phone-secondary { left: -10px; top: 40px; }
  .phone-lg { width: 200px; height: 400px; }
  .phone-md { width: 170px; height: 340px; }

  /* Proof bar */
  .proof-items { flex-wrap: wrap; justify-content: center; }
  .proof-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  .proof-item:last-child { border-bottom: none; }

  /* Bento grid */
  .bento-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bento-cell.span-4,
  .bento-cell.span-3,
  .bento-cell.span-2 { grid-column: span 2; }
  .bento-cell { padding: 24px 20px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 24px 20px; }

  /* Steps (how it works) */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .hiw-step { grid-template-columns: 52px 1fr; gap: 16px; padding: 20px; }
  .hiw-step-num { width: 44px; height: 44px; font-size: 1rem; }
  .steps-track::before { left: 22px; }
  .step-row { padding: 20px 20px 20px 0; gap: 20px; }
  .step-num { width: 52px; height: 52px; font-size: 1rem; }
  .step-num-wrap { width: 52px; }
  .step-content { padding-top: 8px; }

  /* App preview phone */
  .phone-mockup { width: 220px; height: 440px; }
  .phone-group { gap: 10px; }

  /* Personalisation */
  .personalise-split { grid-template-columns: 1fr; gap: 36px; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-toggle-wrap { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .pricing-card { padding: 28px 22px; }
  .pricing-footer-note { font-size: 0.8rem; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 28px 16px; }
  .stat-num { font-size: 2.4rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }

  /* About */
  .about-values { grid-template-columns: 1fr; gap: 14px; }
  .about-stat-row { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Forms */
  .waitlist-form-card { padding: 28px 20px; }

  /* Data deletion */
  .deletion-steps { grid-template-columns: 1fr; gap: 14px; }

  /* Accessibility */
  .a11y-grid { grid-template-columns: 1fr; gap: 14px; }

  /* App store meta */
  .appstore-meta-grid { grid-template-columns: 1fr; gap: 12px; }
  .appstore-meta { padding: 24px 20px; }

  /* Feature detail */
  .feature-detail-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-detail-card { padding: 24px 20px; }

  /* Page hero (inner pages) */
  .page-hero { padding: calc(var(--nav-h) + 28px) 0 48px; }
  .page-hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .page-hero p { font-size: 0.95rem; }

  /* CTA section */
  .cta-section { padding: 72px 0; }
  .cta-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .cta-subtitle { font-size: 0.95rem; }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Store section */
  .store-section { padding: 72px 0; }
  .store-badges-row { flex-direction: column; align-items: center; gap: 12px; }
  .store-badge { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer */
  .footer { padding: 56px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-social { justify-content: center; }

  /* Cookie banner */
  .cookie-banner { flex-direction: column; gap: 16px; padding: 20px; bottom: 12px; left: 12px; right: 12px; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-accept, .cookie-decline { flex: 1; }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }

  /* Hero */
  .hero-dark { padding: calc(var(--nav-h) + 24px) 0 40px; }
  .hero-title { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .hero-phones { height: 340px; }
  .phone-lg { width: 180px; height: 360px; }
  .phone-md { width: 152px; height: 304px; }

  /* Buttons */
  .btn-xl { font-size: 1rem; padding: 16px 28px; }
  .btn-lg { padding: 14px 24px; }

  /* Proof bar */
  .proof-item { padding: 10px 16px; }

  /* Bento */
  .bento-grid { grid-template-columns: 1fr; gap: 10px; }
  .bento-cell.span-4,
  .bento-cell.span-3,
  .bento-cell.span-2 { grid-column: span 1; }

  /* Stats — 2 across still fine */
  .stats-row { grid-template-columns: 1fr 1fr; }

  /* Comparison table */
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th,
  .comparison-table td { padding: 10px 8px; }

  /* Section label */
  .section-label { font-size: 0.72rem; }

  /* FAQ */
  .faq-question { font-size: 0.95rem; padding: 18px 16px; }
  .faq-answer { padding: 0 16px 16px; font-size: 0.88rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .waitlist-form-card { padding: 24px 16px; border-radius: var(--radius); }

  /* About stat row */
  .about-stat-row { grid-template-columns: 1fr; }

  /* Footer emails wrap */
  .footer-emails { gap: 6px; }
  .footer-emails a { font-size: 0.8rem; }
}

/* ── Small mobile (≤420px) ── */
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 1.85rem; }
  .hero-phones { height: 280px; }
  .phone-lg { width: 150px; height: 300px; }
  .phone-md { width: 128px; height: 256px; }
  .hero-eyebrow { font-size: 0.7rem; }
  .section-title { font-size: 1.5rem; }
  .stat-num { font-size: 2rem; }
  .pricing-card { padding: 24px 16px; }
  .cta-title { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero { padding: calc(var(--nav-h) + 20px) 0 36px; }
  .nav-logo-text { font-size: 1rem; }
  .comparison-table { font-size: 0.75rem; }
  .comparison-table th,
  .comparison-table td { padding: 8px 6px; }
  .store-section { padding: 56px 0; }
  .cta-section { padding: 56px 0; }
  .section { padding: 44px 0; }
}

/* ── Gemini Generated Icons ── */
.gemini-icon {
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.2em;
  display: inline-block;
  margin-right: 0.15em;
  object-fit: contain;
}
.gemini-icon-lg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hiw-step-emoji .gemini-icon-lg,
.step-emoji .gemini-icon-lg,
.fdc-icon .gemini-icon-lg {
  width: 2.8rem;
  height: 2.8rem;
}
