/* ============================================
   PRAISE PSALM CLEANERS — Sacred Clean Aesthetic
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Hanken Grotesk', sans-serif;
  line-height: 1.6;
  color: #1b1c1c;
  background: #fbf9f8;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --navy:           #002147;
  --navy-dark:      #0d1a2b;
  --gold:           #D4AF37;
  --gold-hover:     #c49b28;
  --white:          #ffffff;
  --surface:        #fbf9f8;
  --surface-low:    #f6f3f2;
  --on-surface:     #1b1c1c;
  --on-surface-var: #44474e;
  --outline:        #74777f;
  --outline-var:    #c4c6cf;
  --shadow-1:  0px 4px 20px rgba(0,33,71,0.08);
  --shadow-2:  0px 12px 32px rgba(0,33,71,0.14);
  --shadow-3:  0px 24px 56px rgba(0,33,71,0.20);
  --r-sm:   0.125rem;
  --r:      0.25rem;
  --r-md:   0.375rem;
  --r-lg:   0.5rem;
  --r-full: 9999px;
  --max-w:  1280px;
  --t:      0.22s ease;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: #003a6e;
  border-color: #003a6e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn--lg { padding: 17px 40px; font-size: 15px; }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header__eyebrow {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-header__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header__sub {
  font-size: 17px;
  color: var(--on-surface-var);
  line-height: 1.65;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar__contact { display: flex; align-items: center; gap: 24px; }
.top-bar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  transition: color var(--t);
}
.top-bar__link:hover { color: var(--gold); }
.top-bar__social { display: flex; align-items: center; gap: 10px; }
.top-bar__label { color: rgba(255,255,255,0.4); font-size: 12px; margin-right: 2px; }
.top-bar__social-link {
  display: flex;
  color: rgba(255,255,255,0.65);
  transition: color var(--t);
}
.top-bar__social-link:hover { color: var(--gold); }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid transparent;
  padding: 14px 0;
  transition: border-color var(--t), box-shadow var(--t);
}
.header.scrolled {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-1);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__logo { flex-shrink: 0; display: flex; align-items: center; }
.nav { flex: 1; }
.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--t);
}
.nav__link:hover,
.nav__link.active { border-bottom-color: var(--gold); }
.header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center 20%;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(0, 21, 50, 0.90) 0%,
    rgba(0, 21, 50, 0.78) 42%,
    rgba(0, 21, 50, 0.25) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  padding-bottom: 88px;
}
.hero__text { max-width: 600px; }
.hero__eyebrow {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero__heading em { font-style: normal; color: var(--gold); }
.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 38px;
  max-width: 500px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  border-radius: var(--r-full);
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

/* ============================================
   TRUST STATS BAR
   ============================================ */
.trust-bar {
  background: var(--navy);
  padding: 52px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 0;
}
.trust-bar__item + .trust-bar__item {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.trust-bar__icon { flex-shrink: 0; }
.trust-bar__stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.trust-bar__label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
  font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 88px 0;
  background: var(--white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--outline-var);
  border-bottom: 2px solid transparent;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: border-bottom-color var(--t), box-shadow var(--t), transform var(--t);
}
.service-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-2);
  transform: translateY(-5px);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(212,175,55,0.09);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.service-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 15px;
  color: var(--on-surface-var);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 22px;
}
.service-card__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--t);
  align-self: flex-start;
}
.service-card__link:hover { color: var(--gold); }

/* ============================================
   STORY & VALUES
   ============================================ */
.story {
  padding: 88px 0;
  background: var(--surface-low);
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.story__body {
  font-size: 16px;
  color: var(--on-surface-var);
  line-height: 1.72;
  margin-bottom: 18px;
}
.values-list {
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.values-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.story__cta { margin-top: 36px; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.team-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--white);
  transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}
.team-card__img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: top center;
}
.team-card__info { padding: 16px 18px; }
.team-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.team-card__role {
  font-size: 13px;
  color: var(--on-surface-var);
  margin-top: 4px;
}
.story__award {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--navy);
  border-radius: var(--r-lg);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  padding: 88px 0;
  background: var(--white);
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.gallery__item {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  background: var(--white);
  transition: box-shadow var(--t);
}
.gallery__item:hover { box-shadow: var(--shadow-2); }
.gallery__item--large { grid-row: span 2; }
.gallery__img-wrap {
  overflow: hidden;
  height: 200px;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery__img--portrait { object-position: top center; }
.gallery__item:hover .gallery__img { transform: scale(1.04); }
.before-after { position: relative; overflow: hidden; }
.before-after__img { width: 100%; height: auto; display: block; }
.before-after__labels {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.before-after__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.before-after__label--before { background: rgba(0,0,0,0.6); color: #fff; }
.before-after__label--after  { background: var(--navy); color: var(--gold); }
.gallery__caption {
  padding: 13px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border-top: 1px solid var(--outline-var);
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  padding: 88px 0;
  background: var(--navy);
  position: relative;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
.quote-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 12px;
  padding: 52px 60px;
  box-shadow: var(--shadow-3);
  max-width: 820px;
  margin: 0 auto;
}
.quote-card__header { margin-bottom: 36px; }
.quote-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.quote-card__sub {
  font-size: 15px;
  color: var(--on-surface-var);
  line-height: 1.65;
}
.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group--full { margin-bottom: 20px; }
.form-group__label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group__input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--outline-var);
  border-radius: var(--r);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  color: var(--on-surface);
  background: var(--white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form-group__input:focus {
  border-color: var(--navy);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.14);
}
.form-group__input::placeholder { color: #b0b0b0; }
.form-group__textarea { resize: vertical; min-height: 116px; }
select.form-group__input {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='%23002147' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
  cursor: pointer;
}
.quote-form__footer {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.quote-form__note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--on-surface-var);
}
.quote-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 48px 24px;
}
.quote-success.visible { display: flex; }
.quote-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}
.quote-success p { font-size: 15px; color: var(--on-surface-var); max-width: 380px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.72);
  padding-top: 72px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__tagline {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.48);
  max-width: 270px;
}
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--t), color var(--t);
}
.footer__social-link:hover { background: var(--gold); color: var(--navy); }
.footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer__contact-list a { color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer__contact-list a:hover { color: var(--gold); }
.footer__bottom { padding: 20px 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.32); }
.footer__bottom-badges { display: flex; gap: 8px; }
.footer__badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.4);
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: white;
  border-radius: var(--r-full);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: transform var(--t), box-shadow var(--t);
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.55);
}
.whatsapp-fab__text { white-space: nowrap; }

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero__heading { font-size: 44px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .story__inner { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--large { grid-row: auto; }
  .gallery__img-wrap { height: 260px; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .top-bar__contact a:last-child { display: none; }

  .header { position: relative; }
  .header.scrolled { position: sticky; top: 0; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--outline-var);
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-2);
    padding: 16px 24px 24px;
    z-index: 300;
  }
  .nav.open { display: block; }
  .nav__list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .nav__list li { width: 100%; }
  .nav__link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--outline-var);
    border-left: none;
    font-size: 15px;
  }
  .nav__link:hover { border-bottom-color: var(--outline-var); color: var(--gold); }
  .nav__list li:last-child .nav__link { border-bottom: none; }
  .mobile-menu-btn { display: flex; }

  .hero { min-height: 540px; }
  .hero__content { padding-top: 60px; padding-bottom: 60px; }
  .hero__heading { font-size: 34px; }
  .hero__sub { font-size: 16px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-bar__item + .trust-bar__item { border-left: none; }
  .trust-bar__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .services { padding: 60px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
  .section-header__title { font-size: 28px; }

  .story { padding: 60px 0; }
  .story__inner { grid-template-columns: 1fr; gap: 44px; }
  .story__title { font-size: 28px; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .gallery-section { padding: 60px 0; }
  .gallery__grid { gap: 16px; }

  .quote-section { padding: 60px 0; }
  .quote-card { padding: 36px 24px; }
  .quote-card__title { font-size: 24px; }
  .quote-form__row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group--full { margin-bottom: 16px; }
  .quote-form__footer { flex-direction: column; align-items: flex-start; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 12px; }

  .whatsapp-fab { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
  .whatsapp-fab__text { display: none; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__heading { font-size: 28px; }
  .hero__badges { flex-direction: column; align-items: flex-start; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-bar__item + .trust-bar__item { border: none; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
  .trust-bar__item:nth-child(odd) { border-right: none; }
  .team-grid { grid-template-columns: 1fr; }
  .footer__bottom-badges { flex-wrap: wrap; justify-content: center; }
}
