:root {
  --green: #0E3E27;
  --green-deep: #0a3220;
  --cream: #D9CBA0;
  --cream-bg: #F6F1E5;
  --orange: #C45508;
  --white: #ffffff;
  --text-dark: #1a1a1a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

/* ======== NAVBAR ======== */
.nav {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.nav-inner {
  max-width: 1300px;
  margin: auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  border-radius: 6px;
  transition: background .15s, color .15s;
  letter-spacing: .3px;
}

.nav-links a:hover {
  background: rgba(14, 62, 39, .06);
}

.nav-links a.active {
  background: var(--green);
  color: var(--cream);
}

.nav .btn-cream {
  background: var(--cream);
  color: var(--green);
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  white-space: nowrap;
}

.nav .btn-cream:hover {
  filter: brightness(.95);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.36) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: #fff;
  padding: 140px 32px;
  max-width: 1155px;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(56px, 9vw, 125px);
  line-height: 106px;
  letter-spacing: -1px;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.hero-title .line1 {
  display: block;
}

.hero-title .line2 {
  display: block;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--cream);
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 22px);
  margin-bottom: 36px;
  line-height: 100%;
  font-weight: 500;
  max-width: 932px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-outline-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 38px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  color: #000000;
  background: #8db79c;
  font-weight: 700;
  line-height: 100%;
  font-size: 16px;
  letter-spacing: .6px;
  transition: background .15s, color .15s;
  cursor: pointer;
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 38px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  color: var(--green);
  background: transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: .6px;
  transition: background .15s, color .15s;
  cursor: pointer;
}

.btn-outline-green:hover {
  background: var(--orange);
  color: #fff;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

.btn-cream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .6px;
  border: 2px solid var(--cream);
}

.hero .btn-cream {
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
}

.btn-cream:hover {
  filter: brightness(.95);
}

/* ======== WHY THIS APP ======== */
.why {
  background: var(--green);
  color: #fff;
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.why-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 130px;
  align-items: center;
}

.why-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  position: absolute;
  bottom: -30px;
  width: 480px;
  aspect-ratio: 9 / 14;
  border-radius: 44px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 80px;
  bottom: 14px;
  left: -20px;
  width: 520px;
  right: 8px;
  background: linear-gradient(170deg, #D9CBA0, transparent);
  z-index: -1;
  border-radius: 60px 60px 0 0;
  transform: rotate(360deg);
  opacity: .75;
  z-index: 0;
}

.phone-screen-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 8px solid #ffffff;
}

.phone-status {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  width: 86%;
  height: auto;
  margin: 0 auto;
  z-index: 2;
  pointer-events: none;
}

.why-text h2 {
  color: var(--cream);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 22px;
}

.why-text .lead {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: .82;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.why-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 300;
}

.feat-ic {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.feat-ic svg,
.feat-ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-text .lorem {
  font-size: 16px;
  line-height: 1.7;
  opacity: .82;
  margin-bottom: 30px;
}

/* ======== HOW IT WORKS ======== */
.how {
  background: var(--cream-bg);
  padding: 100px 0 110px;
}

.section-title {
  text-align: center;
  color: var(--green);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 30px;
}

.section-title.light {
  color: var(--cream);
}

.section-title.green {
  color: var(--green);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 60px;
  padding-top: 40px;
}

.how-card {
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 18px;
  padding: 70px 26px 30px;
  text-align: center;
  position: relative;
}

.how-card .how-ic {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  border: 4px solid var(--cream-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-card .how-ic svg {
  width: 38px;
  height: 38px;
}

.how-card .how-ic img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.how-card h3 {
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.how-card p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.55;
}

.how-card {
  cursor: default;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.how-card:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-4px);
}

.how-card:hover h3 {
  color: var(--cream);
}

.how-card:hover p {
  color: #fff;
}

.how-card:hover .how-ic {
  background: var(--cream);
  color: var(--green);
}

.how-card:hover .how-ic img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(35%) saturate(1664%) hue-rotate(112deg) brightness(94%) contrast(96%);
}

.center-btn {
  display: flex;
  width: max-content;
  margin: 0 auto;
}

/* ======== PRICING ======== */
.pricing {
  background: var(--green);
  padding: 100px 0 120px;
  color: #fff;
}

.pricing .section-title {
  margin-bottom: 22px;
}

.pricing-sub {
  text-align: center;
  color: #fff;
  font-size: 15.5px;
  margin-bottom: 6px;
}

.pricing-sub:last-of-type {
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 850px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: #fff;
  color: var(--text-dark);
  border-radius: 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.price-head {
  background: var(--cream);
  border-radius: 30px 30px 100px 30px;
  padding: 0px 28px 0px 28px;
  text-align: center;
  color: var(--green);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 22px;
}

.price-head h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--green);
  line-height: 1.1;
}

.price-head .price {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--green);
  line-height: 1;
}

.price-head .price-tag {
  font-size: 14px;
  line-height: 1.5;
  color: var(--green);
}

.price-body {
  padding: 6px 48px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
  flex: 1;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 14.5px;
  line-height: 1.5;
}

.check {
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check::before {
  content: '';
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.price-body .btn-outline-orange {
  display: flex;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* ======== FAQs ======== */
.faqs {
  background: var(--cream-bg);
  padding: 100px 0 120px;
}

.faqs .section-title {
  margin-bottom: 14px;
}

.faq-list {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-weight: 400;
  font-size: 22px;
  color: var(--green);
  transition: transform .2s;
}

.faq-item[open] {
  background: var(--cream);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-body {
  padding: 0 28px 24px;
  color: var(--green);
  font-size: 16px;
  line-height: 1.6;
}

/* ======== CONTACT US ======== */
.contact {
  background: var(--cream-bg);
  padding-bottom: 100px;
  padding-top: 100px;
  color: #fff;
}

.contact .section-title {
  margin-bottom: 14px;
}

.contact-form {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.contact-form .field {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: .2px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #e2e0d7;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: #fbfaf6;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a8a89d;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(14, 62, 39, .1);
}

.contact-form .field.invalid input,
.contact-form .field.invalid textarea {
  border-color: #d64545;
  background: #fdf4f4;
}

.field-error {
  display: none;
  color: #d64545;
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
}

.contact-form .field.invalid .field-error {
  display: block;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 38px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  background: #fff;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: filter .15s;
}

.btn-contact:hover {
  background-color: var(--orange);
  color: #ffffff;
}

/* ======== CTA BANNER + FOOTER ======== */
.cta-banner {
  background: var(--cream-bg);
  padding: 0 0 0px;
  position: relative;
}

.cta-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: #fff;
  z-index: 0;
}

.cta-card {
  position: relative;
  background: linear-gradient(105deg, var(--green) 0%, var(--green) 38%, #5b3115 72%, var(--orange) 100%);
  border-radius: 80px;
  padding: 70px 76px 56px;
  text-align: center;
  color: #fff;
  box-shadow:
    0 10px 0 -2px rgba(199, 207, 188, .55),
    0 22px 0 -10px rgba(199, 207, 188, .35),
    0 34px 0 -18px rgba(199, 207, 188, .22);
  z-index: 1;
}

.cta-card h2 {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: .5px;
  line-height: 100%;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  min-width: 210px;
  transition: background .15s;
}

.store-btn:hover {
  background: #fff;
  color: var(--green)
}

.store-btn svg {
  width: 30px;
  height: 30px;
}

.store-btn .lbl-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.store-small {
  font-size: 11px;
  opacity: .95;
  letter-spacing: .3px;
}

.store-big {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .2px;
}

.iap {
  color: #fff;
  font-size: 13px;
  opacity: .92;
}

.site-footer {
  background: #fff;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 50px;
  text-align: left;
}

.foot-logo {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
}

.addr {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--green);
  font-size: 15px;
  line-height: 1.5;
}

.pin-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pin-ic svg {
  width: 14px;
  height: 14px;
}

.foot-col h4 {
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.foot-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 30px;
}

.foot-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.foot-links a {
  color: black;
  font-size: 15px;
  font-weight: 500;
}

.foot-links a:hover {
  color: var(--orange);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.socials a:hover {
  background: var(--cream);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.foot-bottom {
  background: var(--green);
  color: #fff;
  padding: 14px 0;
  font-size: 13px;
}

.foot-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .nav-inner {
    padding: 12px 20px;
    gap: 14px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding: 9px 14px;
    font-size: 13px;
  }

  .nav .btn-cream {
    padding: 11px 20px;
    font-size: 13px;
  }

  .why {
    padding: 80px 0;
  }

  .why-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .why-phone {
    order: 2;
    position: relative;
    min-height: auto;
    margin-bottom: -108px;
  }

  /* Phone is absolutely positioned on desktop — return it to normal flow on
     tablet/mobile so it stacks below the text instead of overlapping it. The
     negative margin on .why-phone pulls the phone flush with the bottom of
     the green section. */
  .why-phone .phone-frame {
    position: relative;
    bottom: auto;
    width: min(360px, 80%);
    margin: 0 auto;
    display: block;
  }

  .why-phone .phone-frame::before {
    width: auto;
    left: -18px;
    right: -18px;
  }

  .how {
    padding: 80px 0 90px;
  }

  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 22px;
  }

  .pricing {
    padding: 80px 0 100px;
  }

  .pricing-grid {
    gap: 28px;
  }

  .faqs {
    padding: 80px 0 100px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .foot-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }

  /* Mobile nav: hamburger toggles a dropdown */
  .nav-inner {
    padding: 10px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    justify-content: flex-start;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
  }

  .nav .btn-cream {
    padding: 10px 18px;
    font-size: 12.5px;
  }

  .brand img {
    height: 40px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: clamp(44px, 13vw, 72px);
    line-height: 1.05;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn-outline-orange,
  .hero-cta .btn-cream {
    width: 100%;
    max-width: 280px;
  }

  .why {
    padding: 60px 0;
  }

  .phone-frame {
    width: min(280px, 90%) !important;
  }

  .why-phone {
    margin-bottom: -100px;
  }

  .why-text h2 {
    font-size: 34px;
  }

  .why-text .lead,
  .why-text .lorem {
    font-size: 14px;
  }

  .why-features li {
    font-size: 16px;
  }

  .how {
    padding: 60px 0 80px;
  }

  .how-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    padding-top: 30px;
  }

  .pricing {
    padding: 60px 0 80px;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .pricing-card::before {
    left: 0;
    right: 0;
  }

  .faqs {
    padding: 60px 0 80px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 14.5px;
  }

  .faq-body {
    padding: 0 20px 20px;
    font-size: 14px;
  }


  .contact-form {
    padding: 26px 20px;
  }

  .cta-card {
    padding: 40px 24px 34px;
    border-radius: 64px;
  }

  .store-buttons {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    min-width: 0;
    flex: 0 0 auto;
    width: min(260px, 100%);
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 36px;
  }

  .foot-col:first-child {
    grid-column: auto;
  }

  .foot-links {
    grid-template-columns: 1fr;
  }

  .foot-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 16px 16px;
  }

  .hero-title {
    font-size: clamp(38px, 14vw, 60px);
    line-height: 1;
  }

  .why-text h2 {
    font-size: 28px;
  }

  .why-features li {
    font-size: 14px;
  }

  .why-text .lead,
  .why-text .lorem {
    font-size: 13px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .price-head h3 {
    font-size: 24px;
  }

  .price-head .price {
    font-size: 36px;
  }

  .cta-card h2 {
    font-size: 18px;
  }

  .cta-card {
    border-radius: 48px;
  }

  .store-btn {
    padding: 8px 14px;
  }

  .store-big {
    font-size: 15px;
  }
}

/* ==========================================================================
   SUBPAGES (why-us / how-it-works / pricing / faqs / contact)
   Shared scaffolding: page banner, content sections, placeholder blocks,
   and contact call-to-action. Scoped to body.page-sub so it never touches
   the home page or admin pages.
   ========================================================================== */
.page-sub .page-head {
  background: var(--cream-bg);
  padding: 56px 0 52px;
  text-align: center;
  border-bottom: 1px solid #e7dfc8;
}

.page-sub .page-head h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--green);
  letter-spacing: .5px;
}

.page-sub .page-head p {
  max-width: 640px;
  margin: 14px auto 0;
  color: #555;
  font-size: 15px;
}

.page-sub .head-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-sub .content-section {
  padding: 64px 0;
}

.page-sub .content-section:nth-of-type(even) {
  background: #fafafa;
}

/* Reusable placeholder grid + cards for the "2-3 internal sections" */
.page-sub .ph-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.page-sub .ph-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 6px 20px rgba(60, 60, 60, .05);
}

.page-sub .ph-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}

.page-sub .ph-card p {
  color: #666;
  font-size: 14px;
}

.page-sub .ph-note {
  margin-top: 28px;
  text-align: center;
  color: #9a9a9a;
  font-size: 12.5px;
  font-style: italic;
}

/* Contact call-to-action band */
.page-sub .subpage-cta {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 56px 0;
}

/* Subpage section headings (now h3) — fixed 40px per spec */
.page-sub .section-title {
  font-size: 40px;
}

.page-sub .subpage-cta h3 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-sub .subpage-cta p {
  color: #d7e3d2;
  margin-bottom: 24px;
  font-size: 15px;
}

/* Contact page specifics */
.page-sub .contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 44px;
}

.page-sub .contact-info .ci-item {
  text-align: center;
  padding: 26px 20px;
  border: 1px solid #ececec;
  border-radius: 16px;
}

.page-sub .contact-info .ci-item .ci-ic {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--cream-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-sub .contact-info .ci-item .ci-ic svg {
  width: 22px;
  height: 22px;
}

.page-sub .contact-info .ci-item h4 {
  color: var(--green);
  font-size: 15px;
  margin-bottom: 6px;
}

.page-sub .contact-info .ci-item p {
  color: #666;
  font-size: 13.5px;
}

/* ==========================================================================
   HOW IT WORKS page — numbered steps, hover-flip tiles, step infographic
   ========================================================================== */
.page-how .hiw-intro {
  max-width: 760px;
  margin: 0 auto;
}

/* ----- Numbered step ----- */
.page-how .step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.page-how .step-num {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.page-how .step-head h3 {
  font-size: 40px;
  color: var(--green);
  font-weight: 800;
}

.page-how .step-lead {
  font-weight: 700;
  color: #2c2c2c;
}

.page-how .content-section p {
  color: #555;
  max-width: 100%;
  margin-bottom: 10px;
  font-size: 15px;
}

.page-how .flip-label {
  font-weight: 700;
  color: var(--green);
  margin: 22px 0 4px;
}

/* ----- Hover/tap flip tiles ----- */
.page-how .flip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.page-how .flip-card {
  perspective: 1000px;
  height: 156px;
  cursor: pointer;
  outline: none;
}

.page-how .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .6s;
  transform-style: preserve-3d;
}

.page-how .flip-card:hover .flip-inner,
.page-how .flip-card:focus .flip-inner,
.page-how .flip-card:focus-within .flip-inner {
  transform: rotateY(180deg);
}

.page-how .flip-front,
.page-how .flip-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.page-how .flip-front {
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 6px 20px rgba(60, 60, 60, .06);
}

.page-how .flip-front .fc-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.page-how .flip-front .fc-ic svg {
  width: 26px;
  height: 26px;
}

.page-how .flip-front span {
  font-weight: 700;
  color: var(--green);
  font-size: 14px;
}

.page-how .flip-back {
  background: var(--green);
  color: #fff;
  transform: rotateY(180deg);
  font-size: 14px;
  line-height: 1.45;
}

/* ----- "Start Exploring" infographic ----- */
.page-how .infographic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.page-how .info-step {
  position: relative;
  text-align: center;
  padding: 0 6px;
}

/* connector line between steps */
.page-how .info-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 38px);
  right: calc(-50% + 38px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0 6px, transparent 6px 12px);
  opacity: .4;
}

.page-how .info-badge {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--cream-bg);
  border: 2px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
}

.page-how .info-step h4 {
  color: var(--green);
  font-size: 16px;
  margin-bottom: 6px;
}

.page-how .info-step p {
  color: #666;
  font-size: 13px;
}

@media (max-width: 820px) {
  .page-how .infographic {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .page-how .info-step:not(:last-child)::after {
    display: none;
  }
}

/* ==========================================================================
   SITE MAP — "All Pages" link block on the home page
   ========================================================================== */
.sitemap {
  padding: 64px 0;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.sitemap .sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.sitemap .sm-col h4 {
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}

.sitemap .sm-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sitemap .sm-col a {
  color: #555;
  font-size: 14px;
  transition: color .15s;
}

.sitemap .sm-col a:hover {
  color: var(--green);
  text-decoration: underline;
}

/* ==========================================================================
   WHY US — nationwide "U.S. State Map" graphic placeholder
   ========================================================================== */
.page-sub .usmap-graphic {
  margin: 40px auto 0;
  max-width: 780px;
  background: linear-gradient(160deg, var(--cream-bg), #ffffff);
  border: 1px solid #e7dfc8;
  border-radius: 22px;
  padding: 50px 24px;
  text-align: center;
}

.page-sub .usmap-graphic .map-ic {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  color: var(--green);
}

.page-sub .usmap-graphic .map-ic svg {
  width: 100%;
  height: 100%;
}

.page-sub .usmap-graphic .map-big {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}

.page-sub .usmap-graphic .map-sub {
  margin-top: 8px;
  color: #6a6a6a;
  font-size: 14px;
}

.page-sub .usmap-graphic small {
  display: block;
  margin-top: 14px;
  color: #a59a78;
  font-style: italic;
  font-size: 12px;
}

/* ----- Subpage banner image placeholder (first section) ----- */
.page-sub .page-banner {
  margin: 30px auto 0;
  max-width: 1000px;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #e9e2cc, #f6f1e5);
  border: 1px dashed #cdbf95;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8f6a;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
}

.page-sub .page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .page-sub .page-banner {
    height: 180px;
  }
}

/* ----- Subpage first section: banner (left) + text (right) ----- */
.page-sub .page-head .page-head-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  text-align: left;
}

.page-sub .page-head-text {
  text-align: left;
}

.page-sub .page-head-text .hiw-intro {
  max-width: none;
  margin: 0 0 18px;
}

.page-sub .page-head .head-actions {
  justify-content: flex-center;
}

/* In the two-column layout the banner fills its column */
.page-sub .page-head .page-banner {
  margin: 0;
  max-width: none;
  width: 100%;
  height: 340px;
}

@media (max-width: 820px) {
  .page-sub .page-head .page-head-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .page-sub .page-head-text {
    text-align: center;
  }

  .page-sub .page-head .head-actions {
    justify-content: center;
  }

  .page-sub .page-head .page-banner {
    height: 240px;
  }
}

/* Offset in-page anchor jumps so the sticky header doesn't cover the target */
:target {
  scroll-margin-top: 100px;
}

section[id] {
  scroll-margin-top: 100px;
}

/* ==========================================================================
   HOW IT WORKS — alternating numbered steps timeline
   ========================================================================== */
.page-how .timeline {
  position: relative;
  max-width: 1040px;
  margin: 40px auto 0;
}

.page-how .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #e3ddc7;
  transform: translateX(-50%);
}

.page-how .tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  margin-bottom: 36px;
}

.page-how .tl-step:last-child {
  margin-bottom: 0;
}

.page-how .tl-num {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  margin: 0 auto;
  z-index: 1;
  box-shadow: 0 0 0 6px #fff;
}

.page-how .tl-content {
  position: relative;
  background: #fff;
  border: 1px solid #e7e2d0;
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 6px 20px rgba(60, 60, 60, .05);
  text-align: left;
}

/* Alternate sides: content one side, placeholder image on the other.
   All three items are pinned to row 1 so the image never drops to a new row. */
.page-how .tl-content,
.page-how .tl-media {
  grid-row: 1;
  align-self: center;
}

.page-how .tl-step:nth-child(odd) .tl-content {
  grid-column: 1;
}

.page-how .tl-step:nth-child(odd) .tl-media {
  grid-column: 3;
}

.page-how .tl-step:nth-child(even) .tl-content {
  grid-column: 3;
}

.page-how .tl-step:nth-child(even) .tl-media {
  grid-column: 1;
}

.page-how .tl-media {
  height: 230px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e9e2cc, #f6f1e5);
  border: 1px dashed #cdbf95;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8f6a;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  text-align: center;
}

.page-how .tl-content h3 {
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-how .tl-content p {
  color: #555;
  font-size: 14.5px;
  margin-bottom: 10px;
}

.page-how .tl-content .step-lead {
  font-weight: 700;
  color: #2c2c2c;
}

.page-how .tl-label {
  font-weight: 700;
  color: var(--green);
  margin: 6px 0;
}

.page-how .tl-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-how .tl-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
  color: #555;
  font-size: 14px;
}

.page-how .tl-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream-bg);
  border: 2px solid var(--green);
}

.page-how .tl-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

@media (max-width: 820px) {
  .page-how .timeline::before {
    left: 28px;
  }

  .page-how .tl-step {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    margin-bottom: 26px;
    align-items: start;
  }

  .page-how .tl-num {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .page-how .tl-step:nth-child(odd) .tl-content,
  .page-how .tl-step:nth-child(even) .tl-content {
    grid-column: 2;
    grid-row: 1;
  }

  /* On mobile the image stacks under the content in the right rail */
  .page-how .tl-step:nth-child(odd) .tl-media,
  .page-how .tl-step:nth-child(even) .tl-media {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    height: 180px;
    margin-top: 14px;
  }
}

/* ==========================================================================
   PRICING PAGE (pricing.html) — three-tier cards, comparison table,
   annual-savings banner, why-upgrade, no-fees, download CTA.
   All scoped to .page-sub so the home page's shared .pricing block is safe.
   ========================================================================== */

/* Three cards side by side (home page keeps the 2-col default) */
.page-sub .pricing-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1100px;
  gap: 28px;
  align-items: stretch;
}

.page-sub .plan-icon {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.page-sub .price .per {
  font-size: 18px;
  font-weight: 600;
}

/* Featured (Outdoor Pro) card highlight */
.page-sub .pricing-card.featured {
  outline: 3px solid var(--orange);
  outline-offset: 0;
}

.page-sub .plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---- Comparison table ---- */
.compare-intro {
  text-align: center;
  color: #555;
  font-size: 15px;
  margin: -10px 0 30px;
}

.compare-wrap {
  max-width: 980px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(60, 60, 60, .07);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
  text-align: center;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
  font-size: 14.5px;
}

.compare-table thead th {
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.compare-table tbody td:first-child,
.compare-table thead th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
}

/* The "Features" header sits on the green header row — keep it white */
.compare-table thead th:first-child {
  color: #fff;
}

.compare-table .col-pro {
  background: var(--cream-bg);
}

.compare-table thead th.col-pro {
  background: var(--green-deep);
}

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

.compare-table .yes {
  color: var(--green);
  font-weight: 800;
  font-size: 17px;
}

.compare-table .no {
  color: #bbb;
  font-weight: 700;
}

/* ---- Annual savings banner ---- */
.savings-banner {
  background: linear-gradient(90deg, var(--green) 0%, #7a4a14 60%, var(--orange) 100%);
  color: #fff;
  text-align: center;
  padding: 48px 0;
}

.savings-banner h3 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 8px;
}

.savings-banner p {
  font-size: 16px;
  color: #f3e7d4;
}

/* ---- Why upgrade ---- */
.why-upgrade-lead {
  max-width: 760px;
  margin: -10px auto 0;
  text-align: center;
  color: #555;
  font-size: 15.5px;
  line-height: 1.7;
}

.benefits-grid {
  max-width: 820px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  text-align: left;
}

.benefits-grid li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ---- No hidden fees ---- */
.page-sub .no-fees p {
  max-width: 760px;
  margin: -6px auto 0;
  text-align: center;
  color: #555;
  font-size: 15.5px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .page-sub .pricing-grid-3 {
    grid-template-columns: minmax(0, 1fr);
    max-width: 460px;
  }

  .page-sub .pricing-card.featured {
    outline-width: 2px;
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   FAQ PAGE (faqs.html) — categorised accordion groups.
   Reuses the shared .faqs / .faq-item / .faq-body styling; adds category
   headings, group spacing, and list markers inside answers.
   ========================================================================== */
.faq-group {
  max-width: 940px;
  margin: 0 auto 44px;
}

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

.faq-cat {
  text-align: left;
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream);
}

/* Lists inside answers (global `ul { list-style:none }` is overridden here) */
.faq-body ul,
.faq-body ol {
  margin: 12px 0 4px;
  padding-left: 22px;
}

.faq-body ul {
  list-style: disc;
}

.faq-body ol {
  list-style: decimal;
}

.faq-body li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.faq-body a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .faq-cat {
    font-size: 20px;
  }
}

/* ==========================================================================
   CONTACT PAGE (contact.html) — new form fields reuse the existing
   .contact-form design; contact info reuses the existing .ci-item cards.
   ========================================================================== */

/* FAQ quick-links list: hug content and center the two columns as a pair
   under the heading; items stay left-aligned like a normal checklist. */
.faq-topics {
  grid-template-columns: auto auto;
  justify-content: center;
  justify-items: start;
  column-gap: 64px;
}

@media (max-width: 600px) {
  .faq-topics {
    grid-template-columns: auto;
    justify-content: center;
  }
}

/* Two fields side by side (first/last name, email/phone) */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form .req {
  color: #d64545;
}

.contact-form .opt {
  color: #a8a89d;
  font-weight: 500;
  font-size: 12.5px;
}

/* Subject select matches the existing input styling, with a custom caret */
.contact-form select {
  width: 100%;
  border: 1.5px solid #e2e0d7;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background-color: #fbfaf6;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230E3E27' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(14, 62, 39, .1);
}

.contact-form .field.invalid select {
  border-color: #d64545;
  background-color: #fdf4f4;
}

/* Contact Information heading sits below the form */
.contact .ci-heading {
  margin-top: 56px;
  margin-bottom: 4px;
}

.contact .ci-sub {
  text-align: center;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 26px;
}

/* Contact info as green brand cards (high contrast on the cream section) */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.support-card {
  background: var(--green);
  color: #fff;
  border-radius: 18px;
  padding: 34px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 14px 32px rgba(14, 62, 39, .16);
  transition: transform .15s;
}

.support-card:hover {
  transform: translateY(-3px);
}

.support-ic {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-ic svg {
  width: 24px;
  height: 24px;
}

.support-label {
  color: var(--cream);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.support-value {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

a.support-value:hover {
  color: var(--cream);
  text-decoration: underline;
}

@media (max-width: 720px) {
  .support-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 360px;
  }
}

/* ---- Follow the Adventure (social pills) ---- */
.social-follow {
  background: var(--cream-bg);
  padding: 72px 0;
  text-align: center;
}

.social-follow p {
  max-width: 620px;
  margin: -8px auto 0;
  color: #555;
  font-size: 15.5px;
  line-height: 1.7;
}

.follow-icons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.follow-icons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #e7dfc8;
  transition: background .15s, color .15s, transform .15s;
}

.follow-icons a svg {
  width: 22px;
  height: 22px;
}

.follow-icons a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
}