/* ============================================================
   D'Matos Construction — Shared Stylesheet
   ============================================================ */

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

:root {
  --orange: #b63513;
  --orange-light: #c94a28;
  --orange-dark: #922a0f;
  --gray-900: #2b2b2b;
  --gray-800: #232323;
  --gray-700: #3D3D3D;
  --gray-500: #6B6B6B;
  --gray-300: #CCCCCC;
  --gray-100: #F5F5F5;
  --white: #fdfdfd;
  --max-w: 1280px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--gray-700); background: var(--white); line-height: 1.6; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,253,253,0.96); backdrop-filter: blur(16px) saturate(1.8); -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border: 1px solid transparent; border-bottom-color: rgba(28,28,28,0.07);
  height: 72px; display: flex; align-items: center;
  transition: top .38s cubic-bezier(.4,0,.2,1), left .38s cubic-bezier(.4,0,.2,1), right .38s cubic-bezier(.4,0,.2,1), border-radius .38s cubic-bezier(.4,0,.2,1), box-shadow .38s cubic-bezier(.4,0,.2,1), border-color .38s cubic-bezier(.4,0,.2,1), background .38s cubic-bezier(.4,0,.2,1), backdrop-filter .38s cubic-bezier(.4,0,.2,1);
}
.navbar-container { max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 0 36px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.navbar-logo { text-decoration: none; display: flex; align-items: center; }
.navbar-logo-img { height: 46px; width: auto; display: block; }
.navbar-logo-name { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); letter-spacing: -0.4px; }
.navbar-logo-name span { color: var(--orange); }
.navbar-logo-sub { font-size: 0.6rem; font-weight: 500; color: rgba(28,28,28,0.32); letter-spacing: 1.8px; text-transform: uppercase; margin-top: 1px; }
.navbar-menu { display: flex; gap: 4px; list-style: none; align-items: center; }
.navbar-menu li a { text-decoration: none; font-size: 0.82rem; font-weight: 500; color: rgba(28,28,28,0.5); padding: 7px 10px; border-radius: 5px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.navbar-menu li a:hover, .navbar-menu li a.active { color: var(--gray-900); background: rgba(28,28,28,0.04); }
.navbar-menu li a.nav-cta { background: var(--orange); color: var(--white); padding: 9px 18px; border-radius: 5px; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2px; margin-left: 6px; }
.navbar-menu li a.nav-cta:hover { background: var(--orange-dark); }
/* SERVICES DROPDOWN */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 4px solid currentColor; margin-left: 5px; vertical-align: middle; opacity: 0.55; transition: transform 0.2s; }
.nav-item-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px); background: rgba(253,253,253,0.99); backdrop-filter: blur(20px) saturate(1.8); border: 1px solid rgba(28,28,28,0.08); border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,0.11); min-width: 230px; padding: 8px; opacity: 0; visibility: hidden; transition: opacity 0.18s ease, transform 0.18s ease; z-index: 999; }
.nav-dropdown::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-item-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: block; padding: 8px 14px; border-radius: 8px; color: rgba(28,28,28,0.65); font-size: 0.82rem; font-weight: 500; text-decoration: none; transition: background 0.14s, color 0.14s; white-space: nowrap; }
.nav-dropdown a:hover { background: rgba(182,53,19,0.07); color: var(--orange); }
.nav-dropdown-divider { height: 1px; background: rgba(28,28,28,0.06); margin: 6px 8px; }
/* MOBILE SERVICES ACCORDION */
.mobile-nav-group { border-bottom: 1px solid rgba(28,28,28,0.05); }
.mobile-nav-group-header { display: flex; align-items: center; }
.mobile-nav-group-link { flex: 1; padding: 14px 0; color: rgba(28,28,28,0.55); font-size: 1rem; font-weight: 500; font-family: 'Poppins', sans-serif; text-decoration: none; transition: color 0.2s; }
.mobile-nav-group-link:hover { color: var(--gray-900); }
.mobile-nav-group-btn { background: none; border: none; cursor: pointer; color: rgba(28,28,28,0.45); padding: 14px 4px; transition: color 0.2s; flex-shrink: 0; }
.mobile-nav-group-btn:hover { color: var(--gray-900); }
.mobile-nav-chevron { font-size: 1.3rem; transition: transform 0.22s ease; line-height: 1; display: block; }
.mobile-nav-group-btn.open .mobile-nav-chevron { transform: rotate(90deg); }
.mobile-nav-group-links { display: none; padding: 0 0 10px 14px; }
.mobile-nav-group-links.open { display: block; }
.mobile-nav-group-links a { display: block; padding: 9px 0; color: rgba(28,28,28,0.5); font-size: 0.9rem; font-weight: 400; text-decoration: none; border-bottom: 1px solid rgba(28,28,28,0.04); font-family: 'Poppins', sans-serif; transition: color 0.2s; }
.mobile-nav-group-links a:last-child { border-bottom: none; }
.mobile-nav-group-links a:hover { color: var(--orange); }
.pt-badge { background: rgba(0,130,80,0.14); color: #00c46a; font-size: 0.65rem; font-weight: 700; letter-spacing: 1.2px; padding: 5px 10px; border-radius: 20px; border: 1px solid rgba(0,196,106,0.22); text-transform: uppercase; white-space: nowrap; font-family: 'Poppins', sans-serif; }
.hamburger { display: none; cursor: pointer; background: none; border: 1px solid rgba(28,28,28,0.12); border-radius: 8px; padding: 10px; color: var(--gray-900); line-height: 0; }
.hamburger-icon { display: block; width: 22px; height: 22px; transition: transform 300ms ease-in-out; }
.hamburger-icon .h-line1 { stroke-dasharray: 12 63; transition: stroke-dasharray 300ms ease-in-out, stroke-dashoffset 300ms ease-in-out; }
.hamburger.open .hamburger-icon { transform: rotate(-45deg); }
.hamburger.open .h-line1 { stroke-dasharray: 20 300; stroke-dashoffset: -32.42px; }
/* NAVBAR SCROLLED — glassmorphism (desktop only) */
@media(min-width:769px){
  .navbar.scrolled {
    top: 10px; left: 20px; right: 20px;
    border-radius: 20px;
    background: rgba(250,250,250,0.62);
    backdrop-filter: blur(32px) saturate(2.4) brightness(1.06);
    -webkit-backdrop-filter: blur(32px) saturate(2.4) brightness(1.06);
    border-color: rgba(255,255,255,0.72);
    box-shadow:
      0 4px 6px rgba(0,0,0,0.04),
      0 12px 40px rgba(0,0,0,0.10),
      0 1px 0 rgba(255,255,255,0.9) inset,
      0 -1px 0 rgba(28,28,28,0.04) inset;
  }
}
/* MOBILE MENU */
.mobile-menu { display:none; position:fixed; top:72px; left:0; right:0; bottom:0; background:rgba(253,253,253,0.99); z-index:998; flex-direction:column; justify-content:space-between; padding:28px 28px 36px; overflow-y:auto; border-top: 1px solid rgba(28,28,28,0.06); }
.mobile-menu.open { display:flex; animation:menuIn 220ms ease-out; }
@keyframes menuIn { from{opacity:0;transform:scale(0.97)} to{opacity:1;transform:scale(1)} }
.mobile-nav-links a { display:block; padding:14px 0; color:rgba(28,28,28,0.55); text-decoration:none; font-size:1rem; font-weight:500; border-bottom:1px solid rgba(28,28,28,0.05); transition:color 0.2s; font-family:'Poppins',sans-serif; }
.mobile-nav-links a:hover { color:var(--gray-900); }
.mobile-nav-cta { display:flex; flex-direction:column; gap:12px; }

/* Legacy nav aliases (some inner pages still reference these) */
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 36px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.5); padding: 7px 10px; border-radius: 5px; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.nav-cta { background: var(--orange); color: var(--white); padding: 9px 18px; border-radius: 5px; font-weight: 700; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--white); padding: 140px 32px 72px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(28,28,28,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(28,28,28,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero::after {
  content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(182,53,19,0.05) 0%, transparent 70%);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-hero-line { width: 32px; height: 2px; background: var(--orange); }
.page-hero-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); }
.page-hero-title { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; color: var(--gray-900); line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 20px; }
.page-hero-title span { color: var(--orange); }
.page-hero-title em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px rgba(28,28,28,0.18); }
.page-hero-desc { font-size: 1.05rem; color: var(--gray-500); max-width: 520px; font-weight: 300; line-height: 1.75; }

/* ===== SECTION SHARED ===== */
section { padding: 100px 36px; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.section-tag-line { width: 28px; height: 2px; background: var(--orange); flex-shrink: 0; }
.section-tag-text { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--gray-900); line-height: 1.1; letter-spacing: -1px; }
.section-title span { color: var(--orange); }
.section-title em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--gray-300); }
.section-title.light { color: var(--white); }
.section-desc { margin-top: 14px; font-size: 1rem; color: var(--gray-500); max-width: 520px; font-weight: 300; line-height: 1.75; }
.section-desc.light { color: rgba(255,255,255,0.5); }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); padding: 15px 32px; border-radius: 4px; font-weight: 700; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.3px; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--gray-300); color: var(--gray-700); padding: 13px 28px; border-radius: 4px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--orange); padding: 15px 30px; border-radius: 4px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: background 0.2s; }
.btn-white:hover { background: var(--gray-100); }
.btn-outline-w { display: inline-flex; align-items: center; gap: 8px; border: 2px solid rgba(255,255,255,0.35); color: var(--white); padding: 13px 28px; border-radius: 4px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.btn-outline-w:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== BUTTON WITH SLIDING ICON ===== */
.btn-icon {
  position: relative; display: inline-flex; align-items: center;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700;
  border-radius: 9999px; height: 48px;
  padding: 4px 58px 4px 24px;
  overflow: hidden; cursor: pointer; text-decoration: none; border: none;
  background: var(--orange); color: var(--white);
  transition: padding 0.5s cubic-bezier(0.4,0,0.2,1), background 0.2s;
  white-space: nowrap; width: fit-content;
}
.btn-icon:hover { padding: 4px 24px 4px 58px; background: var(--orange-dark); }
.btn-icon-text { position: relative; z-index: 10; pointer-events: none; }
.btn-icon-circle {
  position: absolute; right: 4px;
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--white); color: var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: right 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.btn-icon:hover .btn-icon-circle { right: calc(100% - 44px); transform: rotate(45deg); }

/* Dark circle variant — for use on light backgrounds */
.btn-icon.btn-icon-dark {
  background: var(--gray-900); color: var(--white);
}
.btn-icon.btn-icon-dark:hover { background: var(--orange); }
.btn-icon.btn-icon-dark .btn-icon-circle { background: var(--white); color: var(--gray-900); }
.btn-icon.btn-icon-dark:hover .btn-icon-circle { color: var(--gray-900); }

/* White variant — for use on orange/colored backgrounds */
.btn-icon.btn-icon-white {
  background: var(--white); color: var(--orange);
}
.btn-icon.btn-icon-white:hover { background: rgba(253,253,253,0.88); }
.btn-icon.btn-icon-white .btn-icon-circle { background: var(--orange); color: var(--white); }

/* Ghost variant — transparent with border, for secondary actions */
.btn-icon-ghost {
  position: relative; display: inline-flex; align-items: center;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 600;
  border-radius: 9999px; height: 48px;
  padding: 4px 58px 4px 24px;
  overflow: hidden; cursor: pointer; text-decoration: none;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(253,253,253,0.3);
  transition: padding 0.5s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
  white-space: nowrap; width: fit-content;
}
.btn-icon-ghost:hover { padding: 4px 24px 4px 58px; border-color: rgba(253,253,253,0.65); }
.btn-icon-ghost .btn-icon-circle { background: rgba(253,253,253,0.12); color: var(--white); }
.btn-icon-ghost:hover .btn-icon-circle { right: calc(100% - 44px); transform: rotate(45deg); }
/* Ghost dark — for light backgrounds */
.btn-icon-ghost-dark {
  position: relative; display: inline-flex; align-items: center;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 600;
  border-radius: 9999px; height: 48px;
  padding: 4px 58px 4px 24px;
  overflow: hidden; cursor: pointer; text-decoration: none;
  background: transparent; color: var(--gray-900);
  border: 1.5px solid rgba(28,28,28,0.2);
  transition: padding 0.5s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
  white-space: nowrap; width: fit-content;
}
.btn-icon-ghost-dark:hover { padding: 4px 24px 4px 58px; border-color: rgba(28,28,28,0.45); }
.btn-icon-ghost-dark .btn-icon-circle { background: rgba(28,28,28,0.07); color: var(--gray-900); }
.btn-icon-ghost-dark:hover .btn-icon-circle { right: calc(100% - 44px); transform: rotate(45deg); }

/* ===== CARDS SHARED ===== */
.card-light { background: var(--white); border: 1px solid rgba(28,28,28,0.06); border-top: 2px solid transparent; border-radius: 12px; transition: border-top-color 0.25s, box-shadow 0.25s; }
.card-light:hover { border-top-color: var(--orange); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

/* ===== CTA BAND ===== */
.cta-band { background: var(--orange); padding: 80px 32px; }
.cta-band-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.cta-band-text { max-width: 580px; }
.cta-band-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cta-band-line { width: 24px; height: 2px; background: rgba(255,255,255,0.4); }
.cta-band-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.cta-band-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 12px; }
.cta-band-desc { font-size: 0.95rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.7; }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ===== FOOTER ===== */
.footer { background: #ececec; border-top: 1px solid rgba(28,28,28,0.07); }
.footer-body { max-width: var(--max-w); margin: 0 auto; padding: 88px 36px 64px; display: flex; flex-direction: row; align-items: flex-start; gap: 44px; }
.footer-brand { flex: 1.6; min-width: 0; }
.footer-body > div:not(.footer-brand) { flex: 1; min-width: 0; }
.footer-body > div.footer-contact-col { flex: 1.5; }
.footer-brand-logo { margin-bottom: 12px; }
.footer-brand-logo img { height: 52px; width: auto; display: block; }
.footer-brand-logo span { color: var(--orange); }
.footer-brand-area { font-size: 0.7rem; font-weight: 500; color: rgba(28,28,28,0.35); letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 14px; }
.footer-brand-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.7; font-weight: 300; max-width: 260px; margin-bottom: 20px; }
.footer-pt-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,130,80,0.1); color: #00c46a; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; padding: 6px 12px; border-radius: 20px; border: 1px solid rgba(0,196,106,0.2); text-transform: uppercase; }
.footer-col-title { font-size: 0.68rem; font-weight: 700; color: rgba(28,28,28,0.38); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { color: rgba(28,28,28,0.5); text-decoration: none; font-size: 0.85rem; font-weight: 400; transition: color 0.2s; }
.footer-col-links a:hover { color: var(--orange); }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.footer-contact-label { font-size: 0.65rem; font-weight: 700; color: rgba(28,28,28,0.38); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-contact-value { font-size: 0.85rem; color: var(--gray-500); font-weight: 400; }
.footer-contact-value a { color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.footer-contact-value a:hover { color: var(--orange); }
.footer-contact-lines { display: flex; flex-direction: column; gap: 7px; }
.footer-contact-line { font-size: 0.85rem; color: var(--gray-500); font-weight: 400; line-height: 1.6; margin: 0; }
.footer-contact-line a { color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.footer-contact-line a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(28,28,28,0.06); }
.footer-bottom-inner { max-width: var(--max-w); margin: 0 auto; padding: 18px 36px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.75rem; color: rgba(28,28,28,0.3); font-weight: 400; }
.footer-license { font-size: 0.72rem; color: rgba(28,28,28,0.35); display: flex; align-items: center; gap: 6px; }

/* ===== REVEAL (fade-up suave ao entrar na viewport) ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); will-change: auto; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== FORM ===== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.45); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.8px; }
.form-group label.dark { color: var(--gray-500); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; font-size: 0.9rem; font-family: 'Poppins', sans-serif; color: var(--white); background: rgba(255,255,255,0.06); transition: border-color 0.2s; outline: none; }
.form-group input.light-input, .form-group select.light-input, .form-group textarea.light-input { background: var(--white); color: var(--gray-900); border: 1.5px solid var(--gray-300); }
.form-group select option { background: var(--gray-900); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { background: var(--orange); color: var(--white); border: none; padding: 15px 32px; border-radius: 4px; font-size: 0.9rem; font-weight: 700; cursor: pointer; width: 100%; font-family: 'Poppins', sans-serif; transition: background 0.2s; letter-spacing: 0.3px; }
.form-submit:hover { background: var(--orange-dark); }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--orange); }
.stats-bar-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 36px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { padding: 34px 20px; border-right: 1px solid rgba(255,255,255,0.2); text-align: center; }
.stat-cell:last-child { border-right: none; }
.stat-number { font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -1px; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.72); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }

/* ===== RESPONSIVE ===== */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .navbar-container { padding: 0 24px; }
  .navbar-logo-img { height: 40px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .footer-body { flex-wrap: wrap; gap: 36px; padding: 64px 24px 48px; align-items: flex-start; }
  .footer-brand { flex: 1 1 100%; }
  .footer-brand-logo img { height: 44px; }
  .footer-body > div:not(.footer-brand) { flex: 1 1 calc(50% - 18px); }
  .page-hero { padding: 110px 24px 56px; }
  section { padding: 80px 24px; }
  .cta-band { padding: 72px 24px; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  .navbar { height: auto; min-height: 80px; padding: 8px 0; }
  .navbar-container { padding: 0 20px; gap: 12px; }
  .navbar-menu { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .lang-switcher { flex-shrink: 0; margin-top: 0 !important; }
  .navbar-logo-img { height: 38px; }
  .mobile-menu { top: 72px; }
  body { padding-top: 0 !important; }

  section { padding: 60px 20px; }
  .page-hero { padding: 158px 20px 48px; }
  .page-hero-title { letter-spacing: -0.5px; }

  .cta-band { padding: 56px 20px; }
  .cta-band-inner { flex-direction: column; gap: 28px; }
  .cta-band-title { font-size: 1.6rem; }

  /* Footer */
  .footer-body { flex-direction: column; gap: 32px; padding: 56px 20px 40px; align-items: flex-start; }
  .footer-brand, .footer-body > div:not(.footer-brand) { flex: 1 1 100%; }
  .footer-brand-logo img { height: 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; padding: 18px 20px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Stats */
  .stats-bar-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }

  /* Buttons */
  .btn-icon, .btn-icon-ghost-dark, .btn-icon-ghost { font-size: 0.82rem; height: 44px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }

  /* Dual grid */
  .dual-grid { grid-template-columns: 1fr !important; }

  /* Service areas */
  .service-areas-states { flex-wrap: wrap !important; gap: 16px !important; }

  /* Badges strip */
  .badges-strip-inner { flex-direction: column; align-items: center; gap: 20px; }
  .badges-logos { gap: 20px; }

  /* Trust strip */
  .trust-strip-inner { gap: 16px; }
  .trust-sep { display: none; }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .navbar-logo-img { height: 34px; }
  .footer-brand-logo img { height: 36px; }
  .page-hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-btns { width: 100%; }
  .btn-icon, .btn-icon-ghost-dark { width: 100%; justify-content: center; }
}

/* ============================================================
   SERVICE PAGE CAROUSEL
   ============================================================ */
.svc-carousel { position:relative; border-radius:16px; overflow:hidden; max-width:var(--max-w); margin:0 auto; }
.svc-carousel-track { display:flex; transition:transform 0.42s cubic-bezier(0.4,0,0.2,1); will-change:transform; }
.svc-carousel-slide { flex-shrink:0; width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.svc-carousel-btn { position:absolute; top:50%; transform:translateY(-50%); background:rgba(28,28,28,0.52); backdrop-filter:blur(8px); border:none; color:#fff; width:44px; height:44px; border-radius:50%; cursor:pointer; font-size:1.4rem; display:flex; align-items:center; justify-content:center; transition:background 0.2s; z-index:2; }
.svc-carousel-btn:hover { background:rgba(28,28,28,0.88); }
.svc-carousel-prev { left:16px; }
.svc-carousel-next { right:16px; }
.svc-carousel-dots { position:absolute; bottom:16px; left:50%; transform:translateX(-50%); display:flex; gap:7px; z-index:2; }
.svc-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.45); cursor:pointer; transition:background 0.2s, transform 0.2s; border:none; padding:0; }
.svc-dot.active { background:#fff; transform:scale(1.25); }
@media(max-width:768px) {
  .svc-carousel { border-radius:0; }
  .svc-carousel-slide { aspect-ratio:4/3; }
  .svc-carousel-btn { width:36px; height:36px; font-size:1.1rem; }
}
