/* ══════════════════════════════════════════════
   Puul Landing Page — Shared Styles
   Extracted from inline <style> blocks common
   to all 32 HTML pages.
   ══════════════════════════════════════════════ */

/* ── @font-face declarations ── */
@font-face {
  font-family: 'PP Pangram Sans Rounded';
  src: local('PP Pangram Sans Rounded Bold'), local('PPPangramSansRounded-Bold'),
       url('fonts/PPPangramSansRounded-Bold.woff2') format('woff2'),
       url('fonts/PPPangramSansRounded-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Pangram Sans Rounded';
  src: local('PP Pangram Sans Rounded Medium'), local('PPPangramSansRounded-Medium'),
       url('fonts/PPPangramSansRounded-Medium.woff2') format('woff2'),
       url('fonts/PPPangramSansRounded-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mundial';
  src: local('Mundial Light'), local('MundialLight'), local('Mundial-Light'),
       url('fonts/MundialLight.woff2') format('woff2'),
       url('fonts/MundialLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Pangram Sans Rounded Compressed';
  src: local('PP Pangram Sans Rounded Compressed Extrabold'), local('PPPangramSansRounded-CompressedExtrabold'),
       url('fonts/PPPangramSansRounded-CompressedExtrabold.woff2') format('woff2'),
       url('fonts/PPPangramSansRounded-CompressedExtrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

/* ── CSS Variables ── */
:root {
  --black: #111111;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --dark-bg: #111111;
  --puul-green: #A2FF00;
  --gray-600: #4B5563;
  --gray-400: #6B7280;
  --gray-300: #D1D5DB;
  --max-width: 1300px;
}

/* ── Body base ── */
html { }

body {
  font-family: 'Mundial', 'Georgia', 'Times New Roman', serif;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Base element styles ── */
h1, h2 {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-weight: 700;
}

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

/* Accessibility: visible focus for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--puul-green);
  outline-offset: 3px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Accessibility: skip navigation link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--puul-green);
  color: var(--black);
  font-family: 'PP Pangram Sans Rounded', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
}

/* Button focus */
.pill-btn:focus-visible,
.nav-download:focus-visible,
.qr-modal-badges a:focus-visible {
  outline: 2px solid var(--puul-green);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(162, 255, 0, 0.25);
}

/* Nav link focus */
.nav-left a:focus-visible,
.nav-right-links a:focus-visible {
  outline: 2px solid var(--puul-green);
  outline-offset: 2px;
}

/* Footer link focus */
.footer a:focus-visible {
  outline: 2px solid var(--puul-green);
  outline-offset: 2px;
}

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 28px 0;
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.4s ease, color 0.4s ease;
}
.nav.animate-in {
  opacity: 1; transform: none;
}
.nav .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 48px;
}
.nav-left, .nav-right-links {
  display: flex; gap: clamp(12px, 2.5vw, 36px); list-style: none;
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.95rem; font-weight: 500;
}
.nav-left { justify-self: start; }
.nav-right-links { justify-self: end; }
.nav-left a, .nav-right-links a {
  color: var(--white);
  position: relative;
  display: inline-block;
  text-align: center;
  transition: color 0.4s ease;
}
.nav-left a::after, .nav-right-links a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-left a:hover::after, .nav-right-links a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nav-left a.active::after, .nav-right-links a.active::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nav-logo { justify-self: center; min-width: max-content; }
.nav-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); transition: filter 0.4s ease; }

/* Light sections: white/off-white bg -> dark text */
.nav--light {
  background: rgb(255,255,255);
}
.nav--light .nav-left a, .nav--light .nav-right-links a { color: var(--black); }
.nav--light .nav-hamburger { color: var(--black); }
.nav--light .nav-logo img { filter: none; }

/* Off-white sections */
.nav--off-white {
  background: rgb(245,245,240);
}
.nav--off-white .nav-left a, .nav--off-white .nav-right-links a { color: var(--black); }
.nav--off-white .nav-hamburger { color: var(--black); }
.nav--off-white .nav-logo img { filter: none; }

/* Green sections (trust bar): green bg -> black text */
.nav--green {
  background: #D4F5A0;
}
.nav--green .nav-left a, .nav--green .nav-right-links a { color: var(--black); }
.nav--green .nav-hamburger { color: var(--black); }
.nav--green .nav-logo img { filter: none; }

/* Dark sections: dark bg -> light text */
.nav--dark {
  background: rgb(17,17,17);
}
.nav--dark .nav-left a, .nav--dark .nav-right-links a { color: var(--white); }
.nav--dark .nav-hamburger { color: var(--white); }
.nav--dark .nav-logo img { filter: brightness(0) invert(1); }

/* Transparent sections: no bg -> light text (for closing-photo overlay) */
.nav--transparent {
  background: transparent;
}
.nav--transparent .nav-left a, .nav--transparent .nav-right-links a { color: var(--white); }
.nav--transparent .nav-hamburger { color: var(--white); }
.nav--transparent .nav-logo img { filter: brightness(0) invert(1); }

/* ── Nav hamburger ── */
.nav-hamburger {
  background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; justify-content: center; gap: 6px;
  color: var(--white); transition: color 0.4s ease;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ── Nav download button ── */
.nav-download {
  align-items: center; justify-content: center;
  padding: 6px 14px 5px; line-height: 1;
  background: var(--black); color: var(--white);
  border-radius: 999px; font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.72rem; font-weight: 600; text-decoration: none;
  transition: color 0.2s ease;
}
.nav-download:hover { color: var(--puul-green); }
/* Invert for dark nav */
.nav--dark .nav-download { background: var(--white); color: var(--black); }
.nav--dark .nav-download:hover { color: var(--puul-green); }
/* Invert for transparent nav */
.nav--transparent .nav-download { background: var(--white); color: var(--black); }
.nav--transparent .nav-download:hover { color: var(--puul-green); }

/* Hidden on desktop, shown on mobile */
.nav-hamburger, .nav-download { display: none; }

/* ── Mobile menu overlay ── */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99; padding-top: 100px;
  background: var(--black);
  display: flex; flex-direction: column; align-items: flex-start; gap: 32px; padding-left: 60px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 1.5rem; font-weight: 600; color: var(--white);
  text-decoration: none; transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--puul-green); }

/* When menu is open, force nav to match the dark menu background */
.nav.menu-open { background: var(--black) !important; }
.nav.menu-open .nav-hamburger { color: var(--white); }
.nav.menu-open .nav-logo img { filter: brightness(0) invert(1); }
.nav.menu-open .nav-download { background: var(--white); color: var(--black); }
.nav.menu-open .nav-download:hover { color: var(--puul-green); }

/* ── Section utilities ── */
.section { padding: 140px 0; }
.section--dark { background: var(--dark-bg); color: var(--white); }
.section--light { background: var(--off-white); }

/* ── Eyebrow text ── */
.eyebrow {
  font-family: 'PP Pangram Sans Rounded Compressed', Arial, sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--puul-green) !important; margin-bottom: 20px;
  background: none; display: inline-block;
  padding: 0; border-radius: 0;
  line-height: 1; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section--dark .eyebrow { background: none; color: var(--puul-green) !important; padding: 0; }

/* ── Pill button ── */
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--black); color: var(--white);
  padding: 16px 36px; border-radius: 100px;
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.95rem; font-weight: 600; line-height: 1;
  transition: color 0.2s; margin-top: 32px;
}
.pill-btn:hover { color: var(--puul-green); }

/* ── Footer ── */
.footer {
  background: var(--black); color: var(--white);
  padding: 80px 0 48px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand p {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.85rem; color: var(--gray-400); margin-top: 12px;
}
.footer-logo img { height: 28px; width: auto; }
.footer h4,
.footer-heading {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-400); margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.9rem; color: var(--gray-300); transition: color 0.2s;
}
.footer ul a:hover { color: var(--puul-green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.8rem; color: var(--gray-400);
}
.footer-bottom-social { display: flex; gap: 16px; }
.footer-bottom-social a {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  color: var(--gray-400); font-size: 0.85rem; transition: color 0.2s;
}
.footer-bottom-social a:hover { color: var(--puul-green); }

/* ── WhatsApp widget ── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}
.wa-fab svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.wa-fab.open svg.wa-icon { display: none; }
.wa-fab svg.wa-close { display: none; }
.wa-fab.open svg.wa-close { display: block; }

.wa-panel {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 89;
  width: 340px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wa-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-panel-header {
  background: #25D366;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.wa-panel-header svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  flex-shrink: 0;
}
.wa-panel-header-text h3,
.wa-panel-header-text .wa-heading {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}
.wa-panel-header-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.wa-panel-body {
  padding: 20px 24px;
}
.wa-panel-body .wa-response-time {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.wa-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 12px;
  text-decoration: none;
  color: #111111;
  transition: border-color 0.2s, background 0.2s;
}
.wa-contact:hover {
  border-color: #25D366;
  background: rgba(37,211,102,0.04);
}
.wa-contact-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8F5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-contact-avatar svg {
  width: 24px;
  height: 24px;
  fill: #25D366;
}
.wa-contact-info {
  flex: 1;
}
.wa-contact-info strong {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.wa-contact-info span {
  font-size: 0.82rem;
  color: var(--gray-400);
}
.wa-contact-go {
  flex-shrink: 0;
}
.wa-contact-go svg {
  width: 22px;
  height: 22px;
  fill: #25D366;
}

/* ── QR Download Modal ── */
.qr-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.qr-modal {
  background: var(--white); color: var(--black); border-radius: 24px;
  padding: 40px; text-align: center; position: relative;
  max-width: 380px; width: 90%; box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.qr-modal-close {
  position: absolute; top: 16px; right: 20px; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--gray-400); line-height: 1;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s, color 0.2s;
  padding: 0;
}
.qr-modal-close:hover { color: var(--black); background: var(--off-white); }
.qr-modal-isotype {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.qr-modal-isotype img { width: 64px; height: 64px; object-fit: contain; border-radius: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 0 0 0.5px rgba(0,0,0,0.04); }
.qr-modal-app-info {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
}
.qr-modal-app-name {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-weight: 700; font-size: 1.15rem; line-height: 1.2;
}
.qr-modal-stars {
  font-size: 0.95rem; letter-spacing: 2px; color: #FFD700; line-height: 1;
}
.qr-modal-subtitle {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-weight: 500; font-size: 0.85rem; color: var(--gray-600);
  margin: 0; line-height: 1.4;
}
.qr-modal-qr-wrapper {
  position: relative; padding: 8px;
}
.qr-modal-qr-wrapper::before,
.qr-modal-qr-wrapper::after,
.qr-modal-qr-corner-bl,
.qr-modal-qr-corner-br {
  content: ''; position: absolute; width: 24px; height: 24px;
  border-color: var(--puul-green); border-style: solid; border-width: 0;
}
.qr-modal-qr-wrapper::before { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 6px; }
.qr-modal-qr-wrapper::after { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 6px; }
.qr-modal-qr-corner-bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; border-bottom-left-radius: 6px; }
.qr-modal-qr-corner-br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 6px; }
.qr-modal-qr {
  width: 200px; height: 200px;
  border-radius: 12px; display: block;
}
.qr-modal-badges {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.qr-modal-badges a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--black); color: var(--white);
  padding: 14px 24px; border-radius: 100px; flex: 1; min-width: 140px;
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-weight: 600; font-size: 0.85rem; text-decoration: none;
  transition: color 0.2s, transform 0.2s; line-height: 1;
}
.qr-modal-badges a:hover { color: var(--puul-green); transform: translateY(-2px); }
.qr-modal-badges svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Footer store buttons ── */
.footer-store-row {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; margin-bottom: 8px;
}
.footer-store-row .footer-app-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15), 0 0 0 0.5px rgba(255,255,255,0.08);
}
.footer-store-buttons {
  display: flex; gap: 8px;
}
.footer-store-buttons a {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--white); color: var(--black);
  padding: 7px 12px; border-radius: 100px;
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.7rem; font-weight: 600; text-decoration: none;
  transition: opacity 0.2s; white-space: nowrap;
}
.footer-store-buttons a:hover { opacity: 0.8; }
.footer-store-buttons svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Mobile responsive (shared rules only) ── */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden; }
  .nav-left, .nav-right-links { display: none; }
  .nav { padding: 12px 0; }
  .nav .container { display: flex; justify-content: space-between; align-items: center; position: relative; padding: 0 24px; }
  .nav-hamburger { display: flex; }
  .nav-download { display: flex; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .container { padding: 0 24px; }
  .section { padding: 50px 0 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; } .footer-grid > :nth-child(1) { order: 3; } .footer-grid > :nth-child(2) { order: 1; } .footer-grid > :nth-child(3) { order: 2; } .footer-grid > :nth-child(4) { order: 4; }
  .footer-brand .footer-store-row {
    position: relative; left: calc(50vw - 24px); transform: translateX(-50%); width: max-content;
  }
  .wa-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-fab svg { width: 28px; height: 28px; }
  .wa-panel { right: 12px; left: 12px; width: auto; bottom: 86px; }
}

/* ── Page FAQ sections (mini-FAQ on landing pages) ── */
.page-faq {
  padding: 100px 0;
  background: var(--off-white);
}
.page-faq .container {
  max-width: 900px;
}
.page-faq h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.page-faq .faq-item {
  border-bottom: 1px solid var(--gray-300);
}
.page-faq .faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.4;
  list-style: none;
}
.page-faq .faq-item summary::-webkit-details-marker { display: none; }
.page-faq .faq-item summary::marker { display: none; content: ''; }
.page-faq .faq-item summary .faq-icon {
  flex-shrink: 0;
  margin-left: 16px;
  font-size: 1.4rem;
  color: var(--gray-400);
  transition: transform 0.3s ease;
}
.page-faq .faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
}
.page-faq .faq-item .faq-answer {
  padding: 0 0 20px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 780px;
}
.page-faq .faq-more {
  display: inline-block;
  margin-top: 24px;
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 768px) {
  .page-faq { padding: 60px 0; }
  .page-faq h2 { font-size: 1.4rem; }
  .page-faq .faq-item summary { font-size: 0.95rem; padding: 16px 0; }
}

/* ── Comparison tables ── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.95rem; }
.comparison-table th, .comparison-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #e5e5e5; }
.comparison-table thead th { background: var(--black); color: var(--white); font-weight: 700; }
.comparison-table tbody tr:nth-child(even) { background: #f9f9f9; }
@media (max-width: 768px) {
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 8px 10px; }
}

/* ── CTA section ── */
.cta-section {
  padding: 80px 0 120px;
}
.cta-content {
  max-width: 460px;
  border-top: 1px solid var(--gray-300);
  padding-top: 32px;
}
.cta-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.cta-content p {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.cta-content a.underline-link {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-block;
  margin-top: 16px;
}

/* ── Full-bleed closing photo ── */
.closing-photo {
  width: 100%;
  overflow: hidden;
  max-height: 600px;
}
.closing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ── Article hero ── */
.article-hero {
  padding: 160px 0 60px;
}
.article-back {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-block;
  margin-bottom: 32px;
  color: var(--gray-600);
  transition: color 0.2s ease;
}
.article-back:hover { color: var(--black); }
.article-hero .eyebrow {
  font-family: 'PP Pangram Sans Rounded Compressed', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-600);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 800px;
  margin-bottom: 16px;
}
.article-meta {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ── Article body ── */
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 60px 80px;
}
.article-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 48px 0 16px;
}
.article-body h3 {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 32px 0 12px;
}
.article-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 8px;
}

/* ── Article bottom ── */
.article-bottom {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 60px 80px;
}

/* ── Related articles ── */
.related-articles {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 60px;
}
.related-articles h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  border-top: 1px solid var(--gray-300);
  padding-top: 32px;
}
.related-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.related-card {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-300);
}
.related-card h3 {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  transition: color 0.2s;
}
.related-card:hover h3 { color: var(--puul-green); }

/* ── Shared mobile overrides (CTA, closing-photo, article) ── */
@media (max-width: 768px) {
  .cta-section { padding: 40px 0 60px; }
  .closing-photo { max-height: 350px; }
  .related-articles { padding: 0 24px; }
  .article-hero { padding: 100px 0 40px; }
  .article-hero h1 { font-size: 2rem; }
  .article-body { padding: 0 24px 60px; }
  .article-body h2 { font-size: 1.5rem; }
  .article-body h3 { font-size: 1.15rem; }
  .article-body p, .article-body ul, .article-body ol, .article-body li { font-size: 1rem; }
  .article-bottom { padding: 0 24px 60px; }
}

/* ===== Shared Page Styles (extracted from inline blocks) ===== */

/* ── Inner-page hero layout (all non-homepage pages) ── */
.hero {
  padding: 180px 0 120px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 0 0 max(60px, calc((100vw - var(--max-width)) / 2 + 60px));
}
.hero-text {
  padding: 0;
}
.hero-line {
  display: block;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.hero-text.animate-in .hero-line {
  opacity: 1; transform: translateY(0);
}
.hero-text.animate-in .hero-line:nth-child(1) { transition-delay: 0ms; }
.hero-text.animate-in .hero-line:nth-child(2) { transition-delay: 100ms; }
.hero-line-inner {
  display: block;
  overflow: hidden;
}
.hero-line-text {
  display: block;
  opacity: 0; transform: translateY(100%);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.hero-text.animate-in .hero-line-text {
  opacity: 1; transform: translateY(0);
}
.hero-text.animate-in .hero-line-inner:nth-child(1) .hero-line-text { transition-delay: 0ms; }
.hero-text.animate-in .hero-line-inner:nth-child(2) .hero-line-text { transition-delay: 100ms; }
.hero-text.animate-in .hero-line-inner:nth-child(3) .hero-line-text { transition-delay: 200ms; }
.hero-text.animate-in .hero-line-inner:nth-child(4) .hero-line-text { transition-delay: 300ms; }
.hero-text.animate-in .hero-line-inner:nth-child(5) .hero-line-text { transition-delay: 400ms; }
.hero-text .eyebrow {
  font-family: 'PP Pangram Sans Rounded Compressed', Arial, sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--gray-600);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  max-width: 480px;
}
.hero-image-wrap {
  overflow: hidden;
  max-height: 500px;
  border-radius: 20px 0 0 20px;
  opacity: 0;
  transition: opacity 1.2s ease-out;
}
.hero-image-wrap.animate-in {
  opacity: 1;
}

/* ── Stat banner (product and utility pages) ── */
.stat-banner {
  background: #D4F5A0;
  padding: 80px 0;
}
.stat-banner p {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: var(--black);
  max-width: 1100px;
}

/* ── Impact section (photo + text, product and utility pages) ── */
.impact-section {
  padding: 60px 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 0 max(60px, calc((100vw - var(--max-width)) / 2 + 60px)) 0 0;
}
.impact-image {
  overflow: hidden;
  max-height: 500px;
  border-radius: 0 20px 20px 0;
}
.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}
.impact-text {
  padding: 0 0 0 80px;
  max-width: 520px;
  align-self: end;
}
/* Reversed variant: text left, image right */
.impact-grid--reversed {
  padding: 0 0 0 max(60px, calc((100vw - var(--max-width)) / 2 + 60px));
}
.impact-grid--reversed .impact-image {
  border-radius: 20px 0 0 20px;
}
.impact-grid--reversed .impact-text {
  padding: 0 80px 0 0;
  justify-self: end;
}
.impact-text h2 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.impact-text p:not(.eyebrow) {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-600);
}

/* ── Resources grid (product pages) ── */
.resources {
  padding: 120px 0;
}
.resources h2 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 80px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.resource-card {
  border-top: 1px solid var(--gray-300);
  padding-top: 32px;
}
.resource-card h3 {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.resource-card p {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.resource-card a {
  font-family: 'PP Pangram Sans Rounded', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; min-height: auto; height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding: 0 24px; }
  .hero-text h1 { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-content { padding: 0 24px 60px; }
  .hero-content h1 { font-size: clamp(2.2rem, 8vw, 5.5rem); letter-spacing: -1px; }
  .hero-image-wrap { border-radius: 12px; }
  .stat-banner { padding: 50px 0; }
  .stat-banner p { font-size: clamp(1rem, 4vw, 1.4rem); letter-spacing: -0.3px; line-height: 1.5; }
  .impact-grid { grid-template-columns: 1fr; gap: 30px; padding: 0 24px; }
  .impact-text { padding: 0; max-width: 100%; }
  .impact-text h2 { font-size: clamp(1.8rem, 6vw, 3.8rem); }
  .impact-image { max-height: 300px; border-radius: 12px; }
  .resources { padding: 60px 0; }
  .resources h2 { font-size: clamp(2.4rem, 8vw, 4rem); letter-spacing: -1.5px; margin-bottom: 40px; }
  .resources-grid { grid-template-columns: 1fr; gap: 20px; }
  .cta-section h2 { font-size: clamp(1.8rem, 6vw, 3rem); }
  .footer { padding: 56px 0 32px; }
  .footer-grid {
    grid-template-columns: 1fr; gap: 36px; margin-bottom: 32px;
    text-align: center;
  }
  .footer-grid > :nth-child(1) { order: 1; }
  .footer-grid > :nth-child(2) { order: 2; }
  .footer-grid > :nth-child(3) { order: 3; }
  .footer-grid > :nth-child(4) { order: 4; }
  .footer-brand .footer-store-row {
    position: static; left: auto; transform: none; width: auto;
    justify-content: center;
  }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-social { flex-wrap: wrap; justify-content: center; }
}

/* Accessibility: respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .nav,
  .mobile-menu,
  .wa-fab,
  .wa-panel,
  .qr-modal-overlay,
  .footer-store-row,
  .nav-hamburger {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .section--dark {
    background: white;
    color: black;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}
