/* ===================================================================
   Rivera General Cleaning — Shared Stylesheet
   Brand: Navy #0B2C5F | Teal #2AB5A0 | Cormorant Garamond + DM Sans
   =================================================================== */

/* === VARIABLES ===================================================== */
:root {
  --navy:        #0B2C5F;
  --navy-deep:   #070e21;
  --navy-mid:    #0d3870;
  --teal:        #2AB5A0;
  --teal-dark:   #229988;
  --white:       #FFFFFF;
  --light:       #F4F8FB;
  --text:        #1A1A2E;
  --text-muted:  #5A6B7B;
  --border:      rgba(11, 44, 95, 0.12);
  --shadow-sm:   0 2px 8px rgba(11, 44, 95, 0.07);
  --shadow:      0 4px 24px rgba(11, 44, 95, 0.09);
  --shadow-md:   0 8px 40px rgba(11, 44, 95, 0.14);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, -apple-system, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 100px;
  --nav-h:       72px;
  --py:          84px;
  --max-w:       1280px;
}

/* === RESET ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* === TYPOGRAPHY ==================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.005em; }
p  { font-size: 18px; line-height: 1.72; color: var(--text-muted); }
.lead { font-size: 20px; line-height: 1.68; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* === BUTTONS ======================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary  { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(42,181,160,0.35); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-wa       { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-wa:hover { background: #1eb85a; border-color: #1eb85a; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
.btn-ghost    { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-navy     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 15px; }

/* === NAVIGATION ==================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.nav.transparent { background: transparent; box-shadow: none; }
.nav.scrolled    { background: var(--white); box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--teal); }

.nav.transparent .nav-links a { color: rgba(255,255,255,0.9); }
.nav.transparent .nav-links a:hover { color: var(--teal); }
.nav.transparent .hamburger span { background: white; }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy);
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 20px 28px 28px;
  z-index: 999;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* === HERO ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-cleaning.png') 85% center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.60) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-rule='evenodd'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 40px 80px;
  width: 100%;
}
.hero h1,
.hero h2,
.hero .hero-title {
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 680px;
}
.hero p,
.hero .lead,
.hero .hero-subtitle {
  color: #2D2D2D;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-trust { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: #1A1A2E;
}
.hero-trust-item svg,
.hero .hero-stats svg,
.hero .hero-meta svg { color: var(--teal); }
.hero .hero-stats,
.hero .hero-meta span { color: #1A1A2E; }
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11, 44, 95, 0.08);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid var(--navy);
}
.hero .hero-badge,
.hero .hero-tag {
  color: var(--navy);
  background-color: rgba(11, 44, 95, 0.08);
  border-color: var(--navy);
}
.hero .btn-outline,
.hero .btn-ghost {
  border-color: var(--navy);
  color: var(--navy);
}
.hero .btn-outline:hover,
.hero .btn-ghost:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

@media (max-width: 768px) {
  .hero-trust,
  .hero-stats,
  .hero-meta,
  .hero-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-trust-item,
  .hero-stats span,
  .hero-meta span,
  .hero-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
  }
}

/* Page heroes */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 40px 72px;
  background: linear-gradient(160deg, var(--navy) 0%, #0d3870 50%, #145c78 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.82); }
.page-hero .eyebrow { margin-bottom: 14px; }

/* Photo hero variant */
.page-hero-photo {
  background-size: cover;
  background-position: center;
  padding-bottom: 100px;
}
.page-hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(7,20,50,0.72) 0%, rgba(11,44,95,0.58) 60%, rgba(12,80,80,0.45) 100%);
  z-index: 0;
}
.page-hero-photo .page-hero-pattern { display: none; }
.page-hero-photo .page-hero-inner { z-index: 2; }

/* Feature photo strip */
.photo-feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
}
.photo-feature-strip .pf-image {
  position: relative;
  overflow: hidden;
}
.photo-feature-strip .pf-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.photo-feature-strip .pf-content {
  background: var(--navy);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.photo-feature-strip .pf-content h2 { color: white; margin-bottom: 8px; }
.photo-feature-strip .pf-content p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.7; }
@media (max-width: 768px) {
  .photo-feature-strip { grid-template-columns: 1fr; }
  .photo-feature-strip .pf-image { min-height: 280px; }
  .photo-feature-strip .pf-content { padding: 40px 24px; }
}

/* === SECTIONS ====================================================== */
.section { padding: var(--py) 40px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-light { background: var(--light); }
.section-dark  { background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 19px; }

/* === TWO-PATH SECTION ============================================== */
.two-path { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.path-card {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.path-card-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.path-card h3 { margin-bottom: 4px; }
.path-card .btn { margin-top: 8px; }

.path-residential { background: linear-gradient(140deg, var(--navy) 0%, #0d3870 100%); }
.path-residential .path-card-icon { background: rgba(255,255,255,0.12); color: var(--teal); }
.path-residential h3, .path-residential p, .path-residential .btn { color: white; }
.path-residential p { color: rgba(255,255,255,0.8); }

.path-commercial { background: linear-gradient(140deg, var(--teal) 0%, var(--teal-dark) 100%); }
.path-commercial .path-card-icon { background: rgba(255,255,255,0.18); color: white; }
.path-commercial h3, .path-commercial p { color: white; }
.path-commercial p { color: rgba(255,255,255,0.85); }
.path-commercial .btn { color: white; border-color: rgba(255,255,255,0.6); }
.path-commercial .btn:hover { background: rgba(255,255,255,0.2); border-color: white; }

/* === TRUST PILLARS ================================================= */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { text-align: center; padding: 36px 24px; }
.trust-icon {
  width: 68px; height: 68px;
  background: rgba(42,181,160,0.1);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--teal);
}
.trust-stat { font-size: 32px; font-weight: 700; font-family: var(--font-display); color: var(--navy); margin-bottom: 4px; }
.trust-item h4 { margin-bottom: 6px; }

/* === SERVICE CARDS ================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-icon {
  width: 48px; height: 48px;
  background: rgba(42,181,160,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.service-card h4 { margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 16px; flex: 1; }
.service-card-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.service-link {
  font-size: 16px; font-weight: 600; color: var(--teal);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 8px; }

/* === TESTIMONIALS ================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-stars { color: #F5A623; font-size: 14px; letter-spacing: 1px; margin-bottom: 14px; }
.testimonial-text { font-size: 17px; line-height: 1.75; color: var(--text); font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.testimonial-avatar-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar-wrapper img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  margin-left: -10%;
  margin-top: -5%;
  display: block;
}
.testimonial-name { font-weight: 600; font-size: 16px; color: var(--navy); }
.testimonial-role { font-size: 15px; color: var(--text-muted); }
.testimonials-footer {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 48px; flex-wrap: wrap;
}
.fb-rating {
  display: inline-flex; align-items: center; gap: 12px;
  background: #1877F2; color: white;
  padding: 12px 22px; border-radius: 40px;
  font-size: 14px; font-weight: 600;
}

/* === MAP + CONTACT STRIP =========================================== */
.map-contact { display: grid; grid-template-columns: 1fr 1fr; }
.map-frame { width: 100%; height: 100%; min-height: 420px; border: none; display: block; }
.contact-strip {
  background: var(--navy);
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.contact-strip h3 { color: var(--white); margin-bottom: 4px; font-size: 26px; }
.contact-info-row { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-row .ci-icon {
  width: 40px; height: 40px;
  background: rgba(42,181,160,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.ci-value { font-size: 15px; font-weight: 500; color: white; }
.ci-value a { color: white; transition: color 0.2s; }
.ci-value a:hover { color: var(--teal); }

/* === FOOTER ======================================================== */
.footer {
  background: #FFFFFF;
  color: #1A1A2E;
  padding: 72px 40px 36px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 28px;
}
.footer-brand p { font-size: 16px; line-height: 1.75; margin-top: 16px; color: #333333; }
.footer-logo-dark {
  height: 56px;
  width: auto;
  max-width: 180px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  object-fit: contain;
  display: block;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #1A1A2E; margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 16px; transition: color 0.2s; color: #333333; }
.footer-nav a:hover { color: var(--teal); }
.footer-ci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 16px; color: #333333; }
.footer-ci svg { color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.footer-ci a { color: #333333; transition: color 0.2s; }
.footer-ci a:hover { color: var(--teal); }
.footer-ci span { color: #333333; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 15px; color: #333333; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { transition: color 0.2s; color: #333333; }
.footer-bottom-links a:hover { color: var(--teal); }

/* === WHATSAPP FLOAT ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background-color: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* === COOKIE BANNER ================================================= */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.1);
  padding: 20px 32px;
  display: none;
  align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 4px; font-family: var(--font-display); }
.cookie-text p { font-size: 14px; margin: 0; }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; flex-shrink: 0; }
.btn-ck-accept  { background: var(--teal); color: white; border-color: var(--teal); padding: 10px 20px; font-size: 14px; border-radius: var(--radius-pill); font-weight: 600; }
.btn-ck-accept:hover { background: var(--teal-dark); }
.btn-ck-reject  { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 10px 20px; font-size: 14px; border-radius: var(--radius-pill); font-weight: 600; transition: all 0.2s; }
.btn-ck-reject:hover { background: var(--navy); color: white; }
.btn-ck-custom  { background: transparent; color: var(--teal); font-size: 14px; font-weight: 600; text-decoration: underline; padding: 10px 4px; }

.ck-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(7, 14, 33, 0.55);
  z-index: 10000; display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.ck-modal-overlay.open { display: flex; }
.ck-modal {
  background: var(--white);
  border-radius: 20px; padding: 40px;
  max-width: 520px; width: 100%;
  max-height: 85vh; overflow-y: auto;
}
.ck-modal h3 { margin-bottom: 8px; font-size: 22px; }
.ck-modal > p { font-size: 14px; margin-bottom: 28px; }
.ck-cat {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 20px; margin-bottom: 10px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.ck-cat h5 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.ck-cat p  { font-size: 13px; margin: 0; }
.toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute; inset: 0;
  background: #ccc; border-radius: 24px; cursor: pointer;
  transition: background 0.2s;
}
.toggle-track::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; left: 3px; top: 3px;
  background: white; border-radius: 50%;
  transition: transform 0.2s;
}
.toggle input:checked + .toggle-track { background: var(--teal); }
.toggle input:checked + .toggle-track::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-track { cursor: not-allowed; opacity: 0.6; }
.ck-modal-actions { display: flex; gap: 12px; margin-top: 28px; }
.ck-modal-actions .btn { flex: 1; justify-content: center; }

/* === FORMS ========================================================= */
.form-wrap { background: var(--white); }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; letter-spacing: 0.02em;
}
input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 16px;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,181,160,0.12);
}
textarea { resize: vertical; min-height: 120px; }
.form-honeypot { display: none !important; }
.cbx-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.cbx-item { display: flex; align-items: center; gap: 8px; font-size: 15px; cursor: pointer; }
.cbx-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--teal); flex-shrink: 0; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-success {
  display: none; text-align: center; padding: 48px 24px;
}
.form-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(42,181,160,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin: 0 auto 20px;
}
.form-success h3 { color: var(--navy); margin-bottom: 8px; }

/* === HOW IT WORKS ================================================== */
.steps-track {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; position: relative;
}
.steps-track::before {
  content: '';
  position: absolute; top: 32px;
  left: calc(16.6% + 20px); right: calc(16.6% + 20px);
  height: 2px; background: var(--border);
}
.step { text-align: center; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; font-family: var(--font-display);
  margin: 0 auto 24px; position: relative; z-index: 1;
}
.step h4 { color: var(--navy); margin-bottom: 8px; }

/* === VALUES ======================================================== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white; margin: 0 auto 16px;
}
.value-card h4 { color: var(--navy); margin-bottom: 8px; }

/* === CTA SECTION =================================================== */
.cta-block {
  background: linear-gradient(140deg, var(--navy) 0%, #0d3870 60%, var(--teal-dark) 100%);
  padding: 88px 40px;
  text-align: center;
}
.cta-block h2 { color: white; margin-bottom: 16px; }
.cta-block p  { color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === B2B TRUST ITEMS =============================================== */
.b2b-trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.b2b-trust-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
}
.b2b-trust-item svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.b2b-trust-item h4 { color: white; margin-bottom: 4px; font-size: 16px; }
.b2b-trust-item p  { font-size: 14px; }

/* === CONTACT PAGE LAYOUT =========================================== */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; }
.contact-form-col { padding: 72px 56px; }
.contact-info-col {
  background: var(--navy); padding: 72px 56px;
  display: flex; flex-direction: column; gap: 28px;
}
.contact-info-col h3 { color: white; font-size: 26px; margin-bottom: 4px; }
.ci2 { display: flex; align-items: flex-start; gap: 16px; }
.ci2-icon {
  width: 44px; height: 44px;
  background: rgba(42,181,160,0.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}
.ci2-label { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.ci2-value { font-size: 16px; font-weight: 500; color: white; }
.ci2-value a { color: white; transition: color 0.2s; }
.ci2-value a:hover { color: var(--teal); }
.map-full { width: 100%; height: 400px; border: none; display: block; }

/* === ABOUT PAGE ==================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-avatar {
  width: 112px; height: 112px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 36px; font-family: var(--font-display); font-weight: 700;
  margin: 0 auto 20px;
}
.team-card h4 { color: var(--navy); margin-bottom: 4px; }

/* === PRIVACY POLICY ================================================ */
.privacy-wrap {
  max-width: 720px; margin: 0 auto;
  padding: 72px 40px 96px;
}
.privacy-wrap .last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 48px; }
.privacy-wrap h2 { font-size: 22px; margin: 48px 0 14px; color: var(--navy); }
.privacy-wrap h2:first-of-type { margin-top: 0; }
.privacy-wrap p  { margin-bottom: 16px; font-size: 16px; color: var(--text); }
.privacy-wrap ul { margin-left: 20px; margin-bottom: 16px; list-style: disc; }
.privacy-wrap ul li { font-size: 16px; color: var(--text-muted); margin-bottom: 8px; }
.privacy-wrap a  { color: var(--teal); text-decoration: underline; }

/* === STORY GRID (about page) ======================================= */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }

/* === ANIMATIONS ==================================================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* === RESPONSIVE ==================================================== */
@media (max-width: 1100px) {
  :root { --py: 72px; }
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .b2b-trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; }
  .contact-form-col, .contact-info-col { padding: 48px 32px; }
  .map-contact { grid-template-columns: 1fr; }
  .contact-strip { padding: 48px 32px; }
  .steps-track { grid-template-columns: 1fr; gap: 32px; }
  .steps-track::before { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .hero-bg { background-position: 80% center; }
}
@media (max-width: 768px) {
  :root { --py: 56px; }
  .section, .cta-block { padding: var(--py) 20px; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 20px 56px; }
  .nav-inner { padding: 0 20px; }
  .two-path { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer { padding: 56px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; max-width: 340px; }
  .hero-content { padding: calc(var(--nav-h) + 24px) 20px 60px; }
  .hero-bg { background-position: 75% center; }
  .cookie-banner { flex-direction: column; gap: 16px; padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cbx-group { grid-template-columns: 1fr; }
  .privacy-wrap { padding: 48px 20px 72px; }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-bg { background-position: 75% center; }
}

/* === STATS SECTION ================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 48px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(even) { border-right: none; }
}

/* === PARTNERS BAND ================================================= */
.partners-section {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  padding: 0 40px 24px;
}
.partners-band-wrap {
  overflow: hidden;
  position: relative;
}
.partners-band-wrap::before,
.partners-band-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners-band-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.partners-band-wrap::after  { right: 0; background: linear-gradient(to left, white, transparent); }
.partners-band {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: partnerScroll 28s linear infinite;
  padding: 4px 0;
}
.partners-band:hover { animation-play-state: paused; }
@keyframes partnerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === MOBILE OPTIMIZATION ========================================== */
@media (max-width: 900px) {
  .services-grid,
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --py: 40px;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(1.95rem, 7vw, 2.45rem);
    line-height: 1.16;
  }

  h3 {
    font-size: clamp(1.45rem, 5vw, 1.8rem);
    line-height: 1.2;
  }

  h4 {
    font-size: 1.25rem;
  }

  p,
  .lead {
    font-size: 1.1875rem;
    line-height: 1.75;
  }

  .eyebrow,
  .hero-eyebrow-pill,
  label,
  .ci-label,
  .ci2-label,
  .testimonial-role,
  .testimonial-name,
  .stat-label,
  .footer h5,
  .footer-bottom,
  .footer-nav a,
  .footer-ci,
  .cookie-text p,
  .btn-ck-accept,
  .btn-ck-reject,
  .btn-ck-custom {
    font-size: 17px;
  }

  .nav-inner {
    padding: 0 16px;
    gap: 10px;
  }

  .nav-logo img {
    height: 56px;
  }

  .nav-cta {
    display: block;
    margin-left: auto;
    margin-right: 4px;
  }

  .nav-cta .btn {
    width: auto;
    min-width: 48px;
    min-height: 48px;
    padding: 10px 14px;
    font-size: 15px;
  }

  .hamburger {
    width: auto;
    min-width: 48px;
    min-height: 48px;
    padding: 8px;
    flex-shrink: 0;
  }

  .mobile-menu {
    padding: 16px;
  }

  .mobile-menu a {
    font-size: 18px;
  }

  .section,
  .cta-block,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .page-hero,
  .hero-content,
  .contact-form-col,
  .contact-info-col,
  .contact-strip,
  .photo-feature-strip .pf-content,
  .cookie-banner,
  .privacy-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-inner,
  .hero-content,
  .page-hero-inner {
    max-width: 100%;
  }

  .hero {
    min-height: 520px;
  }

  .hero-ctas,
  .cta-btns {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .btn,
  button,
  a.btn {
    min-height: 48px;
    min-width: 48px;
    width: 100%;
    padding: 14px 20px;
    font-size: 1.0625rem;
    justify-content: center;
    text-align: center;
  }

  .service-card p,
  .testimonial-text,
  .path-card p,
  .contact-strip p,
  .photo-feature-strip .pf-content p,
  .privacy-wrap p,
  .privacy-wrap ul li {
    font-size: 1.125rem;
  }

  .service-link,
  .testimonial-name,
  .testimonial-role,
  .ci-value,
  .ci2-value,
  .footer-brand p,
  .footer-bottom-links a {
    font-size: 1.0625rem;
  }

  .services-grid,
  .services-grid-4,
  .services-grid-5,
  .trust-grid,
  .testimonials-grid,
  .values-grid,
  .b2b-trust-grid,
  .story-grid,
  .stats-grid,
  .two-path,
  .contact-split,
  .map-contact,
  .photo-feature-strip,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 40px 16px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: clamp(3.5rem, 14vw, 4.5rem);
    margin-bottom: 14px;
  }

  .stat-label {
    font-size: 1.55rem;
    line-height: 1.3;
    letter-spacing: 0.03em;
  }

  .contact-split,
  .map-contact {
    gap: 0;
  }

  .contact-info-row,
  .testimonial-author,
  .b2b-trust-item,
  .ci2 {
    align-items: flex-start;
  }

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

  input,
  select,
  textarea {
    font-size: 16px;
    padding: 14px 16px;
  }

  iframe[src*="maps"],
  .map-full,
  .map-frame {
    width: 100%;
    height: 280px;
    min-height: 280px;
  }

  .partners-band-wrap {
    overflow: hidden;
  }

  .partners-band-wrap::before,
  .partners-band-wrap::after {
    display: block;
    width: 40px;
  }

  .partners-band {
    animation: partnerScroll 28s linear infinite;
    gap: 28px;
    padding: 4px 0;
  }

  .footer-grid {
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 18px;
    text-align: left;
  }

  .footer h5 {
    margin-bottom: 12px;
    letter-spacing: 0.06em;
  }

  .footer-ci,
  .footer-nav,
  .footer-bottom-links {
    justify-content: flex-start;
  }

  .footer-nav {
    align-items: flex-start;
    gap: 12px;
  }

  .footer-ci {
    align-items: flex-start;
  }

  .footer {
    padding-top: 44px;
    padding-bottom: 24px;
  }

  .footer-logo-dark {
    height: 64px;
  }

  .footer-brand p,
  .footer-nav a,
  .footer-ci,
  .footer-bottom,
  .footer-bottom-links a {
    font-size: 17px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  body {
    padding-bottom: 80px;
  }
}
.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 14px 28px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.partner-logo:hover { border-color: var(--teal); color: var(--navy); }
.partner-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); opacity: 0.5; flex-shrink: 0;
}
.partner-favicon {
  width: 22px; height: 22px; object-fit: contain; border-radius: 4px; flex-shrink: 0;
}
.partner-logo img.partner-logo-image,
.partner-logo svg.partner-logo-image {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.partner-logo img[src*="logo-mae"] {
  background-color: #000000;
  border-radius: 4px;
  padding: 4px 6px;
}
.partner-logo-image--multiply {
  mix-blend-mode: multiply;
}
.partner-dot-bdo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 4px;
  background: var(--navy); color: white; font-size: 9px; font-weight: 700;
  letter-spacing: 0.04em; flex-shrink: 0;
}

/* === SERVICES 5-COL ================================================ */
.services-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .services-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .services-grid-5 { grid-template-columns: 1fr; } }
@media (max-width: 480px)  { .services-grid-5 { grid-template-columns: 1fr; } }
