/* ============================================================
   BrilhoMax — Design System
   ============================================================ */

:root {
  /* Brand */
  --brand-600: #0B5FFF;
  --brand-700: #0848C7;
  --brand-800: #06348F;
  --brand-50:  #EEF3FF;
  --brand-100: #DDE7FF;

  /* Accent — mint/teal for freshness */
  --mint-500: #00D4B4;
  --mint-600: #00B89B;
  --mint-50:  #E6FBF6;

  /* Neutrals */
  --ink-900: #0A1837;
  --ink-700: #2C3858;
  --ink-500: #5A6783;
  --ink-400: #8B97B3;
  --ink-300: #C2CADC;
  --ink-200: #E2E7F0;
  --ink-100: #EEF1F7;
  --ink-50:  #F6F8FC;
  --white:   #FFFFFF;

  /* Semantic */
  --success: #10B981;
  --warning: #F59E0B;
  --danger:  #EF4444;
  --whatsapp: #25D366;
  --whatsapp-dark: #1FB855;

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 999px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(10, 24, 55, 0.06), 0 1px 1px rgba(10, 24, 55, 0.04);
  --sh-md: 0 4px 16px rgba(10, 24, 55, 0.08), 0 2px 4px rgba(10, 24, 55, 0.04);
  --sh-lg: 0 12px 32px rgba(10, 24, 55, 0.10), 0 4px 12px rgba(10, 24, 55, 0.06);
  --sh-xl: 0 24px 64px rgba(10, 24, 55, 0.16), 0 8px 24px rgba(10, 24, 55, 0.08);
  --sh-brand: 0 12px 32px rgba(11, 95, 255, 0.28), 0 4px 12px rgba(11, 95, 255, 0.16);

  /* Type */
  --font-sans: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .container { padding: 0 20px; }
}

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-full);
  text-transform: uppercase;
}
.eyebrow.mint {
  background: var(--mint-50);
  color: var(--mint-600);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.02; font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.08; font-weight: 800; }
h3 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.2; font-weight: 700; }
h4 { font-size: 18px; line-height: 1.3; font-weight: 700; }

p { margin: 0; color: var(--ink-700); }
.lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--ink-500); text-wrap: pretty; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand-600);
  color: var(--white);
  box-shadow: var(--sh-brand);
}
.btn-primary:hover { background: var(--brand-700); }

.btn-dark {
  background: var(--ink-900);
  color: var(--white);
}
.btn-dark:hover { background: #15234A; }

.btn-ghost {
  background: var(--white);
  color: var(--ink-900);
  box-shadow: inset 0 0 0 1.5px var(--ink-200);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink-300); background: var(--ink-50); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.30), 0 4px 12px rgba(37, 211, 102, 0.18);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(226, 231, 240, 0.6);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-600), var(--mint-500));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: var(--sh-brand);
}
.brand-text .accent { color: var(--brand-600); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 10px 16px;
  border-radius: var(--r-full);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
  transition: background .15s, color .15s;
  background: transparent;
  border: none;
}
.nav-link:hover { background: var(--ink-50); color: var(--ink-900); }
.nav-link.active { background: var(--ink-900); color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  background: var(--ink-50);
  border-radius: var(--r-full);
  padding: 3px;
  border: 1px solid var(--ink-100);
}
.lang-toggle button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  transition: all .15s;
}
.lang-toggle button.active {
  background: var(--white);
  color: var(--ink-900);
  box-shadow: var(--sh-sm);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  .nav { display: none; }
  .header-actions .btn-primary { display: none; }
  .mobile-menu-btn { display: flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  z-index: 49;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  padding: 16px;
  font-size: 18px;
  text-align: left;
  border-radius: var(--r-md);
}
.mobile-menu .nav-link.active { background: var(--brand-50); color: var(--brand-700); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(0, 212, 180, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(11, 95, 255, 0.08), transparent 60%),
    var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 56px 0; }
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-meta {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-meta-item .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.hero-meta-item .label {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
  box-shadow: var(--sh-sm);
}
.meta-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.meta-icon.mint {
  background: var(--mint-50);
  color: var(--mint-600);
}

.hero-visual {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-xl);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge.tl { top: 24px; left: 24px; }
.hero-badge.br { bottom: 24px; right: 24px; }

.hero-badge .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--mint-50);
  color: var(--mint-600);
  display: grid;
  place-items: center;
}
.hero-badge.tl .icon { background: var(--brand-50); color: var(--brand-600); }
.hero-badge .label { font-size: 12px; color: var(--ink-500); }
.hero-badge .value { font-size: 15px; font-weight: 700; color: var(--ink-900); }

/* ============================================================
   Service cards
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--brand-100);
}
.service-card .img-wrap {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
  background: var(--ink-100);
}
.service-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .img-wrap img { transform: scale(1.04); }
.service-card .img-wrap .tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-card h3 { font-size: 22px; }
.service-card .desc { color: var(--ink-500); font-size: 15px; }
.service-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-600);
  font-weight: 600;
  font-size: 14px;
  padding-top: 8px;
}

/* ============================================================
   Why-us / features
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  transition: all .25s;
}
.feature:hover { border-color: var(--brand-100); box-shadow: var(--sh-md); }
.feature .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feature h4 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--ink-500); }

/* ============================================================
   Process steps
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

.step {
  position: relative;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-600), var(--mint-500));
  color: white;
  border-radius: 16px;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: var(--sh-brand);
}
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-500); }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-700), var(--ink-900) 60%, var(--brand-800));
  color: white;
  border-radius: var(--r-2xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(0, 212, 180, 0.35), transparent);
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(closest-side, rgba(11, 95, 255, 0.5), transparent);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: white; max-width: 620px; }
.cta-banner p { color: rgba(255, 255, 255, 0.75); margin-top: 16px; max-width: 540px; font-size: 18px; }
.cta-banner .row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.cta-banner .btn-ghost { background: white; }

@media (max-width: 720px) { .cta-banner { padding: 40px 28px; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.site-footer h5 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-footer .brand { color: white; margin-bottom: 16px; }
.site-footer a, .site-footer button {
  display: block;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  background: none;
  border: none;
  text-align: left;
}
.site-footer a:hover, .site-footer button:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   WhatsApp FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(37, 211, 102, 0.2);
  transition: transform .2s;
  animation: pulse 2.4s ease-out infinite;
}
.wa-fab:hover { transform: scale(1.08); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 12px 32px rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 12px 32px rgba(37, 211, 102, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 12px 32px rgba(37, 211, 102, 0.4); }
}

/* ============================================================
   Page transitions
   ============================================================ */
.page-fade-enter {
  animation: fadeUp .45s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Services page
   ============================================================ */
.page-hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(900px 400px at 90% 10%, rgba(0, 212, 180, 0.08), transparent),
    radial-gradient(900px 400px at 10% 90%, rgba(11, 95, 255, 0.06), transparent),
    var(--white);
  text-align: center;
}
.page-hero h1 { font-size: clamp(40px, 5.5vw, 64px); }
.page-hero .lead { max-width: 640px; margin: 20px auto 0; }

.service-deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.service-deep:nth-child(even) .service-deep-img { order: -1; }
@media (max-width: 880px) {
  .service-deep { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .service-deep:nth-child(even) .service-deep-img { order: 0; }
}

.service-deep-img {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-lg);
  position: relative;
}
.service-deep-img img { width: 100%; height: 100%; object-fit: cover; }
.service-deep .num-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-deep h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
.service-deep .desc { font-size: 17px; color: var(--ink-500); margin-bottom: 24px; line-height: 1.6; }

.checks {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-700);
}
.checks li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: var(--mint-50);
  color: var(--mint-600);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300B89B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip {
  padding: 6px 12px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-full);
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 500;
}

/* ============================================================
   Contact form
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.form-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 40px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--ink-100);
}
@media (max-width: 640px) { .form-card { padding: 28px 22px; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } .form-grid .span-2 { grid-column: 1; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: 0.01em;
}
.field input, .field select, .field textarea {
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink-900);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(11, 95, 255, 0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235A6783' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-info-card {
  background: linear-gradient(160deg, var(--ink-900), #15234A);
  color: white;
  border-radius: var(--r-2xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(closest-side, rgba(0, 212, 180, 0.25), transparent);
}
.contact-info-card > * { position: relative; }
.contact-info-card h3 { color: white; margin-bottom: 24px; font-size: 22px; }

.contact-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: flex-start;
}
.contact-item:last-child { border-bottom: none; }
.contact-item-link {
  text-decoration: none;
  color: inherit;
  padding: 16px 8px 16px 0;
  margin: 0 -8px 0 0;
  border-radius: var(--r-md);
  transition: background .15s;
  align-items: center;
}
.contact-item-link:hover { background: rgba(255, 255, 255, 0.04); padding: 16px 12px 16px 8px; margin: 0 -12px 0 -8px; }
.contact-item-link > svg { color: rgba(255, 255, 255, 0.4); flex-shrink: 0; }
.contact-item .icon {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--mint-500);
}
.contact-item .label { font-size: 12px; color: rgba(255, 255, 255, 0.5); margin-bottom: 2px; }
.contact-item .value { font-size: 15px; color: white; font-weight: 500; }

.wa-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-top: 24px;
  text-align: left;
  width: 100%;
}
.wa-cta:hover { background: rgba(37, 211, 102, 0.18); }
.wa-cta .icon {
  width: 48px; height: 48px;
  background: var(--whatsapp);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}
.wa-cta .label { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.wa-cta .value { font-size: 16px; color: white; font-weight: 700; }

/* ============================================================
   Success state
   ============================================================ */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .icon-wrap {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--mint-50);
  display: grid;
  place-items: center;
  color: var(--mint-600);
  animation: pop .5s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes pop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ============================================================
   Testimonial / stats / map fillers
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
@media (max-width: 720px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  padding: 16px 24px;
  border-right: 1px solid var(--ink-100);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 720px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--ink-100); margin-bottom: 16px; padding-bottom: 24px; }
}
.stat-item .num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-item .num .suf { font-size: 22px; color: var(--brand-600); }
.stat-item .label { font-size: 13px; color: var(--ink-500); margin-top: 4px; }

/* ============================================================
   Home — Category cards (preview) — 6 cards bento grid
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
/* Residential (1) featured big — spans 3 cols, 2 rows */
.category-grid > :nth-child(1) { grid-column: span 3; grid-row: span 2; }
/* Commercial (2), Hospitality (3) — top right and mid right, both span 3 cols */
.category-grid > :nth-child(2) { grid-column: span 3; }
.category-grid > :nth-child(3) { grid-column: span 3; }
/* Specialty (4), Automotive (5), Add-ons (6) — bottom row, each span 2 cols */
.category-grid > :nth-child(4) { grid-column: span 2; }
.category-grid > :nth-child(5) { grid-column: span 2; }
.category-grid > :nth-child(6) { grid-column: span 2; }

@media (max-width: 960px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .category-grid > * { grid-column: span 1 !important; grid-row: auto !important; }
  .category-grid > :nth-child(1) { grid-column: span 2 !important; }
}
@media (max-width: 560px) {
  .category-grid > * { grid-column: span 2 !important; }
}

.category-card {
  position: relative;
  background: var(--ink-200);
  border-radius: var(--r-xl);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: left;
  font-family: inherit;
  color: white;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.category-card .cc-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.category-card .cc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.category-card:hover .cc-img img { transform: scale(1.06); }
.cc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 55, 0) 30%, rgba(10, 24, 55, 0.78) 100%);
}
.cc-emoji {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: var(--r-full);
  font-size: 18px;
  line-height: 1;
  box-shadow: var(--sh-sm);
  z-index: 2;
}
.category-card .cc-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px 22px;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.cc-row h3 {
  font-size: 22px;
  line-height: 1.15;
  color: white;
  text-wrap: balance;
}
.cc-count {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.cc-tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
  line-height: 1.4;
}
.cc-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: flex-start;
}
.cc-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}
.category-card.featured .cc-row h3 { font-size: 30px; }
.category-card.featured .cc-tagline { font-size: 15px; max-width: 480px; }

/* ============================================================
   Services page — Tabs
   ============================================================ */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--ink-200);
  background: white;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  transition: all .15s ease;
}
.cat-tab:hover { border-color: var(--ink-300); color: var(--ink-900); }
.cat-tab.active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: white;
}
.cat-tab-emoji { font-size: 16px; line-height: 1; }

/* ============================================================
   Services page — Category block
   ============================================================ */
.cat-block { margin-bottom: 96px; scroll-margin-top: 88px; }
.cat-block:last-child { margin-bottom: 0; }

.cat-block-head {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .cat-block-head { grid-template-columns: 1fr; gap: 24px; }
}
.cat-block-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid;
  box-shadow: var(--sh-md);
}
.cat-block-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-block-emoji {
  position: absolute;
  top: 14px; left: 14px;
  background: white;
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 20px;
  line-height: 1;
  box-shadow: var(--sh-sm);
}
.cat-block-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Highlights row */
.cat-highlights {
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.cat-highlights-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.cat-highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}
@media (max-width: 760px) { .cat-highlights-list { grid-template-columns: 1fr; } }
.cat-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-700);
  font-weight: 500;
  line-height: 1.5;
}
.cat-highlight-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cat-services-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
}

/* Service cards within a category */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 22px 22px 20px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent, var(--brand-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent, var(--brand-600));
  margin-bottom: 14px;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent, var(--brand-600)) 12%, transparent);
}
.svc-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.svc-card p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.5;
}

/* Photo thumb chips (quote form) */
.photo-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.photo-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--mint-50);
  color: var(--mint-600);
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 600;
  max-width: 200px;
}
.photo-chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Email send status pill in form-success */
.email-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: background .2s, color .2s;
}
.email-status-sending {
  background: var(--ink-50);
  color: var(--ink-700);
}
.email-status-sent {
  background: var(--mint-50);
  color: var(--mint-600);
}
.email-status-error {
  background: #FEF2F2;
  color: var(--danger);
}
.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink-200);
  border-top-color: var(--ink-700);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Careers page
   ============================================================ */
.careers-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 860px) { .careers-cols { grid-template-columns: 1fr; gap: 32px; } }

.careers-col-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.careers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.careers-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.careers-list-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.careers-list-item strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  display: block;
  margin-bottom: 4px;
}
.careers-list-item p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.5;
}

/* Radio cards for employment type */
.radio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 500px) { .radio-row { grid-template-columns: 1fr; } }
.radio-card {
  position: relative;
  padding: 14px 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  background: white;
}
.radio-card:hover { border-color: var(--ink-300); }
.radio-card.selected {
  border-color: var(--brand-600);
  background: var(--brand-50);
  color: var(--brand-700);
  box-shadow: 0 0 0 3px rgba(11, 95, 255, 0.10);
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }

/* CV upload drop zone */
.cv-drop {
  position: relative;
  display: block;
  cursor: pointer;
}
.cv-drop input[type=file] { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.cv-drop-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  border: 1.5px dashed var(--ink-300);
  border-radius: var(--r-md);
  background: var(--ink-50);
  transition: all .15s;
}
.cv-drop:hover .cv-drop-inner {
  border-color: var(--brand-600);
  background: var(--brand-50);
}
.cv-drop-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  color: var(--brand-600);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--sh-sm);
}
.cv-drop-text strong {
  display: block;
  font-size: 15px;
  color: var(--ink-900);
  font-weight: 700;
}
.cv-drop-text span {
  display: block;
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 2px;
}

/* ============================================================
   Acronym grid (C-L-E-N-V-A)
   ============================================================ */
.acronym-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .acronym-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .acronym-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .acronym-grid { grid-template-columns: 1fr; } }

.acronym-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.acronym-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-100);
  box-shadow: var(--sh-md);
}
.acronym-letter {
  font-family: var(--font-display);
  font-size: 76px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand-600), var(--mint-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  display: block;
}
.acronym-card::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 22px;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-600), var(--mint-500));
  opacity: 0.18;
}
.acronym-word {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.acronym-desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* Section header */
.sec-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sec-header h2 { margin-top: 12px; }
.sec-header .lead { margin-top: 16px; }
