:root {
  --bg: #f5efe4;
  --surface: #fffaf2;
  --surface-strong: #ffffff;
  --text: #17211f;
  --muted: #5d6865;
  --line: rgba(23, 33, 31, 0.12);
  --brand: #1f6a52;
  --brand-dark: #154b3a;
  --accent: #c97a2b;
  --shadow: 0 24px 60px rgba(34, 39, 37, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f9fb 0%, #eef2f5 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main,
.site-header,
footer {
  padding-left: 24px;
  padding-right: 24px;
}

.site-header,
main > section,
footer {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 33, 31, 0.08);
}

.brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 0;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  align-self: center;
  margin-left: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-group::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.nav-group .submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 33, 31, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(34, 39, 37, 0.14);
  z-index: 30;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu,
.submenu:hover {
  display: flex;
}

.nav-group .submenu a {
  padding: 10px 18px;
  border-radius: 0;
  border: none;
  background: transparent;
  width: 100%;
}

.nav-group .submenu a:hover,
.nav-group .submenu a:focus-visible {
  background: rgba(31, 106, 82, 0.08);
  transform: none;
}

.header-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 180ms ease;
  transform-origin: center;
}

.header-row.menu-open .menu-toggle {
  border-color: rgba(31, 106, 82, 0.35);
  background: #ffffff;
}

.header-row.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-row.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.header-row.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(31, 106, 82, 0.18));
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.98rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-nav a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #ffffff;
  border-color: rgba(31, 106, 82, 0.35);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  padding-top: 28px;
  padding-bottom: 54px;
}

.hero-stacked {
  grid-template-columns: 1fr;
}

.hero-stacked .hero-card {
  max-width: 820px;
}

.home-hero {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
}

.home-hero .hero-copy {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(30px, 3vw, 48px);
}

.home-hero .hero-buttons {
  justify-content: center;
}

.home-hero .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.home-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.8rem, 4.7vw, 4.6rem);
}

.home-hero .hero-text {
  max-width: 58ch;
}

.home-hero .hero-image {
  width: 100%;
  height: clamp(240px, 28vw, 340px);
  margin-top: 24px;
  border-radius: calc(var(--radius-md) + 4px);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 16px 32px rgba(34, 39, 37, 0.14);
}

.home-hero .hero-trust-bar {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(31, 106, 82, 0.98), rgba(21, 75, 58, 0.98));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero .hero-trust-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-copy,
.hero-content,
.hero-card,
.services .service-box,
.contact,
footer {
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-content {
  padding: 44px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 242, 0.95)),
    #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-copy::after,
.hero-content::after {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(31, 106, 82, 0.16), transparent 68%);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.02;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 3.2vw, 3.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: 18px;
}

.hero-text,
.about p,
.contact-copy p:last-child,
.hero-stat-copy,
.service-box li,
.why-list li,
.area-chips span,
footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 52ch;
  margin: 18px 0 0;
  font-size: 1.15rem;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 106, 82, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 106, 82, 0.18);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(31, 106, 82, 0.08);
  font-weight: 600;
}

.hero-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(31, 106, 82, 0.98), rgba(21, 75, 58, 0.98)),
    var(--brand);
  color: #ffffff;
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-photo {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-photo-image {
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-md) + 2px);
}

.hero-card-label {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-stat {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-stat-copy {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

main > section:not(.hero) {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  text-align: center;
  justify-items: center;
}

.section-heading h1,
.section-heading h2 {
  max-width: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about p {
  margin: 0;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.about-text {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.66);
}

.about-text p {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: clamp(1.08rem, 0.8vw + 0.9rem, 1.24rem);
  line-height: 1.85;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-box {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.service-box ul,
.why-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-box li,
.why-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.7;
}

.service-box li + li,
.why-list li + li {
  margin-top: 10px;
}

.service-box li::before,
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.service-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-buttons .btn {
  width: 100%;
  text-align: center;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--brand);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: background 0.2s;
}

.service-links a:hover {
  background: var(--brand-dark);
}
.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 106, 82, 0.12);
  color: var(--text);
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
  padding: 36px;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(135deg, rgba(201, 122, 43, 0.12), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.contact-copy h2 {
  margin-bottom: 14px;
}

.contact-copy p:last-child {
  margin: 0;
  line-height: 1.7;
}

.booking-form {
  display: grid;
  gap: 12px;
}

.booking-form label {
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 48px;
  border: 1px solid rgba(23, 33, 31, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: clamp(1rem, 1.4vw, 1.05rem);
  color: var(--text);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(31, 106, 82, 0.24);
  border-color: rgba(31, 106, 82, 0.34);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: var(--brand);
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
}

.booking-form textarea {
  resize: vertical;
  min-height: 130px;
}

footer {
  margin-top: 34px;
  margin-bottom: 34px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.site-map {
  text-align: left;
}

.site-map h4 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: var(--brand);
}

.site-map ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.site-map li {
  margin: 0;
}

.site-map a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}

.site-map a:hover {
  color: var(--brand);
}

footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .about-grid,
  .services-grid,
  .contact,
  .why-list {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 26px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    position: sticky;
    padding-right: 24px;
    min-height: 0;
  }

  .header-row {
    position: relative;
    width: auto;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .header-cta {
    position: static;
    min-height: 44px;
    padding: 0 16px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(86vw, 360px);
    max-height: 70vh;
    overflow-y: auto;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(23, 33, 31, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 48px rgba(34, 39, 37, 0.16);
    z-index: 35;
    gap: 12px;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .header-row.menu-open .site-nav {
    display: flex;
  }

  .site-nav .nav-group {
    width: 100%;
    display: grid;
    gap: 8px;
  }

  .site-nav .nav-group::after {
    display: none;
  }

  .site-nav .nav-group .submenu {
    display: none;
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    border-radius: 10px;
    padding: 6px 0 0;
    background: transparent;
    gap: 6px;
  }

  .site-nav .nav-group.menu-group-open .submenu {
    display: flex;
  }

  .site-nav .submenu a {
    padding: 8px 12px 8px 18px;
    font-size: 0.92rem;
    border: 0;
    border-radius: 10px;
    background: rgba(31, 106, 82, 0.06);
    margin: 0;
  }

  .site-nav a {
    width: 100%;
    text-align: left;
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(23, 33, 31, 0.12);
    background: rgba(255, 255, 255, 0.94);
    font-weight: 600;
  }

  .site-nav .nav-group > a {
    border-color: rgba(31, 106, 82, 0.2);
    background: linear-gradient(180deg, rgba(31, 106, 82, 0.08), rgba(31, 106, 82, 0.03));
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    transform: none;
    border-color: rgba(31, 106, 82, 0.3);
    background: #ffffff;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .site-map {
    text-align: center;
  }

  .site-map ul {
    justify-content: center;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    text-align: center;
  }

  h1 {
    max-width: none;
  }

  h2 {
    max-width: none;
  }

  .home-hero .hero-image {
    height: clamp(200px, 44vw, 300px);
  }

  .home-hero .hero-trust-bar {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  main,
  .site-header,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    padding-top: 14px;
    padding-bottom: 10px;
  }

  .hero-copy,
  .hero-card,
  .contact,
  .service-box,
  .about p,
  .why-list {
    padding: 18px;
  }

  .why-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .area-chips {
    justify-content: center;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 1rem;
    min-height: 52px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 160px;
    height: 160px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .home-hero .hero-trust-bar {
    padding: 12px;
    gap: 8px;
  }

  .home-hero .hero-trust-bar span {
    width: 100%;
    justify-content: center;
    min-height: 38px;
  }

  .site-header {
    min-height: 0;
  }

  .header-row {
    position: relative;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    width: auto;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }
}
.section-image {
  width: 100%;
  height: auto;
  max-height: 340px;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 16px 36px rgba(34, 39, 37, 0.14);
}

.about-grid .section-image,
.hero .section-image {
  display: block;
  margin: 0 auto;
  max-width: 680px;
  width: 100%;
  align-self: center;
}

/* On mobile/tablet the about-grid collapses to 1 column — span full width */
@media (max-width: 960px) {
  .about-grid .section-image {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .section-image {
    max-height: 300px;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(31, 106, 82, 0.08);
  border: 1px solid rgba(31, 106, 82, 0.15);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease;
}

.footer-social a:hover {
  background: rgba(31, 106, 82, 0.15);
  border-color: rgba(31, 106, 82, 0.3);
}

.footer-social svg {
  flex-shrink: 0;
}

.business-hours {
  font-size: 0.92rem;
  color: var(--text);
  background: rgba(31, 106, 82, 0.08);
  border: 1px solid rgba(31, 106, 82, 0.15);
  padding: 8px 14px;
  border-radius: 999px;
}

.business-hours strong {
  color: var(--brand);
}

/* ── Trust bar ── */

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: rgba(31, 106, 82, 0.08);
  border: 1px solid rgba(31, 106, 82, 0.15);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
}

/* ── FAQ section ── */

.faq-section {
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--brand);
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 640px) {
  .faq-section {
    padding: 20px;
  }
  .faq-item {
    padding: 16px 18px;
  }
}

/* ── Conversion elements ── */

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--muted);
  justify-content: center;
}

.hero-rating-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.form-reassurance {
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 6px;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}

.form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  background: rgba(31, 106, 82, 0.07);
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(31, 106, 82, 0.15);
}

.mobile-cta-bar {
  display: none;
}
    left: 0;
    right: 0;
    z-index: 50;
    padding: 10px 16px 12px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(23, 33, 31, 0.1);
    box-shadow: 0 -4px 24px rgba(34, 39, 37, 0.12);
  }

  .mobile-cta-bar .btn {
    flex: 1;
    min-height: 48px;
    font-size: 1rem;
  }

  body {
    padding-bottom: 80px;
  }
}
