/* Teevo — Brand colours (single source of truth)
   ─────────────────────────────────────────────
   Mowing Green   #265C4B  Primary   Logo, main text. Grounded, golf.
   Par-3 Punch    #49C184  Secondary Borders, icons, illustrations. The "fun" green.
   Golden Tee     #FFD25E  Accent    Badges, highlights, sunny warmth.
   Off-White Pique #FDFCF5 Background Warm cream, not sterile white.
   Divot Pink     #FF8A8A  Pop       Likes, notifications, startup quirk. Use sparingly.
*/
:root {
  --mowing-green: #265C4B;
  --par-3-punch: #49C184;
  --golden-tee: #FFD25E;
  --off-white-pique: #FDFCF5;
  --divot-pink: #FF8A8A;
  /* Mowing Green variants (opacity) */
  --text-muted: rgba(38, 92, 75, 0.75);
  --mowing-green-03: rgba(38, 92, 75, 0.03);
  --mowing-green-06: rgba(38, 92, 75, 0.06);
  --mowing-green-08: rgba(38, 92, 75, 0.08);
  --mowing-green-10: rgba(38, 92, 75, 0.1);
  --mowing-green-12: rgba(38, 92, 75, 0.12);
  --mowing-green-20: rgba(38, 92, 75, 0.2);
  --mowing-green-28: rgba(38, 92, 75, 0.28);
  --mowing-green-40: rgba(38, 92, 75, 0.4);
  /* Par-3 Punch variants */
  --par-3-punch-04: rgba(73, 193, 132, 0.04);
  --par-3-punch-05: rgba(73, 193, 132, 0.05);
  --par-3-punch-08: rgba(73, 193, 132, 0.08);
  --par-3-punch-12: rgba(73, 193, 132, 0.12);
  --par-3-punch-18: rgba(73, 193, 132, 0.18);
  --par-3-punch-25: rgba(73, 193, 132, 0.25);
  --par-3-punch-30: rgba(73, 193, 132, 0.3);
  /* Golden Tee variant (hero gradient) */
  --golden-tee-40: rgba(255, 210, 94, 0.4);
  /* Off-White / overlays */
  --off-white-pique-92: rgba(253, 252, 245, 0.92);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition: 0.22s ease;
  --transition-slow: 0.35s ease;
  --shadow-sm: 0 2px 8px rgba(38, 92, 75, 0.06);
  --shadow-md: 0 8px 24px rgba(38, 92, 75, 0.08);
  --shadow-lg: 0 16px 48px rgba(38, 92, 75, 0.1);
  --shadow-card-hover: 0 12px 32px rgba(38, 92, 75, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Scroll margin for fixed header; extra when CTA anchor bar is visible */
section[id] {
  scroll-margin-top: 4.5rem;
}

body.cta-bar-visible section#early-access {
  scroll-margin-top: 7rem;
}

@media (max-width: 767px) {
  body.cta-bar-visible section#early-access {
    scroll-margin-top: 5rem;
  }
}

body {
  margin: 0;
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--mowing-green);
  background-color: var(--off-white-pique);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--off-white-pique-92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mowing-green-08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition: background var(--transition), box-shadow var(--transition);
}

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

.logo-text {
  height: 32px;
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav a:hover {
  color: var(--mowing-green);
}

.nav a:not(.btn-header)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--par-3-punch);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav a:not(.btn-header):hover::after {
  width: 100%;
}

.nav a.btn-header {
  color: var(--off-white-pique);
}

.nav a.btn-header:hover {
  color: var(--off-white-pique);
  opacity: 0.95;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mowing-green);
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

/* Mobile nav drawer */
@media (max-width: 767px) {
  .header {
    z-index: 100;
    position: relative;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 3.75rem; /* just below header */
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: none;
    padding: 0.75rem 1rem 1rem;
    background: var(--off-white-pique);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: visible;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 98;
    border-top: 1px solid var(--mowing-green-08);
    box-shadow: var(--shadow-md);
    pointer-events: none;
    box-sizing: border-box;
  }

  .nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 0.4rem 0;
    min-height: 2.5rem; /* 40px - compact but tappable */
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--mowing-green-08);
    font-size: 0.9875rem;
  }

  .nav a::after {
    display: none;
  }

  .nav a.btn-header {
    margin-top: 0.4rem;
    justify-content: center;
    border-radius: var(--radius);
    min-height: 2.5rem;
    padding: 0.4rem 1rem;
  }

  .menu-btn {
    position: relative;
    z-index: 101;
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }

  .menu-btn span {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav.is-open + .menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.is-open + .menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open + .menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    position: static;
    transform: none;
    visibility: visible;
    background: transparent;
    padding: 0;
    border: none;
  }

  .nav a {
    padding: 0;
    min-height: 0;
    border: none;
    display: inline;
  }

  .nav a::after {
    display: block;
  }

  .menu-btn {
    display: none;
  }
}

/* CTA anchor bar — fixed at top when user scrolls past hero */
.cta-anchor-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0.65rem 1rem;
  background: var(--off-white-pique-92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mowing-green-08);
  box-shadow: var(--shadow-md);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.cta-anchor-bar.is-visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cta-anchor-bar {
    top: 3.75rem;
    padding: 0.5rem 1.5rem;
  }
}

.cta-anchor-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-anchor-bar-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mowing-green);
}

.cta-anchor-bar-btn {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .cta-anchor-bar-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
  .cta-anchor-bar-text {
    font-size: 0.85rem;
    text-align: center;
  }
}

/* Buttons */
.btn {
  font-family: inherit;
  font-weight: 600;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--mowing-green);
  color: var(--off-white-pique);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--mowing-green-28);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn:focus-visible,
.input-name:focus-visible,
.input-email:focus-visible {
  outline: 2px solid var(--par-3-punch);
  outline-offset: 2px;
}

.faq-question:focus-visible {
  outline: 2px solid var(--par-3-punch);
  outline-offset: 2px;
}

.btn-header {
  background: var(--mowing-green);
  color: var(--off-white-pique);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.btn-header:hover {
  box-shadow: 0 4px 12px var(--mowing-green-28);
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 6rem 1.5rem 4rem;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 1rem;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--mowing-green-08);
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--mowing-green);
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--mowing-green);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  line-height: 1.55;
}

.hero-form {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--mowing-green-08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* Shared text input styling (name + email) */
.input-name,
.input-email {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border: 2px solid var(--mowing-green-20);
  border-radius: var(--radius);
  color: var(--mowing-green);
  background: var(--off-white-pique);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  box-sizing: border-box;
  min-height: 2.75rem;
}

.input-name::placeholder,
.input-email::placeholder {
  color: var(--text-muted);
}

.input-name:focus,
.input-email:focus {
  outline: none;
  border-color: var(--par-3-punch);
  box-shadow: 0 0 0 3px var(--par-3-punch-18);
}

.input-name:hover,
.input-email:hover {
  border-color: var(--mowing-green-28);
}

.input-name {
  margin-bottom: 0.75rem;
}

.hero-form .form-row,
.cta-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.cta-form .input-name {
  margin-bottom: 0.75rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .hero-form .form-row {
    flex-direction: row;
    align-items: stretch;
  }
  .input-email {
    flex: 1;
    min-width: 0;
  }
  .btn-primary {
    min-width: 160px;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-tagline {
    font-size: 2.1rem;
  }
  .hero-sub {
    font-size: 1.15rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.25rem;
  }
  .hero-tagline {
    font-size: 2.4rem;
  }
}

/* Hero visual — reference layout with gradient + layered cards */
.hero-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 85%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--golden-tee) 0%, var(--golden-tee-40) 50%, transparent 70%);
  pointer-events: none;
}

.hero-visual-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.hero-card {
  background: var(--off-white-pique);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mowing-green-08);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero-card:hover {
  box-shadow: var(--shadow-lg);
}

.hero-card-app-user:hover {
  transform: translateY(-2px);
}

/* Primary hero image: someone using the app */
.hero-card-app-user {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 1rem;
}

.hero-illus.app-user {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: center bottom;
}

.hero-card-main {
  position: absolute;
  left: -15px;
  bottom: 20px;
  width: 42%;
  min-width: 120px;
  z-index: 2;
  min-height: 140px;
  padding: 0.75rem;
}

.hero-card-floating {
  position: absolute;
  top: -15px;
  right: -5px;
  width: 38%;
  min-width: 100px;
  z-index: 3;
  padding: 0.5rem;
}

.hero-illus {
  object-fit: contain;
}

.hero-illus.funnel {
  max-height: 120px;
  width: auto;
}

.hero-illus.mascot {
  max-height: 100px;
  width: auto;
}

@media (min-width: 640px) {
  .hero-visual {
    min-height: 360px;
  }
  .hero-visual-stack {
    max-width: 420px;
  }
  .hero-card-app-user {
    min-height: 300px;
  }
  .hero-illus.app-user {
    max-height: 380px;
  }
  .hero-card-main {
    min-height: 160px;
    left: -20px;
    bottom: 30px;
  }
  .hero-illus.funnel {
    max-height: 140px;
  }
  .hero-card-floating {
    top: -20px;
    right: -10px;
  }
  .hero-illus.mascot {
    max-height: 120px;
  }
}

/* Section title + lead (shared) */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--mowing-green);
  text-align: center;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Before / With Teevo contrast section */
.contrast-section {
  padding: 3.5rem 0;
  background: var(--mowing-green-03);
}

.contrast-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.contrast-column {
  background: var(--off-white-pique);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mowing-green-08);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contrast-column:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--mowing-green-12);
}

.contrast-with:hover {
  border-left-color: var(--par-3-punch);
}

.contrast-before {
  border-left: 3px solid var(--mowing-green-20);
}

.contrast-with {
  border-left: 3px solid var(--par-3-punch);
}

.contrast-heading {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  color: var(--mowing-green);
}

.contrast-before .contrast-heading {
  color: var(--text-muted);
}

.contrast-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contrast-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--mowing-green);
}

.contrast-list li:last-child {
  margin-bottom: 0;
}

.contrast-before .contrast-list li {
  color: var(--text-muted);
}

.contrast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--par-3-punch);
}

.contrast-before .contrast-icon {
  color: var(--mowing-green-40);
}

.contrast-quirk {
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .contrast-quirk {
    white-space: normal;
  }
}

/* Scroll reveal (initial state) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.contrast-column.reveal:first-child {
  transition-delay: 0.05s;
}

.contrast-column.reveal:last-child {
  transition-delay: 0.1s;
}

.contrast-quirk.reveal {
  transition-delay: 0.2s;
}

/* Staggered reveal delays for benefit cards and other sections */
.benefits .section-title.reveal { transition-delay: 0s; }
.benefit-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.benefit-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.benefit-card.reveal:nth-child(3) { transition-delay: 0.19s; }
.trust-content.reveal { transition-delay: 0s; }
.trust-visual.reveal { transition-delay: 0.1s; }
.testimonials .section-title.reveal { transition-delay: 0s; }
.testimonials .section-note.reveal { transition-delay: 0.05s; }
.testimonial-card.reveal:nth-child(1) { transition-delay: 0.08s; }
.testimonial-card.reveal:nth-child(2) { transition-delay: 0.14s; }
.faq .section-title.reveal { transition-delay: 0s; }
.faq-list.reveal { transition-delay: 0.08s; }
.cta-inner.reveal { transition-delay: 0.05s; }

@media (min-width: 640px) {
  .contrast-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
  }
  .contrast-section {
    padding: 4rem 0;
  }
}

/* Benefits */
.benefits {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.4);
}

.benefit-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-card {
  background: var(--off-white-pique);
  border: 1px solid rgba(38, 92, 75, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  border-color: var(--par-3-punch-25);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--par-3-punch-12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.benefit-card:hover .benefit-icon-wrap {
  background: var(--par-3-punch-18);
}

.benefit-icon {
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}

.benefit-icon-char {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--par-3-punch);
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--mowing-green);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .benefit-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
  }
  .benefits {
    padding: 5rem 0;
  }
}

/* Trust */
.trust {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--par-3-punch-05) 0%, var(--par-3-punch-08) 100%);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.trust-content {
  text-align: center;
}

.trust-visual {
  max-width: 320px;
  margin: 0 auto;
}

.trust-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mowing-green-06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-img:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px var(--mowing-green-12);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .trust-inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
    text-align: left;
  }
  .trust-content {
    text-align: left;
  }
  .trust-badges {
    justify-content: flex-start;
  }
  .trust-visual {
    margin: 0;
    max-width: 280px;
  }
}

.trust-badge {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mowing-green);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--par-3-punch-30);
}

@media (min-width: 768px) {
  .trust {
    padding: 5rem 0;
  }
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
}

.section-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin: -0.5rem 0 1.5rem;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.testimonial-card {
  background: var(--off-white-pique);
  border: 1px solid rgba(38, 92, 75, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(73, 193, 132, 0.25);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--mowing-green);
  margin: 0 0 0.75rem;
  padding-left: 1.5rem;
  line-height: 1.55;
  font-style: italic;
}

.testimonial-card footer {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .testimonials {
    padding: 5rem 0;
  }
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--mowing-green-03) 0%, var(--mowing-green-06) 100%);
}

.faq .section-title {
  margin-bottom: 1.5rem;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
  background: var(--off-white-pique);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mowing-green-08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--mowing-green-08);
  transition: background var(--transition);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: var(--mowing-green-03);
}

.faq-item[open] {
  background: var(--par-3-punch-04);
}

.faq-question {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--mowing-green);
  width: 100%;
  text-align: left;
  padding: 1.1rem 2.5rem 1.1rem 1.25rem;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--par-3-punch);
}

.faq-question::-webkit-details-marker,
.faq-question::marker {
  display: none;
}

.faq-question::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--mowing-green);
  border-bottom: 2px solid var(--mowing-green);
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--transition), border-color var(--transition);
}

.faq-item[open] .faq-question::after {
  transform: translateY(-35%) rotate(-135deg);
}

.faq-question:hover::after {
  border-color: var(--par-3-punch);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-answer p,
.faq-answer ul {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  padding-left: 1.25rem;
}

.faq-answer li {
  margin-bottom: 0.25rem;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--mowing-green);
  font-weight: 600;
}

@media (min-width: 768px) {
  .faq {
    padding: 5rem 0;
  }
}

/* CTA */
.cta {
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(180deg, rgba(38, 92, 75, 0.05) 0%, rgba(38, 92, 75, 0.08) 50%, transparent 100%);
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  border: 1px solid var(--mowing-green-08);
  box-shadow: var(--shadow-sm);
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--mowing-green);
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.cta-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-form .form-row {
    flex-direction: row;
    justify-content: center;
  }
  .cta-form .input-email {
    flex: 1;
    max-width: 280px;
  }
}

/* Footer */
.footer {
  padding: 2.25rem 1.5rem;
  border-top: 1px solid var(--mowing-green-10);
  background: var(--mowing-green-03);
}

.footer-logo {
  display: block;
  margin-bottom: 1rem;
  text-align: center;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-social,
.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-social a,
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-social a:hover,
.footer-links a:hover {
  color: var(--mowing-green);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========== Mobile optimizations (tighter vertical rhythm) ========== */
@media (max-width: 767px) {
  .header {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .hero {
    min-height: auto;
    padding: 4rem 0 2.75rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .hero-tagline {
    font-size: 1.45rem;
    margin-bottom: 0.35rem;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-form {
    padding: 1.1rem;
  }

  .input-name,
  .input-email {
    min-height: 48px;
    padding: 1rem 1.1rem;
    font-size: 16px; /* prevents zoom on focus in iOS */
  }

  .btn-primary {
    min-height: 52px;
    width: 100%;
    padding: 1rem 1.25rem;
  }

  .hero-visual {
    min-height: 260px;
    padding: 0 0.5rem;
  }

  .hero-visual-stack {
    max-width: 100%;
  }

  .contrast-section {
    padding: 2rem 0;
  }

  .contrast-inner {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .contrast-column {
    padding: 1.1rem 1.15rem 1.35rem;
  }

  .contrast-quirk {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .benefits {
    padding: 2rem 0;
  }

  .benefit-cards {
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .benefit-card {
    padding: 1.25rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
  }

  .section-lead {
    margin-bottom: 1.25rem;
  }

  .section-note {
    margin-bottom: 1rem;
  }

  .trust {
    padding: 2rem 0;
  }

  .trust-inner {
    gap: 1.25rem;
  }

  .trust-visual {
    max-width: 100%;
  }

  .testimonials {
    padding: 2rem 0;
  }

  .testimonial-cards {
    gap: 1rem;
    margin-top: 0.75rem;
  }

  .testimonial-card {
    padding: 1.15rem;
  }

  .testimonial-card::before {
    font-size: 1.75rem;
    left: 1rem;
  }

  .testimonial-card p,
  .testimonial-card footer {
    padding-left: 1.25rem;
  }

  .faq {
    padding: 2rem 0;
  }

  .faq-list {
    border-radius: var(--radius);
    margin: 0 -0.25rem;
  }

  .faq-question {
    min-height: 52px;
    padding: 1rem 2.5rem 1rem 1rem;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }

  .faq-answer p,
  .faq-answer ul {
    font-size: 0.9rem;
  }

  .cta {
    padding: 2.5rem 0 3rem;
  }

  .cta-inner {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
  }

  .cta-sub {
    margin-bottom: 1.25rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-form .input-name,
  .cta-form .input-email {
    min-height: 48px;
    font-size: 16px;
  }

  .cta-form .btn-primary {
    min-height: 52px;
    width: 100%;
  }

  .footer {
    padding: 1.5rem max(1.25rem, env(safe-area-inset-left)) 1.5rem max(1.25rem, env(safe-area-inset-right));
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }

  .footer-logo {
    margin-bottom: 0.75rem;
  }

  .footer-inner {
    margin-bottom: 1rem;
  }

  .footer-social a,
  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
