/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.618;
  color: #050505;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
}

a, p, li, h1, h2, h3, h4, h5, h6, td, dd {
  overflow-wrap: anywhere;
}


/* ============================================
   UTILITY
   ============================================ */

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #02AFB5;
  margin-bottom: 13px;
}

.section-headline {
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: #050505;
  margin-bottom: 21px;
  max-width: 720px;
}

/* ============================================
   STICKY HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 80px;
  width: auto;
}

.header-nav {
  display: none;
}

.header-nav ul {
  display: flex;
  gap: 34px;
}

.header-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #050505;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #02AFB5;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header-cta {
  display: none;
}

.header-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #02AFB5;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
}

.header-cta a:hover {
  background: #029a9f;
  transform: translateY(-1px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #050505;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span {
  background: #050505;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 998;
  padding: 34px;
  overflow-y: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #050505;
  padding: 14px 0;
  text-align: center;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #02AFB5;
}

.live-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #7DCDEB;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================
   MOBILE STICKY BOTTOM BAR
   ============================================ */

.mobile-bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #FFFFFF;
  padding: 13px 16px;
  padding-bottom: calc(13px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  gap: 8px;
}

.mobile-bottom-bar .btn-call {
  flex: 0 0 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #02AFB5;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 12px;
  border-radius: 10px;
  text-align: center;
}

.mobile-bottom-bar .btn-callback {
  flex: 0 0 calc(45% - 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #050505;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 12px;
  border-radius: 10px;
  border: 2px solid #050505;
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 163px 0 0;
  background: linear-gradient(165deg, #FFFFFF 0%, #F0FAFA 40%, #E6F7F7 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2,175,181,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  padding-bottom: 55px;
}

.hero-keyword {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #02AFB5;
  margin-bottom: 21px;
  background: rgba(2,175,181,0.08);
  padding: 6px 14px;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 900;
  color: #050505;
  line-height: 1.05;
  margin-bottom: 21px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: #4A4A4A;
  max-width: 560px;
  margin-bottom: 34px;
  line-height: 1.7;
}

/* Value props removed - info consolidated into hero subheadline + proof strip */

.hero-cta-wrap {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 21px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #02AFB5;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
  box-shadow: 0 4px 14px rgba(2,175,181,0.25);
}

.btn-primary:hover {
  background: #029a9f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,175,181,0.35);
}

.btn-primary--full {
  width: 100%;
}

.hero-cta-note {
  font-size: 13px;
  color: #8F8F8F;
}

.hero-cta-secondary {
  display: block;
  margin-top: 0;
  font-size: 15px;
  font-weight: 600;
  color: #02AFB5;
  transition: color 0.2s;
}

.hero-cta-secondary:hover {
  color: #005354;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.cta-callback-link {
  font-size: 15px;
  font-weight: 600;
  color: #02AFB5;
  transition: color 0.2s;
}

.cta-callback-link:hover {
  color: #005354;
}

/* Dark section variant */

.mechanism .cta-callback-link,
.final-cta .cta-callback-link {
  color: rgba(255,255,255,0.7);
}

.mechanism .cta-callback-link:hover,
.final-cta .cta-callback-link:hover {
  color: #FFFFFF;
}

/* Hero proof bar - visually separated */

.hero-proof-bar {
  background: #024564;
  padding: 28px 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.hero-proof-stat {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-proof-stat .stars {
  color: #EDAA03;
  font-size: 16px;
}

.hero-proof-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-proof-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero-cta-wrap {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

  .hero-proof {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 21px;
    }

  .hero-proof-divider {
      display: none;
    }

  .hero-proof-item {
      align-items: center;
    }

  .btn-primary--full {
      width: 100%;
    }

  .brand-strip-logos {
      gap: 21px;
    }

  .brand-strip-logos img {
      height: 26px;
    }
}

/* Trust bar removed - consolidated into hero proof strip */

/* ============================================
   PROBLEM AGITATION
   ============================================ */

.problem {
  padding: 120px 0;
  background: #FFFFFF;
  border-top: 1px solid #EEEEEE;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 21px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.problem-card {
  background: #F8F9FB;
  border-left: 4px solid #02AFB5;
  border-radius: 0 14px 14px 0;
  padding: 28px 28px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 13px;
}

.problem-card p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.7;
}

.problem-transition {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.7;
  max-width: 700px;
  font-style: italic;
}

/* ============================================
   MECHANISM (dark blue section)
   ============================================ */

.mechanism {
  padding: 120px 0;
  background: #024564;
  color: #FFFFFF;
}

.mechanism .section-label {
  color: #EDAA03;
}

.mechanism .section-headline {
  color: #FFFFFF;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 34px;
}

.mechanism-block {
  display: flex;
  gap: 21px;
  align-items: flex-start;
}

.mechanism-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #EDAA03;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #024564;
}

.mechanism-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 13px;
}

.mechanism-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.mechanism-map {
  margin-top: 34px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
}

.mechanism-map img {
  width: 100%;
  height: auto;
  display: block;
}

.mechanism-map-caption {
  text-align: center;
  padding: 28px 21px;
  background: #FFFFFF;
}

.mechanism-map-caption p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
  margin: 0;
}

.mechanism-map-caption p strong {
  color: #050505;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* Brand strip */

.brand-strip {
  background: #F8F9FB;
  padding: 34px 0;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}

.brand-strip-label {
  font-size: 12px;
  font-weight: 600;
  color: #8F8F8F;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 21px;
}

.brand-strip-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.brand-strip-logos img {
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}

.brand-strip-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 120px 0;
  background: #F8F9FB;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 21px;
  margin-top: 34px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-top: 4px solid #02AFB5;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: #02AFB5;
  transition: color 0.2s;
}

.service-link:hover {
  color: #005354;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.social-proof {
  padding: 120px 0;
  background: #FFFFFF;
  border-top: 1px solid #EEEEEE;
}

.google-rating {
  margin-bottom: 34px;
}

.google-rating .stars-big {
  font-size: 36px;
  color: #EDAA03;
  letter-spacing: 2px;
}

.google-rating .rating-text {
  font-size: 14px;
  color: #8F8F8F;
  font-weight: 500;
  margin-top: 8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 34px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: #EDAA03;
  font-size: 16px;
  margin-bottom: 13px;
  letter-spacing: 1px;
}

.testimonial-card blockquote {
  font-size: 15.5px;
  color: #4A4A4A;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .reviewer {
  font-size: 14px;
  font-weight: 700;
  color: #050505;
}

.testimonial-card .review-source {
  font-size: 12px;
  color: #8F8F8F;
  font-weight: 500;
  margin-top: 2px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
  padding: 120px 0;
  background: #F8F9FB;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 34px;
  margin-bottom: 34px;
  position: relative;
}

.step {
  display: flex;
  gap: 21px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #02AFB5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  position: relative;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.7;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #02AFB5;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover {
  background: #029a9f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2,175,181,0.3);
}

/* ============================================
   GUARANTEE
   ============================================ */

.guarantee {
  padding: 120px 0;
  background: #EBF6FF;
}

.guarantee-intro {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 32px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 21px;
}

.guarantee-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.guarantee-card .check-icon {
  width: 40px;
  height: 40px;
  background: #02AFB5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.guarantee-card .check-icon svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

.guarantee-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 8px;
}

.guarantee-card p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: 120px 0;
  background: #FFFFFF;
}

.faq-list {
  margin-top: 32px;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid #EEEEEE;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 16.5px;
  font-weight: 600;
  color: #050505;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
  color: #02AFB5;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.65;
}

/* ============================================
   AREAS SERVED
   ============================================ */

.areas {
  padding: 55px 0;
  background: #F8F9FB;
}

.areas-inner {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.areas-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: #02AFB5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.areas-icon svg {
  width: 36px;
  height: 36px;
  fill: #FFFFFF;
}

.areas-text h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  color: #050505;
  line-height: 1.15;
  margin-bottom: 8px;
}

.areas-text p {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.618;
  max-width: 600px;
}

.areas-text p strong {
  color: #02AFB5;
  font-weight: 700;
}

/* ============================================
   FINAL CTA + CALLBACK FORM
   ============================================ */

.final-cta {
  padding: 120px 0;
  background: #024564;
  color: #FFFFFF;
}

.final-cta .section-headline {
  color: #FFFFFF;
  max-width: 600px;
}

.final-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #EDAA03;
  color: #050505;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-gold:hover {
  background: #d99b03;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237,170,3,0.3);
}

.divider-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  max-width: 500px;
}

.divider-or span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.divider-or::before,
.divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.callback-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.callback-form {
  max-width: 500px;
}

.callback-reviews {
  display: none;
  flex-direction: column;
  gap: 21px;
}

.callback-review {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 21px;
}

.callback-review-stars {
  color: #EDAA03;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.callback-review p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 8px;
}

.callback-review strong {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.callback-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.callback-form .form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-fields input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-fields input::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-fields input:focus,
.form-fields textarea:focus {
  outline: none;
  border-color: #02AFB5;
}

.form-fields textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  resize: vertical;
  transition: border-color 0.2s;
}

.form-fields textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.btn-submit {
  width: 100%;
  background: #02AFB5;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
  background: #029a9f;
  transform: translateY(-1px);
}

/* Wufoo honeypot — visually hidden but still in the DOM so bots find and fill it. */
.wufoo-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Inline field validation errors — shared across dark + light variants. */
.form-error {
  display: block;
  margin-top: -4px;
  font-size: 13px;
  line-height: 1.4;
}

.form-fields .form-error {
  color: #FFB8B8;
}

.contact-form .form-fields-light .form-error {
  color: #C82333;
}

.form-fields input.has-error,
.form-fields textarea.has-error {
  border-color: #E5484D;
}

.contact-form .form-fields-light input.has-error,
.contact-form .form-fields-light textarea.has-error {
  border-color: #E5484D;
  box-shadow: 0 0 0 3px rgba(229,72,77,0.12);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  padding: 55px 0 0;
  background: #050505;
  color: #FFFFFF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-bottom: 34px;
}

.footer-logo img {
  height: 64px;
  width: auto;
  margin-bottom: 21px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 14px;
  color: #8F8F8F;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #02AFB5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 21px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #8F8F8F;
}

.footer-bottom-links {
  display: flex;
  gap: 21px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #8F8F8F;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #02AFB5;
}

/* Add padding at bottom for mobile sticky bar */

.site-footer {
  padding-bottom: 80px;
}

/* ============================================
   DESKTOP STYLES (768px+)
   ============================================ */

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

  .header-cta {
      display: block;
    }

  .mobile-bottom-bar {
      display: none;
    }

  .site-footer {
      padding-bottom: 0;
    }

  .hero {
      padding: 193px 0 0;
    }

  .btn-primary--full {
      width: auto;
    }

  .problem-cards {
      grid-template-columns: repeat(3, 1fr);
    }

  .mechanism-grid {
      grid-template-columns: repeat(3, 1fr);
    }

  .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

  .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }

  .steps {
      grid-template-columns: repeat(3, 1fr);
      gap: 55px;
    }

  .step {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

  .guarantee-grid {
      grid-template-columns: repeat(2, 1fr);
    }

  .footer-grid {
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

  .callback-layout {
      grid-template-columns: 1fr 1fr;
      gap: 55px;
    }

  .callback-reviews {
      display: flex;
    }

  .steps {
      position: relative;
    }

  .steps::before {
      content: '';
      position: absolute;
      top: 26px;
      left: calc(16.66% + 26px);
      right: calc(16.66% + 26px);
      height: 2px;
      border-top: 2px dashed #02AFB5;
      opacity: 0.4;
    }

  .step-num {
      z-index: 1;
    }

  .contact-layout {
      grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   LARGE DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  /* MERGE-CONFLICT RESOLUTION:
     index.html renders .services-grid as a 4-column grid at 1024px+,
     whereas the four service pages render it as a 3-column grid.
     Both rules are preserved. The 4-column variant is scoped with
     `body:has(#brisbane-map)` since #brisbane-map is unique to index.html. */
  body:has(#brisbane-map) .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }

  .testimonials-grid {
      grid-template-columns: repeat(4, 1fr);
    }

  .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }

}

/* ============================================
   DASHED LINE CONNECTOR (desktop steps)
   ============================================ */

.disclaimer {
  background: #F8F9FB;
  padding: 21px 0;
  border-top: 1px solid #EEEEEE;
}

.disclaimer p {
  font-size: 12px;
  color: #8F8F8F;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .site-header,
    .mobile-bottom-bar,
    .hamburger,
    .mobile-menu {
      display: none !important;
    }

  .faq-answer {
      max-height: none !important;
      overflow: visible !important;
    }

  .faq-answer-inner {
      padding-bottom: 16px !important;
    }

  body {
      font-size: 12pt;
      color: #000;
    }

  .mechanism,
    .final-cta {
      background: #f5f5f5 !important;
      color: #000 !important;
    }

  .mechanism .section-headline,
    .mechanism h3,
    .mechanism p,
    .final-cta .section-headline,
    .final-cta-sub {
      color: #000 !important;
    }

  .final-cta {
      background: #f5f5f5 !important;
      color: #000 !important;
    }

  .final-cta .section-headline,
    .final-cta-sub {
      color: #000 !important;
    }
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ============================================
   EMERGENCY SERVICES (uses service-card style)
   ============================================ */

/* ============================================
   WHAT WE DO SECTION
   ============================================ */

.what-we-do {
  padding: 120px 0;
  background: #FFFFFF;
  border-top: 1px solid #EEEEEE;
}

.what-we-do .body-text {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 21px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-choose-us {
  padding: 120px 0;
  background: #F8F9FB;
}

/* about.html (`.why-choose-us`) needs an extra top margin above the card grid;
   the responsive column counts come from the shared `.guarantee-grid` rules above. */
body:has(.why-choose-us) .guarantee-grid {
  margin-top: 34px;
}

/* about.html only: the four cards under "Why choose us" stay in a single row
   on desktop so the section reads as a compact feature strip. */
@media (min-width: 1024px) {
  body:has(.why-choose-us) .guarantee-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: 120px 0;
  background: #FFFFFF;
  border-top: 1px solid #EEEEEE;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 55px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: clamp(26px, 4.5vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: #050505;
  margin-bottom: 8px;
}

.contact-form-wrap .form-intro {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-form .form-fields-light {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form .form-fields-light input,
.contact-form .form-fields-light textarea {
  width: 100%;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid #D4D4D4;
  border-radius: 8px;
  color: #050505;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .form-fields-light input::placeholder,
.contact-form .form-fields-light textarea::placeholder {
  color: #8F8F8F;
}

.contact-form .form-fields-light input:focus,
.contact-form .form-fields-light textarea:focus {
  outline: none;
  border-color: #02AFB5;
  box-shadow: 0 0 0 3px rgba(2,175,181,0.1);
}

.contact-form .form-fields-light textarea {
  resize: vertical;
}

.contact-form .form-row-light {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.contact-form .btn-submit-light {
  width: 100%;
  background: #02AFB5;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
}

.contact-form .btn-submit-light:hover {
  background: #029a9f;
  transform: translateY(-1px);
}

/* Contact details (right column) */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.contact-info-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 21px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(2,175,181,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: #02AFB5;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-text .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8F8F8F;
}

.contact-info-text .value {
  font-size: 16px;
  font-weight: 600;
  color: #050505;
}

.contact-info-text .value a {
  color: #02AFB5;
  transition: color 0.2s;
}

.contact-info-text .value a:hover {
  color: #005354;
}

.contact-info-text .value-sub {
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 400;
}

/* Testimonials in contact details */

.contact-testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.contact-testimonial {
  background: #F8F9FB;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  padding: 21px;
}

.contact-testimonial-stars {
  color: #EDAA03;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-testimonial p {
  font-size: 14px;
  color: #4A4A4A;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 8px;
}

.contact-testimonial strong {
  font-size: 13px;
  color: #050505;
  font-weight: 700;
}

/* --------------------------------------------
   MERGE-CONFLICT RESOLUTION:
   privacy-policy.html and terms-of-service.html do NOT render a .live-banner,
   so their header and mobile-menu sit flush at top:0. Every other page has a
   .live-banner above the header, so the header and menu must be offset by 33px.
   Both original declarations are preserved — the `body:not(:has(...))` scope
   selects the no-banner pages without modifying any HTML.
   -------------------------------------------- */
body:not(:has(.live-banner)) .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

body:not(:has(.live-banner)) .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 998;
  padding: 34px;
  overflow-y: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  max-width: 800px;
  padding: 55px 0 120px;
}

.legal-content h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 900;
  color: #050505;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.legal-content .legal-date {
  font-size: 14px;
  color: #8F8F8F;
  margin-bottom: 55px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #050505;
  margin-top: 34px;
  margin-bottom: 13px;
}

.legal-content p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 13px;
}

.legal-content ul {
  margin-bottom: 13px;
  padding-left: 21px;
}

.legal-content ul li {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: disc;
}

/* --------------------------------------------
   MERGE-CONFLICT RESOLUTION:
   On privacy-policy.html and terms-of-service.html (the "no live-banner"
   pages) the footer logo is rendered as a white pill badge. On every other
   page the same logo is rendered with `filter: brightness(0) invert(1)`
   (white silhouette). Both original declarations are preserved — the
   `body:not(:has(.live-banner))` scope selects the no-banner pages without
   modifying any HTML.
   -------------------------------------------- */
body:not(:has(.live-banner)) .footer-logo img {
  height: 64px;
  width: auto;
  margin-bottom: 21px;
  filter: none;
  background: #FFFFFF;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

