/* ============================================================
   All Buzz Cleaning — clone styles
   Reverse-engineered from https://allbuzzcleaning.com.au/
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --green-primary: #4CAF50;
  --green-primary-hover: #43A047;
  --green-dark: #016837;
  --green-dark-hover: #014C28;
  --green-mint-bg: #ECFEF5;
  --green-light-bg: #F1F8E9;
  --green-step-bg: #E8F5E9;
  --ink: #000000;
  --ink-soft: #2E2E2E;
  --ink-dark: #141615;
  --text-muted: #646464;
  --text-body: #333333;
  --white: #FFFFFF;
  --shadow-nav: 0 4px 10px -5px rgba(155, 174, 255, 1);
  --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
  --font-display: "League Spartan", sans-serif;
  --font-body: "League Spartan", sans-serif;
  --radius-pill: 50px;
  --radius-card: 12px;
  --gold: #FFB400;
  --gold-soft: #FFF4D2;
  --red: #E53935;
  --red-soft: #FFEBEE;
  --urgency-bg: #FFF8E1;
  --urgency-border: #FFCC02;
  --guarantee-gold: #F5C200;
  --guarantee-deep: #B8860B;
}

/* ---------- Reset + base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  color: var(--ink);
  text-transform: capitalize;
  font-weight: 400;
}
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container-fluid {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0;
}
.row { display: flex; flex-wrap: wrap; }

/* Bootstrap-like grid columns (simplified) */
.col-12 { flex: 0 0 100%; max-width: 100%; }
@media (min-width: 768px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 992px) {
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
}

/* ---------- Reusable button styles ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 31px;
  border-radius: var(--radius-pill);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.43;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: capitalize;
}
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--green-primary);
}
.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
  font-weight: 600;
}
.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
}
.btn-dark {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-dark:hover {
  background: var(--white);
  color: var(--green-dark);
}
.btn-small {
  padding: 6px 18px;
  font-size: 14px;
}

/* ============================================================
   1. HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--white);
  padding: 5px 30px;
  box-shadow: var(--shadow-nav);
  position: relative;
  z-index: 100;
  width: 100%;
  transition: all 0.3s;
}
.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1450px;
  margin: 0 auto;
  gap: 20px;
}
.logo-link img {
  width: 120px;
  height: auto;
}
.main-nav { display: flex; align-items: center; gap: 12px; }
.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav .menu > li {
  position: relative;
}
.main-nav .menu > li > a {
  display: block;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--green-primary);
  text-transform: capitalize;
  transition: color 0.3s;
}
.main-nav .menu > li > a:hover,
.main-nav .menu > li.active > a {
  color: var(--green-dark);
}
.main-nav .menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: 8px;
  padding: 8px 0;
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 200;
}
.main-nav .menu > li:hover > .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.main-nav .menu .dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 16px;
  color: var(--ink);
}
.main-nav .menu .dropdown li a:hover {
  background: var(--green-mint-bg);
  color: var(--green-primary);
}
.nav-cta {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}
.nav-mobile-toggle {
  display: none;
  font-size: 28px;
  color: var(--green-primary);
  background: none;
  border: none;
}

@media (max-width: 991px) {
  .main-nav .menu { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-cta { display: none; }
  .site-header { padding: 8px 16px; }
}

/* Mobile sidenav */
.mobile-sidenav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  z-index: 2000;
  overflow-x: hidden;
  transition: width 0.3s;
  padding-top: 60px;
}
.mobile-sidenav.is-open { width: 86%; max-width: 360px; padding: 60px 24px 24px; }
.mobile-sidenav .closebtn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
  color: var(--green-primary);
}
.mobile-sidenav .menu { display: block; }
.mobile-sidenav .menu li a {
  display: block;
  padding: 14px 8px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1px solid #eee;
}
.mobile-sidenav .menu .dropdown {
  padding-left: 16px;
  display: none;
}
.mobile-sidenav .menu li.has-children > a::after {
  content: "+";
  float: right;
  font-weight: 600;
  color: var(--green-primary);
}
.mobile-sidenav .menu li.has-children.is-open > a::after { content: "−"; }
.mobile-sidenav .menu li.has-children.is-open > .dropdown { display: block; }

/* ============================================================
   2. HERO SLIDER
   ============================================================ */
.hero {
  background: var(--green-mint-bg);
  padding: 55px 93px;
  position: relative;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  max-width: 1450px;
  margin: 0 auto;
}
.hero-slide {
  display: flex !important;
  align-items: center;
  gap: 40px;
  min-height: 460px;
}
.hero-slide__copy {
  flex: 0 0 58%;
  max-width: 58%;
  padding-right: 30px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.hero-eyebrow img { width: 60px; height: auto; }
.hero-slide__copy h2 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  text-transform: capitalize;
  margin: 30px 0 10px;
}
.hero-slide__copy p {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 300;
  line-height: 1.43;
  color: var(--ink);
  margin: 10px 100px 30px 0;
}
.hero-slide__ctas {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-slide__image {
  flex: 0 0 42%;
  max-width: 42%;
}
.hero-slide__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Slider controls (Swiper) */
.hero .swiper-button-prev,
.hero .swiper-button-next {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  color: var(--green-primary);
  transition: all 0.3s;
}
.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: var(--green-primary);
  color: var(--white);
}
.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .hero { padding: 40px 24px; }
  .hero-slide { flex-direction: column-reverse; gap: 24px; min-height: 0; }
  .hero-slide__copy,
  .hero-slide__image { flex: 0 0 100%; max-width: 100%; padding: 0; }
  .hero-slide__copy h2 { font-size: 34px; margin-top: 16px; }
  .hero-slide__copy p { font-size: 20px; margin: 10px 0 20px; }
}

/* ============================================================
   3. SERVICES GRID
   ============================================================ */
.services {
  padding: 70px 50px;
  text-align: center;
}
.services__heading {
  max-width: 1450px;
  margin: 0 auto 40px;
}
.services__heading h1 {
  font-family: var(--font-display);
  font-size: 57px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
  text-transform: capitalize;
}
.services__heading p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  text-transform: capitalize;
}
.services__grid {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px 20px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.service-card__media {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 4px solid var(--green-light-bg);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-muted);
  margin: 0;
  text-transform: capitalize;
}
.service-card h2 a {
  color: inherit;
  transition: color 0.3s;
}
.service-card h2 a:hover { color: var(--green-primary); }
.service-card p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  margin: 9px 0 0;
  text-transform: capitalize;
}
.service-card .btn-small { margin-top: 20px; }

@media (max-width: 991px) {
  .services { padding: 50px 20px; }
  .services__heading h1 { font-size: 36px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .service-card__media { width: 140px; height: 140px; }
}
@media (max-width: 575px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   4. WHY CHOOSE
   ============================================================ */
.why-choose {
  background: var(--green-light-bg);
  padding: 70px 50px;
  text-align: center;
}
.why-choose__inner {
  max-width: 1450px;
  margin: 0 auto;
}
.why-choose h2 {
  font-family: var(--font-display);
  font-size: 47px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 50px;
  text-transform: capitalize;
}
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.trust-card {
  text-align: center;
  padding: 24px 16px;
}
.trust-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: transform 0.4s;
}
.trust-card:hover .trust-card__icon { transform: scale(1.08); }
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 12px;
  text-transform: capitalize;
}
.trust-card p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 991px) {
  .why-choose { padding: 50px 20px; }
  .why-choose h2 { font-size: 32px; margin-bottom: 30px; }
  .why-choose__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   5. ABOUT (Your Trusted Partner)
   ============================================================ */
.about {
  padding: 70px 70px;
}
.about__inner {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__media { display: flex; justify-content: center; }
.about__media img {
  max-width: 100%;
  border-radius: 16px;
  height: auto;
}
.about__copy h5 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about__copy h5::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--green-primary);
}
.about__copy h2 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--green-dark);
  margin: 0 0 20px;
  text-transform: none;
}
.about__copy p {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 18px;
}
.about__copy .btn-dark { margin-top: 16px; }

@media (max-width: 991px) {
  .about { padding: 50px 20px; }
  .about__inner { grid-template-columns: 1fr; gap: 30px; }
  .about__copy h2 { font-size: 32px; }
  .about__copy p { font-size: 17px; line-height: 1.7; }
}

/* ============================================================
   6. MOST TRUSTED (CTA section)
   ============================================================ */
.trusted {
  background: var(--green-light-bg);
  padding: 60px 90px;
}
.trusted__inner {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
}
.trusted__copy h2 {
  font-family: var(--font-display);
  font-size: 47px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink-dark);
  margin: 12px 0 24px;
}
.trusted__copy h2 span { color: var(--green-dark); }
.trusted__copy p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 30px;
}
.trusted__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.trusted__buttons .btn { padding: 17px 31px; font-size: 18px; }
.trusted__media img {
  width: 100%;
  border-radius: 16px;
  height: auto;
}

@media (max-width: 991px) {
  .trusted { padding: 50px 20px; }
  .trusted__inner { grid-template-columns: 1fr; gap: 30px; }
  .trusted__copy h2 { font-size: 30px; }
  .trusted__copy p { font-size: 17px; }
}

/* ============================================================
   7. HOW IT WORKS
   ============================================================ */
.how {
  padding: 70px 50px;
  text-align: center;
}
.how__inner { max-width: 1450px; margin: 0 auto; }
.how h2 {
  font-family: var(--font-display);
  font-size: 57px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 8px;
}
.how__subtitle {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 50px;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card { padding: 20px 16px; }
.step-card__num {
  width: 60px;
  height: 60px;
  background: var(--green-step-bg);
  color: var(--green-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}
.step-card h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 12px;
  text-transform: capitalize;
}
.step-card p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
}

@media (max-width: 991px) {
  .how { padding: 50px 20px; }
  .how h2 { font-size: 36px; }
  .how__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   8. STANDARDS (Bond cleaners long-form content)
   ============================================================ */
.standards {
  padding: 50px;
}
.standards__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.standards h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink-soft);
  margin: 26px 0 12px;
  text-transform: capitalize;
}
.standards h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink-soft);
  margin: 26px 0 8px;
  text-transform: capitalize;
}
.standards p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  margin: 12px 0;
}
.standards ul {
  margin: 12px 0 18px 0;
  padding-left: 0;
}
.standards ul li {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  padding-left: 32px;
  position: relative;
}
.standards ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url('../assets/images/arrow-bullet.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 12px;
}
.standards strong { font-weight: 600; }

@media (max-width: 991px) {
  .standards { padding: 30px 20px; }
  .standards h2 { font-size: 24px; }
  .standards h3 { font-size: 20px; }
  .standards p, .standards ul li { font-size: 17px; }
}

/* ============================================================
   9. SERVICE AREAS
   ============================================================ */
.areas {
  background: var(--green-mint-bg);
  padding: 70px 50px;
  text-align: center;
}
.areas__inner { max-width: 1450px; margin: 0 auto; }
.areas h3 {
  font-family: var(--font-display);
  font-size: 57px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 10px;
  text-transform: capitalize;
  display: block;
}
.areas h3 span {
  display: block;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  margin-top: 4px;
  text-transform: none;
}
.areas__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.areas__pills li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-primary);
  color: var(--white);
  padding: 12px 36px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s;
}
.areas__pills li a:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .areas { padding: 50px 20px; }
  .areas h3 { font-size: 32px; }
  .areas h3 span { font-size: 17px; }
  .areas__pills li a { padding: 10px 22px; font-size: 16px; }
}

/* ============================================================
   10. FAQ
   ============================================================ */
.faq {
  padding: 50px 100px;
}
.faq__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.faq h2 {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink-dark);
  margin: 20px 0 40px;
}
.faq__list { text-align: left; }
.faq__item {
  background: #FAFFF7;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #E8F2DC;
  transition: box-shadow 0.3s;
}
.faq__item.is-open {
  box-shadow: var(--shadow-card);
  border-color: var(--green-primary);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  background: transparent;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
}
.faq__question::after {
  content: "+";
  width: 32px;
  height: 32px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq__item.is-open .faq__question::after { content: "−"; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__item.is-open .faq__answer { max-height: 500px; }
.faq__answer-inner {
  padding: 0 26px 22px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
}

@media (max-width: 991px) {
  .faq { padding: 40px 20px; }
  .faq h2 { font-size: 32px; }
  .faq__question { font-size: 17px; padding: 16px 18px; }
  .faq__answer-inner { padding: 0 18px 16px; font-size: 16px; }
}

/* ============================================================
   11. TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 30px 50px 60px;
  text-align: center;
}
.testimonials__inner { max-width: 1450px; margin: 0 auto; }
.testimonials h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: 0.5px;
}
.testimonials__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 40px;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: var(--shadow-card);
  font-weight: 500;
  font-size: 18px;
}
.google-badge__g {
  font-family: "Product Sans", "League Spartan", sans-serif;
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.google-badge__stars { color: #F4B400; letter-spacing: 1px; font-size: 14px; }

.testimonials__slider { position: relative; padding: 0 50px; }
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars { color: #F4B400; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 18px;
  flex-grow: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-display);
}
.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.testimonial-card__meta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  color: var(--green-primary);
}
.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after { font-size: 16px; font-weight: 700; }
.testimonials .swiper-pagination { position: relative; margin-top: 24px; }
.testimonials .swiper-pagination-bullet-active { background: var(--green-primary); }

@media (max-width: 991px) {
  .testimonials { padding: 30px 16px; }
  .testimonials h2 { font-size: 26px; }
  .testimonials__slider { padding: 0 36px; }
}

/* ============================================================
   12. FOOTER (CTA form + columns)
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 60px 40px 16px;
}
.footer__cta-block {
  max-width: 1450px;
  margin: 0 auto 60px;
  text-align: center;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.footer__cta-block h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 10px;
}
.footer__cta-block p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}
.footer-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-form input {
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  outline: none;
  transition: all 0.3s;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.65); }
.footer-form input:focus { background: rgba(255,255,255,0.18); border-color: var(--green-primary); }
.footer-form button {
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.footer-form button:hover { background: var(--white); color: var(--green-dark); }

.footer__cols {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--green-primary);
  border-radius: 3px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
}
.footer-contact-list li i {
  color: var(--green-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-contact-list a:hover { color: var(--green-primary); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--green-primary);
  transform: translateY(-2px);
}
.footer-links li {
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
}
.footer-links li::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url('../assets/images/arrow-bullet.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.85;
}
.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--green-primary); }

.footer__copyright {
  max-width: 1450px;
  margin: 50px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 991px) {
  .site-footer { padding: 40px 20px 16px; }
  .footer__cta-block h2 { font-size: 28px; }
  .footer-form { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(76,175,80,0.4);
  transition: background 0.3s, transform 0.3s;
}
.back-to-top.is-visible { display: inline-flex; }
.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ============================================================
   FLOATING WHATSAPP / PHONE (optional)
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s;
}
.float-wa:hover { transform: scale(1.08); color: var(--white); }

/* ============================================================
   LANDING-PAGE / CONVERSION COMPONENTS
   Added on top of the base clone for high-conversion variant
   ============================================================ */

/* ---------- Top utility bar (sticky CTA) ---------- */
.utility-bar {
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 1100;
}
.utility-bar__left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.utility-bar__item { display: inline-flex; align-items: center; gap: 6px; }
.utility-bar__item i { color: var(--guarantee-gold); }
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.utility-bar__phone {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.utility-bar__phone:hover { color: var(--guarantee-gold); }
.utility-bar__cta {
  background: var(--guarantee-gold);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.utility-bar__cta:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .utility-bar { font-size: 12px; padding: 6px 10px; }
  .utility-bar__left { gap: 10px; }
  .utility-bar__left .utility-bar__item:not(:first-child) { display: none; }
  .utility-bar__cta { padding: 4px 12px; font-size: 11px; }
}

/* ---------- Header tweaks (logo + nav for CRO version) ---------- */
.site-header.is-fixed { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }

/* ---------- Hero rebuild (text left + inline form right) ---------- */
.hero--cro {
  background: linear-gradient(135deg, var(--green-mint-bg) 0%, #FFFFFF 80%);
  padding: 50px 60px 70px;
  position: relative;
  overflow: hidden;
}
.hero--cro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(76,175,80,0.08) 0%, transparent 40%),
                    radial-gradient(circle at 10% 90%, rgba(1,104,55,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero--cro__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
.hero--cro__copy { max-width: 640px; }
.hero--cro__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid #E1F0DA;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero--cro__badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(76,175,80,0); }
}
.hero--cro h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}
.hero--cro h1 .accent { color: var(--green-dark); position: relative; white-space: nowrap; }
.hero--cro h1 .accent::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--guarantee-gold);
  opacity: 0.35;
  z-index: -1;
  border-radius: 4px;
}
.hero--cro__sub {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.hero--cro__sub strong { font-weight: 600; color: var(--green-dark); }
.hero--cro__trustrow {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
}
.hero--cro__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.hero--cro__trust-item i {
  color: var(--green-primary);
  font-size: 16px;
}
.hero--cro__trust-item .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.hero--cro__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero--cro__buttons .btn { padding: 16px 32px; font-size: 17px; font-weight: 600; }
.hero--cro__buttons .btn-primary {
  box-shadow: 0 8px 24px rgba(76,175,80,0.35);
}
.hero--cro__buttons .btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}
.hero--cro__or { color: var(--text-muted); font-size: 14px; }

/* Inline quote card */
.quote-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 26px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  position: relative;
  border-top: 4px solid var(--green-primary);
}
.quote-card__corner {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--guarantee-gold);
  color: var(--green-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.quote-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.quote-card__sub {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.quote-card__steps {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.quote-card__step {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: #E8F2DC;
  transition: background 0.3s;
}
.quote-card__step.is-active { background: var(--green-primary); }
.quote-card__step.is-done { background: var(--green-dark); }
.quote-card__panel { display: none; }
.quote-card__panel.is-active { display: block; }
.quote-card__label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.quote-card__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.quote-card__opt {
  background: #FAFFF7;
  border: 1.5px solid #E8F2DC;
  border-radius: 10px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.quote-card__opt i {
  color: var(--green-primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.quote-card__opt:hover { border-color: var(--green-primary); background: var(--green-mint-bg); }
.quote-card__opt.is-selected { border-color: var(--green-primary); background: var(--green-mint-bg); box-shadow: 0 2px 8px rgba(76,175,80,0.2); }
.quote-card__input,
.quote-card__select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E0E8D3;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  background: #FFF;
  margin-bottom: 10px;
  transition: border-color 0.3s;
  color: var(--ink);
}
.quote-card__input:focus,
.quote-card__select:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}
.quote-card__btn {
  width: 100%;
  background: var(--green-primary);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.quote-card__btn:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(1,104,55,0.3); }
.quote-card__back {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 13px;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
}
.quote-card__back:hover { color: var(--green-dark); }
.quote-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-muted);
}
.quote-card__footer i { color: var(--green-primary); }
.quote-card__success {
  text-align: center;
  padding: 30px 10px;
}
.quote-card__success i {
  font-size: 56px;
  color: var(--green-primary);
  margin-bottom: 14px;
}
.quote-card__success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0 0 10px;
}
.quote-card__success p {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 991px) {
  .hero--cro { padding: 30px 20px 40px; }
  .hero--cro__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero--cro h1 { font-size: 36px; }
  .hero--cro__sub { font-size: 17px; }
  .hero--cro__trustrow { gap: 14px; }
  .hero--cro__trust-item { font-size: 13px; }
  .quote-card { padding: 22px 20px; }
}

/* ---------- Logo / trust strip ---------- */
.trust-strip {
  background: var(--white);
  padding: 28px 30px;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}
.trust-strip__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-strip__item i {
  font-size: 22px;
  color: var(--green-primary);
  width: 30px;
  text-align: center;
}
.trust-strip__item strong { color: var(--ink); font-weight: 600; }

@media (max-width: 767px) {
  .trust-strip { padding: 18px 14px; }
  .trust-strip__inner { gap: 14px; justify-content: flex-start; }
  .trust-strip__item { font-size: 13px; flex: 0 0 45%; }
}

/* ---------- Guarantee section (the big risk-reversal piece) ---------- */
.guarantee {
  padding: 70px 40px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,180,0,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--green-mint-bg) 100%);
}
.guarantee__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 2px solid var(--guarantee-gold);
  position: relative;
}
.guarantee__badge {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  position: relative;
  background: radial-gradient(circle, var(--guarantee-gold) 0%, #D4A300 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  text-align: center;
  box-shadow: 0 14px 36px rgba(245,194,0,0.4);
  border: 8px solid var(--white);
  outline: 4px solid var(--guarantee-gold);
}
.guarantee__badge::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px dashed rgba(1,104,55,0.4);
  border-radius: 50%;
}
.guarantee__badge .pct {
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--green-dark);
}
.guarantee__badge .label1 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}
.guarantee__badge .label2 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}
.guarantee__copy h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
}
.guarantee__copy h2 span { color: var(--green-dark); }
.guarantee__copy p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.guarantee__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.guarantee__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}
.guarantee__bullets i {
  color: var(--green-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.guarantee__cta:hover { background: var(--green-primary); transform: translateY(-2px); color: var(--white); }

@media (max-width: 991px) {
  .guarantee { padding: 50px 16px; }
  .guarantee__inner { grid-template-columns: 1fr; gap: 30px; padding: 30px 20px; }
  .guarantee__badge { width: 180px; height: 180px; }
  .guarantee__badge .pct { font-size: 50px; }
  .guarantee__copy h2 { font-size: 26px; }
}

/* ---------- Pricing cards ---------- */
.pricing {
  padding: 70px 40px;
  background: var(--white);
  text-align: center;
}
.pricing__inner { max-width: 1300px; margin: 0 auto; }
.pricing__eyebrow {
  display: inline-block;
  background: var(--green-mint-bg);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.pricing h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 12px;
}
.pricing__sub {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-soft);
  margin: 0 auto 40px;
  max-width: 600px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.price-card {
  background: var(--white);
  border: 2px solid #EBF3E2;
  border-radius: 18px;
  padding: 30px 26px;
  text-align: left;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.price-card--featured {
  border-color: var(--green-primary);
  background: linear-gradient(180deg, var(--green-mint-bg) 0%, var(--white) 30%);
  transform: scale(1.03);
}
.price-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.price-card__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--white);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.price-card__tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.price-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 4px;
}
.price-card__price .from { font-size: 14px; font-weight: 400; color: var(--text-muted); margin-right: 2px; }
.price-card__price .amount { font-size: 44px; letter-spacing: -1px; }
.price-card__price .unit { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.price-card__note {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex-grow: 1;
}
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-soft);
}
.price-card__features i {
  color: var(--green-primary);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}
.price-card__btn {
  width: 100%;
  background: var(--green-primary);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  border: 2px solid var(--green-primary);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.price-card__btn:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.price-card--featured .price-card__btn { background: var(--green-dark); border-color: var(--green-dark); }
.price-card--featured .price-card__btn:hover { background: var(--green-primary); border-color: var(--green-primary); }

.pricing__disclaimer {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

@media (max-width: 991px) {
  .pricing { padding: 50px 16px; }
  .pricing h2 { font-size: 30px; }
  .pricing__grid { grid-template-columns: 1fr; gap: 18px; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
}

/* ---------- Comparison table ---------- */
.compare {
  padding: 70px 40px;
  background: linear-gradient(180deg, var(--white) 0%, #F8FBF4 100%);
}
.compare__inner { max-width: 1100px; margin: 0 auto; }
.compare__head { text-align: center; margin-bottom: 40px; }
.compare__head h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
}
.compare__head p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-soft);
  margin: 0;
}
.compare__table {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  width: 100%;
  border-collapse: collapse;
}
.compare__table thead th {
  background: #F8F8F8;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 20px;
  text-align: center;
  border-bottom: 2px solid #EEE;
}
.compare__table thead th:first-child {
  text-align: left;
  background: var(--white);
}
.compare__table thead th.is-us {
  background: var(--green-dark);
  color: var(--white);
  position: relative;
}
.compare__table thead th.is-us::after {
  content: "★ Best value";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--guarantee-gold);
}
.compare__table tbody td {
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid #F4F4F4;
  text-align: center;
}
.compare__table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
}
.compare__table tbody td.is-us {
  background: rgba(76,175,80,0.06);
  font-weight: 600;
  color: var(--green-dark);
}
.compare__table .yes { color: var(--green-primary); font-size: 18px; }
.compare__table .no { color: var(--red); font-size: 18px; }
.compare__table .partial { color: var(--gold); font-size: 18px; }

@media (max-width: 767px) {
  .compare { padding: 40px 12px; }
  .compare__head h2 { font-size: 26px; }
  .compare__table thead th, .compare__table tbody td { padding: 10px 8px; font-size: 12px; }
}

/* ---------- Urgency / scarcity strip ---------- */
.urgency {
  background: var(--urgency-bg);
  border-top: 2px solid var(--urgency-border);
  border-bottom: 2px solid var(--urgency-border);
  padding: 14px 20px;
  text-align: center;
}
.urgency__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
}
.urgency i { color: var(--urgency-border); animation: ringBell 3s infinite; transform-origin: top; }
@keyframes ringBell {
  0%, 92%, 100% { transform: rotate(0); }
  94% { transform: rotate(15deg); }
  96% { transform: rotate(-15deg); }
  98% { transform: rotate(10deg); }
}
.urgency strong { color: var(--green-dark); font-weight: 700; }
.urgency a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--guarantee-gold);
  text-underline-offset: 3px;
}
.urgency a:hover { color: var(--green-primary); }

/* ---------- Enhanced testimonial card additions ---------- */
.testimonial-card__badges {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.testimonial-card__badge {
  background: var(--green-mint-bg);
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.testimonial-card__badge i { font-size: 9px; }
.testimonial-card__badge--verified {
  background: #E8F4FE;
  color: #1A73E8;
}

/* ---------- "Why Choose" reinvented with stat numbers ---------- */
.trust--cro {
  background: var(--green-light-bg);
  padding: 70px 40px;
  text-align: center;
}
.trust--cro__inner { max-width: 1300px; margin: 0 auto; }
.trust--cro h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
}
.trust--cro__sub {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-soft);
  margin: 0 auto 40px;
  max-width: 580px;
}
.trust--cro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-stat {
  background: var(--white);
  padding: 26px 18px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.trust-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.trust-stat__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green-mint-bg);
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.trust-stat__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.trust-stat__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.trust-stat__desc {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .trust--cro { padding: 50px 16px; }
  .trust--cro h2 { font-size: 26px; }
  .trust--cro__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ---------- Final CTA section ---------- */
.final-cta {
  position: relative;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #024D2A 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.final-cta::before { width: 400px; height: 400px; top: -100px; left: -100px; }
.final-cta::after { width: 300px; height: 300px; bottom: -80px; right: -80px; }
.final-cta__inner { max-width: 800px; margin: 0 auto; position: relative; }
.final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,180,0,0.15);
  color: var(--guarantee-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 18px;
}
.final-cta h2 span { color: var(--guarantee-gold); }
.final-cta p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin: 0 auto 30px;
  max-width: 600px;
  line-height: 1.6;
}
.final-cta__buttons {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.final-cta__buttons .btn {
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
}
.final-cta__buttons .btn-primary {
  background: var(--guarantee-gold);
  color: var(--green-dark);
  border-color: var(--guarantee-gold);
  box-shadow: 0 12px 30px rgba(245,194,0,0.4);
}
.final-cta__buttons .btn-primary:hover { background: var(--white); border-color: var(--white); color: var(--green-dark); }
.final-cta__buttons .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.final-cta__buttons .btn-outline:hover { background: var(--white); color: var(--green-dark); }
.final-cta__guarantees {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.final-cta__guarantees span { display: inline-flex; align-items: center; gap: 6px; }
.final-cta__guarantees i { color: var(--guarantee-gold); }

@media (max-width: 767px) {
  .final-cta { padding: 50px 16px; }
  .final-cta h2 { font-size: 30px; }
  .final-cta p { font-size: 16px; }
}

/* ---------- Service card tweaks (pricing + popularity) ---------- */
.service-card { position: relative; }
.service-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--guarantee-gold);
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: 6px;
}
.service-card__price .from { font-weight: 400; color: var(--text-muted); }

/* ---------- FAQ tweaks (more clickable, better default) ---------- */
.faq--cro .faq__question {
  font-size: 19px;
  font-weight: 500;
  padding: 22px 26px;
}
.faq--cro .faq__answer-inner { font-size: 16px; line-height: 1.7; padding-bottom: 24px; }

/* ---------- Hero booking image fallback (clean visual) ---------- */
.hero--cro__image {
  position: relative;
  display: none; /* hidden because we use form instead */
}

/* ---------- Mini badges row beneath quote card ---------- */
.quote-card__trustline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-wrap: wrap;
}
.quote-card__trustline i { color: var(--green-primary); margin-right: 4px; }

/* ============================================================
   MOBILE CRO ENHANCEMENTS
   Mobile-first patterns: sticky bottom bar, compact hero,
   stacked comparison cards, fingertip-sized targets
   ============================================================ */

/* ---------- Mobile sticky bottom CTA bar (visible <992px) ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--white);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
  border-top: 2px solid var(--green-primary);
  gap: 8px;
  align-items: center;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  min-height: 48px;
}
.mobile-cta-bar .mcta-call {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.mobile-cta-bar .mcta-call:active { background: var(--green-dark); color: var(--white); }
.mobile-cta-bar .mcta-quote {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(76,175,80,0.3);
  flex: 1.3;
}
.mobile-cta-bar .mcta-quote:active { transform: scale(0.98); }
.mobile-cta-bar i { font-size: 16px; }

@media (max-width: 991px) {
  .mobile-cta-bar { display: flex; }
  /* Push floating buttons up so they don't sit behind the bar */
  .float-wa { bottom: 96px !important; }
  .back-to-top { bottom: 96px !important; }
  /* Add bottom padding so footer content isn't covered when bar is up */
  body.has-mobile-cta { padding-bottom: 80px; }
}

/* ---------- Mobile hero compaction ---------- */
@media (max-width: 991px) {
  /* Tighter section padding everywhere */
  .hero--cro { padding: 22px 16px 30px; }

  /* Smaller, tighter H1 */
  .hero--cro h1 {
    font-size: 30px;
    line-height: 1.12;
    font-weight: 600;
    margin: 0 0 14px;
    letter-spacing: -0.4px;
  }
  .hero--cro h1 .accent::after {
    height: 7px;
    bottom: 2px;
    opacity: 0.4;
  }

  /* Tighter sub */
  .hero--cro__sub {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  /* Trust row: 2-column max, smaller */
  .hero--cro__trustrow {
    gap: 8px 14px;
    margin-bottom: 18px;
  }
  .hero--cro__trust-item {
    font-size: 12.5px;
    font-weight: 500;
  }
  .hero--cro__trust-item i { font-size: 13px; }
  .hero--cro__trust-item .stars { font-size: 12px; }

  /* Hide secondary "Call" button on mobile — sticky bar handles that */
  .hero--cro__buttons .btn-outline,
  .hero--cro__or { display: none; }
  .hero--cro__buttons .btn-primary {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    justify-content: center;
  }

  /* Quote card: full width, lighter shadow, better spacing */
  .quote-card {
    border-radius: 16px;
    padding: 20px 16px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    scroll-margin-top: 100px;
  }
  .quote-card__title { font-size: 20px; margin-bottom: 4px; }
  .quote-card__sub { font-size: 13px; margin-bottom: 14px; }

  /* Form inputs: 16px+ to prevent iOS zoom on focus */
  .quote-card__input,
  .quote-card__select {
    font-size: 16px;
    padding: 14px 14px;
    min-height: 48px;
  }
  .quote-card__btn {
    font-size: 16px;
    padding: 16px;
    min-height: 50px;
  }

  /* Service option grid: bigger tap targets, single column for clarity */
  .quote-card__options {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 14px;
  }
  .quote-card__opt {
    padding: 14px 10px;
    font-size: 13px;
    min-height: 56px;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .quote-card__opt i { font-size: 18px; width: auto; }

  .quote-card__label { font-size: 13px; margin-bottom: 6px; }
  .quote-card__corner {
    font-size: 10px;
    padding: 3px 10px;
    right: 14px;
    top: -12px;
  }
  .quote-card__trustline {
    gap: 10px;
    font-size: 10px;
    margin-top: 12px;
  }
}

/* ---------- Compact utility bar on mobile (just trust + CTA) ---------- */
@media (max-width: 767px) {
  .utility-bar {
    font-size: 12px;
    padding: 8px 12px;
    gap: 10px;
  }
  .utility-bar__left {
    flex: 1;
    overflow: hidden;
    min-width: 0;
  }
  /* Show only the first trust item on mobile (rating) */
  .utility-bar__left .utility-bar__item {
    display: none;
  }
  .utility-bar__left .utility-bar__item:first-child {
    display: inline-flex;
    font-size: 11.5px;
    font-weight: 500;
  }
  .utility-bar__left .utility-bar__item:first-child i {
    color: var(--guarantee-gold);
    font-size: 12px;
  }
  .utility-bar__right { gap: 8px; }
  .utility-bar__phone {
    font-size: 13px;
    font-weight: 600;
  }
  .utility-bar__phone span { display: none; }
  .utility-bar__cta {
    padding: 6px 12px;
    font-size: 11px;
  }
}
@media (max-width: 420px) {
  /* Even tighter on small phones */
  .utility-bar { font-size: 11px; padding: 7px 10px; }
  .utility-bar__phone i { font-size: 12px; }
  .utility-bar__cta { padding: 5px 10px; font-size: 10.5px; letter-spacing: 0.3px; }
  /* Drop the rating chip if super tight */
  .utility-bar__left .utility-bar__item:first-child { display: none; }
}

/* ---------- Comparison table → stacked card layout on mobile ---------- */
.compare__cards { display: none; }
@media (max-width: 767px) {
  .compare__table { display: none; }
  .compare__cards {
    display: grid;
    gap: 14px;
    margin-top: 12px;
  }
}
.compare-card {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 2px solid transparent;
}
.compare-card--us {
  border-color: var(--green-primary);
  background: linear-gradient(180deg, rgba(76,175,80,0.05), var(--white));
  box-shadow: 0 8px 24px rgba(76,175,80,0.15);
  position: relative;
}
.compare-card--us::before {
  content: "★ Best value";
  position: absolute;
  top: -10px;
  left: 14px;
  background: var(--green-dark);
  color: var(--guarantee-gold);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.compare-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.compare-card--us .compare-card__name { color: var(--green-dark); }
.compare-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-family: var(--font-display);
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.4;
}
.compare-card__list li i {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}
.compare-card__list i.yes { color: var(--green-primary); }
.compare-card__list i.no { color: var(--red); }
.compare-card__list i.partial { color: var(--gold); }
.compare-card__list .label-spent {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: auto;
  white-space: nowrap;
}

/* ---------- Hero buttons + section padding cleanup on mobile ---------- */
@media (max-width: 767px) {
  /* Tighter section padding everywhere */
  .services { padding: 40px 14px; }
  .services__heading h2 { font-size: 24px; }
  .services__heading p { font-size: 15px; }
  .services__grid { gap: 14px; }

  .service-card { padding: 18px 14px 20px; }
  .service-card__media { width: 110px; height: 110px; margin-bottom: 12px; }
  .service-card h2 { font-size: 20px; }
  .service-card p { font-size: 14px; margin: 6px 0 0; line-height: 1.4; }
  .service-card__price { font-size: 13px; }
  .service-card__tag { font-size: 10px; padding: 3px 8px; top: 10px; right: 10px; }
  .btn.btn-small { padding: 10px 16px; font-size: 13px; min-height: 40px; }

  .why-choose, .trust--cro { padding: 40px 14px; }
  .trust--cro h2 { font-size: 22px; }
  .trust--cro__sub { font-size: 14px; }
  .trust--cro__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-stat { padding: 18px 12px; }
  .trust-stat__num { font-size: 26px; }
  .trust-stat__title { font-size: 14px; }
  .trust-stat__desc { font-size: 12px; }
  .trust-stat__icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 10px; }

  .pricing { padding: 40px 14px; }
  .pricing h2 { font-size: 24px; }
  .pricing__sub { font-size: 14px; margin-bottom: 28px; }
  .pricing__grid { gap: 14px; }
  .price-card { padding: 22px 18px; }
  .price-card__name { font-size: 19px; }
  .price-card__price .amount { font-size: 36px; }
  .price-card__features li { font-size: 13.5px; }

  .compare { padding: 40px 14px; }
  .compare__head h2 { font-size: 22px; }
  .compare__head p { font-size: 14px; }

  .guarantee { padding: 40px 14px; }
  .guarantee__inner { padding: 24px 18px; gap: 18px; }
  .guarantee__badge { width: 140px; height: 140px; border-width: 5px; }
  .guarantee__badge .pct { font-size: 40px; }
  .guarantee__badge .label1 { font-size: 11px; letter-spacing: 1px; }
  .guarantee__badge .label2 { font-size: 10px; letter-spacing: 1px; }
  .guarantee__copy h2 { font-size: 22px; line-height: 1.2; }
  .guarantee__copy p { font-size: 14px; line-height: 1.6; }
  .guarantee__bullets li { font-size: 13.5px; padding: 5px 0; }
  .guarantee__cta { padding: 12px 22px; font-size: 13px; }

  .about { padding: 40px 14px; }
  .about__copy h2 { font-size: 22px; }
  .about__copy p { font-size: 15px; line-height: 1.6; }
  .about__copy h5 { font-size: 13px; }

  .how { padding: 40px 14px; }
  .how h2 { font-size: 26px; }
  .how__subtitle { font-size: 16px; margin-bottom: 28px; }
  .step-card h4 { font-size: 19px; }
  .step-card p { font-size: 14px; line-height: 1.55; }
  .step-card__num { width: 50px; height: 50px; font-size: 28px; margin-bottom: 14px; }

  .testimonials { padding: 30px 12px 50px; }
  .testimonials h2 { font-size: 22px; }
  .testimonials__slider { padding: 0 28px; }
  .testimonial-card { padding: 20px 16px; }
  .testimonial-card__text { font-size: 15px; }

  .areas { padding: 40px 14px; }
  .areas h3 { font-size: 24px; }
  .areas h3 span { font-size: 14px; }
  .areas__pills { gap: 8px; margin-top: 22px; }
  .areas__pills li a {
    padding: 10px 18px;
    font-size: 14px;
    min-height: 40px;
  }

  .faq { padding: 36px 14px; }
  .faq h2 { font-size: 24px; margin-bottom: 22px; }
  .faq--cro .faq__question {
    font-size: 15px;
    padding: 16px 18px;
    line-height: 1.35;
    min-height: 56px;
  }
  .faq--cro .faq__answer-inner {
    font-size: 14px;
    padding: 0 18px 18px;
    line-height: 1.6;
  }
  .faq__question::after { width: 26px; height: 26px; font-size: 16px; }

  .urgency { padding: 10px 14px; }
  .urgency__inner { font-size: 13px; gap: 8px; }

  .trust-strip { padding: 16px 14px; }
  .trust-strip__inner { gap: 10px 14px; }
  .trust-strip__item {
    font-size: 12.5px;
    flex: 0 0 calc(50% - 8px);
  }
  .trust-strip__item i { font-size: 18px; width: 22px; }

  .final-cta { padding: 50px 14px; }
  .final-cta h2 { font-size: 28px; }
  .final-cta p { font-size: 15px; }
  .final-cta__buttons { flex-direction: column; width: 100%; }
  .final-cta__buttons .btn { width: 100%; padding: 15px 20px; min-height: 50px; }
  .final-cta__guarantees { gap: 10px; font-size: 12.5px; }

  .site-footer { padding: 40px 16px 16px; }
  .footer__cols { gap: 28px; }
  .footer-col h3 { font-size: 20px; margin-bottom: 16px; }
  .footer-contact-list li, .footer-links li {
    font-size: 14.5px;
    min-height: 32px;
  }
}

/* ---------- iOS / Android tap target minimums (44px) ---------- */
.nav-cta, .btn, .quote-card__btn, .quote-card__opt,
.utility-bar__cta, .utility-bar__phone,
.footer-social a, .areas__pills li a,
.faq__question {
  min-height: 44px;
}

/* ---------- Prevent layout shift from FontAwesome loading ---------- */
.fa-solid, .fa-brands, .fa-regular { line-height: 1; }

/* ---------- Safer image rendering on mobile ---------- */
img { max-width: 100%; height: auto; }
@media (max-width: 991px) {
  .hero--cro__image, .about__media img, .trusted__media img, .service-card img {
    will-change: auto;
  }
}
