@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:      #1B75BC;
  --brand-dark: #145f9a;
  --gold:       #C8A96E;
  --gold-light: #f5f0e8;
  --teal:       #0DB5C8;
  --text:       #1C2B3A;
  --muted:      #5e6e80;
  --border:     #e4e8ed;
  --white:      #ffffff;
  --warm:       #FAFAF8;
  --warm-alt:   #F5F3EF;
  --shadow-sm:  0 1px 4px rgba(28,43,58,.07);
  --shadow-md:  0 4px 20px rgba(28,43,58,.10);
  --shadow-lg:  0 12px 40px rgba(28,43,58,.13);
  --radius:     4px;
  --radius-sm:  3px;
  --transition: .22s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 82px; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }

.container {
  width: min(1140px, 100% - 48px);
  margin-inline: auto;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.15;
  font-weight: 400;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-family: 'Inter', sans-serif; font-weight: 600; }
h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}

.section-heading { margin-bottom: 1rem; }
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
}

.section { padding: 100px 0; }
.section--alt { background: var(--warm-alt); }
.section--warm { background: var(--warm); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.9rem;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,117,188,.28);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn--outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--brand);
  border: 1.5px solid var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__links a {
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }

.nav__cta { margin-left: .5rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 1.4rem;
    z-index: 99;
  }
  .nav.open .nav__cta {
    display: block;
    position: absolute;
    top: calc(72px + 220px);
    left: 1.5rem;
    z-index: 99;
  }
}

/* ===== HERO ===== */
.hero {
  background: var(--warm);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--warm-alt);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
}
.hero__kicker-line {
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero__kicker-text {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__title {
  margin-bottom: 1.4rem;
  color: var(--text);
}
.hero__title em {
  font-style: italic;
  color: var(--brand);
}

.hero__text {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.2rem;
  max-width: 420px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
}
.hero__stat-label {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .3rem;
  letter-spacing: .02em;
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__service-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.hero__service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.hero__service-item:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.hero__service-icon {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__service-icon svg { width: 20px; height: 20px; fill: var(--brand); }

.hero__badge-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: .7rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  align-self: flex-start;
}
.hero__badge-tag span { color: var(--brand); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--text);
  padding: 1rem 0;
  overflow: hidden;
}

.trust-strip__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-strip__dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTION HEADER LAYOUT ===== */
.section-header {
  margin-bottom: 4rem;
}
.section-header--center {
  text-align: center;
}
.section-header--center .section-sub {
  margin-inline: auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  background: var(--warm);
  z-index: 1;
}

.service-card__num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: .5rem;
  transition: color var(--transition);
}
.service-card:hover .service-card__num { color: var(--gold-light); }

.service-card__title {
  margin-bottom: .6rem;
  font-size: 1.05rem;
}

.service-card__text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.service-card__link:hover { border-bottom-color: var(--brand); }

/* ===== WHY CHOOSE US ===== */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.why-sticky {
  position: sticky;
  top: 100px;
}

.why-items { display: flex; flex-direction: column; gap: 0; }

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.why-item:first-child { border-top: 1px solid var(--border); }

.why-item__num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  padding-top: .1rem;
}

.why-item__title {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .35rem;
}
.why-item__text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--text);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'Clean.';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: 14rem;
  color: rgba(255,255,255,.03);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: .6rem;
}
.cta-band p {
  color: rgba(255,255,255,.60);
  font-size: .95rem;
}

.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.testimonial-card__quote {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: .8;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-card__avatar {
  width: 38px; height: 38px;
  background: var(--warm-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand);
  font-size: .8rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.testimonial-card__name { font-weight: 600; font-size: .88rem; }
.testimonial-card__location { font-size: .76rem; color: var(--muted); margin-top: .1rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  padding: 1.2rem 0;
  font-size: .95rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: var(--text);
  transition: color var(--transition);
}
.faq-q:hover,
.faq-q.open { color: var(--brand); }

.faq-q__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-q.open .faq-q__icon { transform: rotate(45deg); color: var(--brand); }

.faq-a {
  display: none;
  padding: 0 0 1.2rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.72;
}
.faq-a.open { display: block; }

/* ===== PRICING TABLE ===== */
.pricing-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.pricing-tab {
  padding: .6rem 1.4rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--muted);
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.pricing-tab:last-child { border-right: none; }
.pricing-tab:hover { color: var(--text); }
.pricing-tab.active {
  background: var(--text);
  color: var(--white);
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
}
.pricing-table th {
  background: var(--warm-alt);
  color: var(--text);
  padding: .9rem 1.4rem;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.pricing-table td {
  padding: .85rem 1.4rem;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--warm); }
.pricing-table td:last-child {
  font-weight: 700;
  color: var(--brand);
  text-align: right;
}
.pricing-table .sub-label {
  font-size: .76rem;
  color: var(--muted);
  display: block;
  margin-top: .1rem;
  font-weight: 400;
}

.pricing-group-head td {
  background: var(--warm);
  font-weight: 600;
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricing-disclaimer {
  margin-top: 1.2rem;
  padding: 1rem 1.4rem;
  background: var(--warm);
  border-left: 2px solid var(--gold);
  font-size: .85rem;
  color: var(--muted);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 40px; height: 40px;
  background: var(--warm-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 18px; height: 18px; fill: var(--brand); }

.contact-info__label { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.contact-info__value { font-weight: 500; margin-top: .25rem; font-size: .92rem; }
.contact-info__value a:hover { color: var(--brand); }

.form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group { margin-bottom: 1.2rem; }
.form__label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .45rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(27,117,188,.08);
}
.form__textarea { resize: vertical; min-height: 110px; }
.form__submit { width: 100%; padding: .95rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--warm-alt);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: .6rem; }
.page-hero p { color: var(--muted); font-size: 1rem; max-width: 560px; }
.page-hero__breadcrumb {
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.page-hero__breadcrumb a { color: var(--brand); font-weight: 500; }

/* ===== ABOUT ===== */
.about-hero {
  background: var(--warm-alt);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.value-card {
  padding: 2rem 1.8rem;
  background: var(--white);
  transition: var(--transition);
}
.value-card:hover { background: var(--warm); }

.value-card__icon {
  width: 44px; height: 44px;
  background: var(--warm-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.value-card__icon svg { width: 22px; height: 22px; fill: var(--brand); }
.value-card__title { margin-bottom: .4rem; font-size: .95rem; }
.value-card__text { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ===== SCOPE SECTION ===== */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.scope-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.scope-card__area {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand);
  margin-bottom: 1rem;
  display: block;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.scope-card__list { display: flex; flex-direction: column; gap: .45rem; }
.scope-card__item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .86rem;
  color: var(--muted);
}
.scope-card__item::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .5rem;
}

/* ===== NOTICE BLOCK ===== */
.notice {
  background: var(--warm);
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}
.notice strong { color: var(--text); }

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo { margin-bottom: 1.2rem; }
.footer__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer__tagline { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 240px; }

.footer__socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.5rem;
}
.footer__social {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer__social:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.footer__social svg { width: 14px; height: 14px; fill: rgba(255,255,255,.55); transition: fill var(--transition); }
.footer__social:hover svg { fill: var(--white); }

.footer__heading {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.2rem;
}
.footer__links { display: flex; flex-direction: column; gap: .65rem; }
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer__bar p { font-size: .76rem; color: rgba(255,255,255,.3); }
.footer__bar a { color: rgba(255,255,255,.5); }
.footer__bar a:hover { color: var(--white); }

/* ===== FAB ===== */
.gwj-fab-wrap {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
}

.gwj-fab {
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: var(--transition);
  cursor: pointer;
}
.gwj-fab:hover { transform: scale(1.06); }
.gwj-fab svg { width: 26px; height: 26px; fill: var(--white); }

.gwj-fab-bubble {
  position: absolute;
  right: 60px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  white-space: nowrap;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-md);
  display: none;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  transition: var(--transition);
}
.gwj-fab-bubble:hover { color: var(--brand); }
.gwj-fab-bubble::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--white);
}

.gwj-fab-bubble:nth-child(1) { bottom: 176px; }
.gwj-fab-bubble:nth-child(2) { bottom: 118px; }
.gwj-fab-bubble:nth-child(3) { bottom: 60px; }

.gwj-fab-wrap.open .gwj-fab-bubble { display: flex; }

/* ===== FORM SUCCESS ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success svg { width: 48px; height: 48px; fill: #22c55e; margin: 0 auto 1rem; }
.form-success h3 { margin-bottom: .5rem; }
.form-success p { color: var(--muted); font-size: .9rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .why-layout { grid-template-columns: 1fr; }
  .why-sticky { position: static; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-hero__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 48px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }
  .pricing-tabs { width: 100%; flex-wrap: wrap; }
  .pricing-tab { flex: 1; text-align: center; }
}

/* Turnstile mobile */
.cf-turnstile { transform-origin: left center; }
@media (max-width: 520px) {
  .cf-turnstile { transform: scale(0.78); margin-bottom: -12px; }
}
