:root {
  /* ---- Color: emerald/jade palette matched to empowerers.co (#29AB87) ---- */
  --primary: #0f3d33;      /* deep emerald — header, footer, dark sections */
  --primary-700: #164a3e;  /* emerald, one step lighter (hover/panels on dark) */
  --primary-600: #1d5b4b;
  --secondary: #2f9e7d;    /* mid teal-green — links, secondary accents */
  --accent: #29ab87;       /* empowerers.co brand green — WhatsApp / primary action */
  --accent-600: #1f8f70;
  --accent-100: #e1f5ee;
  --amber: #b6791f;        /* used sparingly for "review pending" style badges */

  --bg: #f7faf9;
  --surface: #ffffff;
  --surface-alt: #eef6f3;
  --border: #dceae5;
  --border-strong: #bfdad1;

  --text: #14251f;
  --text-soft: #3a5049;
  --muted: #5e7a72;
  --muted-soft: #93aaa2;
  --on-dark: #eaf4f0;
  --on-dark-muted: #9dbfb2;

  /* ---- Type ---- */
  --font-display: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  /* ---- Radius / shadow ---- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 61, 51, 0.07);
  --shadow-md: 0 8px 24px rgba(15, 61, 51, 0.10);
  --shadow-lg: 0 20px 48px rgba(15, 61, 51, 0.16);

  /* ---- Layout ---- */
  --container: 1200px;
  --container-narrow: 800px;
  --section-y: clamp(56px, 8vw, 104px);
  --gutter: clamp(20px, 4vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3, h4 { font-weight: 700; }

p { margin: 0; }

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout primitives ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

.section-alt {
  background: var(--surface-alt);
}

.section-dark {
  background: var(--primary);
  color: var(--on-dark);
}
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-600);
  background: var(--accent-100);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-dark .eyebrow {
  background: rgba(41, 171, 135, 0.18);
  color: #7fe0c2;
}

h2.section-title {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 56ch;
}
.section-dark .section-sub { color: var(--on-dark-muted); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover {
  background: var(--accent-600);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-700);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--surface);
}

.section-dark .btn-outline,
.hero .btn-outline,
.page-hero .btn-outline,
.cta-section .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}
.section-dark .btn-outline:hover,
.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.cta-section .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--secondary);
  padding: 13px 6px;
}
.btn-ghost:hover { color: var(--primary); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ---------- Cards ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ---------- Grid helpers ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.page-hero {
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(40px, 6vw, 64px);
  background: linear-gradient(180deg, var(--primary) 0%, #0a2b23 100%);
  color: #fff;
}
.page-hero .eyebrow { background: rgba(41, 171, 135,0.18); color: #7fe0c2; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 48px); margin-bottom: 14px; }
.page-hero p { color: var(--on-dark-muted); max-width: 62ch; font-size: 17px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

.announcement-bar {
  background: var(--primary);
  color: var(--on-dark-muted);
}
.announcement-bar p {
  max-width: var(--container);
  margin-inline: auto;
  padding: 7px var(--gutter);
  font-size: 12.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  text-align: center;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18.5px;
  color: var(--primary);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-soft);
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav-link:hover { color: var(--primary); background: var(--surface-alt); }
.nav-link.is-active { color: var(--primary); background: var(--surface-alt); }

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

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--primary);
  cursor: pointer;
}

.nav-mobile {
  display: none;
}

@media (max-width: 940px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-whatsapp { display: none; }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    padding-inline: var(--gutter);
    border-top: 1px solid var(--border);
    transition: max-height 0.28s ease, padding-block 0.28s ease;
  }
  .nav-mobile.is-open {
    max-height: 480px;
    padding-block: 16px 20px;
  }
  .nav-mobile nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .nav-mobile-link {
    font-weight: 600;
    font-size: 15.5px;
    color: var(--text-soft);
    padding: 12px 6px;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-link.is-active { color: var(--accent-600); }
}

@media (min-width: 941px) {
  .nav-mobile { display: none !important; }
}
.site-footer {
  background: var(--primary);
  color: var(--on-dark-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-block: clamp(48px, 6vw, 72px) 40px;
}

.footer-logo { color: #fff; margin-bottom: 14px; }
.footer-logo .brand-mark { background: rgba(255,255,255,0.12); }

.footer-desc {
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background-color 0.15s ease;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-social a:hover { background: var(--accent); }

.footer-col h4 {
  color: #fff;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
}
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; }
.footer-hours, .footer-address { line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.floating-whatsapp:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
}

.floating-whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
  animation: wa-pulse 2.4s ease-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp-pulse { animation: none; display: none; }
}

@media (max-width: 600px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
}
.hero {
  background: linear-gradient(180deg, var(--primary) 0%, #0a2b23 100%);
  color: #fff;
  padding-block: clamp(52px, 8vw, 96px) clamp(76px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 12%, rgba(41, 171, 135, 0.22), transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy .eyebrow {
  background: rgba(41, 171, 135, 0.18);
  color: #7fe0c2;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(32px, 4.6vw, 50px);
  margin-block: 18px 18px;
}

.hero-sub {
  color: var(--on-dark-muted);
  font-size: 17.5px;
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-microtrust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--on-dark-muted);
}
.hero-microtrust .dot { color: var(--accent); }

.hero-visual {
  position: relative;
}

@media (max-width: 940px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 460px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .hero-actions .btn { flex: 1; justify-content: center; }
}
.hero-slider {
  position: relative;
  width: 100%;
}

.hero-slider-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary-700);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(47,93,143,0.35), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px),
    var(--primary-700);
  color: var(--on-dark-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 61, 51, 0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: background-color 0.15s ease;
}
.hero-slider-arrow:hover { background: rgba(41, 171, 135, 0.85); }
.hero-slider-arrow.prev { left: 12px; }
.hero-slider-arrow.next { right: 12px; }

.hero-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.15s ease, width 0.15s ease;
}
.dot.is-active {
  background: #fff;
  width: 20px;
  border-radius: var(--radius-pill);
}

/* Signature: floating account-health readout */
.hero-health-card {
  position: absolute;
  left: -18px;
  bottom: -22px;
  width: 176px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
}
.hero-health-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.hero-health-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-100);
}
.hero-health-score {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 34px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}
.hero-health-score span {
  font-size: 15px;
  color: var(--muted-soft);
  font-weight: 500;
}
.hero-health-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
  padding-block: 4px;
  border-top: 1px dashed var(--border);
}
.hero-health-row strong {
  font-family: var(--font-mono);
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero-slider { display: flex; flex-direction: column; }
  .hero-health-card {
    position: static;
    width: 100%;
    margin-top: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 18px;
    padding: 14px 16px;
  }
  .hero-health-head { display: none; }
  .hero-health-score {
    font-size: 24px;
    margin-bottom: 0;
  }
  .hero-health-row {
    border-top: none;
    padding-block: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .hero-health-row span { font-size: 10.5px; color: var(--muted-soft); }
  .hero-health-row strong { font-size: 14px; }
}
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 22px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }

.trust-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 20px;
  color: var(--primary);
}
.trust-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: 16px; }
}
.service-card {
  position: relative;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-color: var(--border);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(41, 171, 135, 0.16), var(--shadow-md);
  border-color: var(--border-strong);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-600);
  background: var(--accent-100);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(41, 171, 135, 0.28);
  transition: transform 0.22s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.07) rotate(-3deg);
}

.service-title {
  font-size: 18.5px;
  margin-bottom: 8px;
  transition: color 0.18s ease;
}
.service-card:hover .service-title {
  color: var(--accent-600);
}

.service-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  margin-bottom: 18px;
}
.service-price-label {
  font-size: 12px;
  color: var(--muted-soft);
}
.service-price-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent-600);
}
.service-price-value small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin-left: 2px;
}

.service-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.service-card-actions .btn { flex: 1; justify-content: center; }
.service-card-actions .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-600);
  background: var(--accent-100);
}

.services-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(41, 171, 135, 0.09), transparent 65%);
  pointer-events: none;
}
.services-section .container { position: relative; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
}
.why-section { background: var(--surface); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}

.why-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
}
.why-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.why-item h3 { font-size: 16px; margin-bottom: 5px; }
.why-item p { color: var(--muted); font-size: 14px; line-height: 1.6; }

@media (max-width: 720px) {
  .why-grid { grid-template-columns: 1fr; }
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  position: relative;
  padding: 26px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
}

.process-step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: #7fe0c2;
  background: rgba(41, 171, 135, 0.18);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.process-step h3 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.process-step p { color: var(--on-dark-muted); font-size: 14px; line-height: 1.6; }

.process-connector {
  display: none;
}

@media (max-width: 940px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.portfolio-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.portfolio-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--primary-700);
  overflow: hidden;
}
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-thumb-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(47,93,143,0.35), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px),
    var(--primary-700);
  color: var(--on-dark-muted);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.portfolio-meta { padding: 16px 18px 20px; }
.portfolio-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-600);
  background: var(--accent-100);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  margin-bottom: 9px;
}
.portfolio-meta h3 { font-size: 16px; margin-bottom: 6px; }
.portfolio-meta p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

@media (max-width: 980px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 61, 51, 0.82);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lightbox-image { position: relative; aspect-ratio: 16/10; background: var(--primary-700); }
.lightbox-image img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-placeholder { font-size: 15px; }

.lightbox-caption { padding: 20px 24px 26px; }
.lightbox-caption h3 { font-size: 19px; margin-block: 6px 8px; }
.lightbox-caption p { color: var(--muted); font-size: 14.5px; }

.lightbox-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 61, 51,0.6);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 61, 51,0.55);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-nav.prev { left: 12px; }
.lightbox-nav.next { right: 12px; }

@media (max-width: 560px) {
  .lightbox { padding: 12px; }
}
.testimonial-section { background: var(--surface-alt); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 24px;
  background: var(--surface);
}
.testimonial-quote-icon { color: var(--accent); opacity: 0.6; margin-bottom: 12px; }
.testimonial-card blockquote {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
}
.testimonial-card figcaption { display: flex; flex-direction: column; }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--primary); }
.testimonial-role { font-size: 12.5px; color: var(--muted); }

@media (max-width: 980px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
.faq-section { background: var(--surface); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  overflow: hidden;
}
.faq-item.is-open { border-color: var(--border-strong); background: var(--surface); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); color: var(--accent); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq-answer p {
  overflow: hidden;
  padding-inline: 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.is-open .faq-answer p {
  padding-bottom: 18px;
}
.cta-section {
  background: var(--primary);
  background-image: radial-gradient(circle at 85% 20%, rgba(41, 171, 135, 0.22), transparent 55%);
  color: #fff;
  padding-block: clamp(48px, 7vw, 76px);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-copy h2 { color: #fff; margin-bottom: 10px; }
.cta-copy p { color: var(--on-dark-muted); max-width: 52ch; }

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
}
.contact-form {
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-soft);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
  border-color: var(--secondary);
}

.contact-success {
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}
.contact-success h3 { margin-bottom: 10px; }
.contact-success p { color: var(--muted); margin-bottom: 18px; }

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--on-dark-muted);
  margin-bottom: 18px;
}
.back-link:hover { color: #fff; }

.service-detail-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.service-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  flex-shrink: 0;
}
.service-detail-hero h1 { margin: 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.detail-block { margin-bottom: 40px; }
.detail-block h2 { font-size: 22px; margin-bottom: 18px; }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-soft);
}
.check-list svg { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

.mini-steps { display: flex; flex-direction: column; gap: 16px; }
.mini-steps li { display: flex; gap: 16px; align-items: flex-start; }
.mini-steps span {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent-600);
  background: var(--accent-100);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.mini-steps p { color: var(--text-soft); font-size: 15px; padding-top: 4px; }

.detail-note {
  background: #fdf6e8;
  border: 1px solid #eddaa4;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 14px;
  color: #7a5a12;
  margin-bottom: 40px;
}

.mini-faq { display: flex; flex-direction: column; gap: 18px; }
.mini-faq h3 { font-size: 15.5px; margin-bottom: 6px; }
.mini-faq p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.service-detail-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card { padding: 24px; }
.price-card-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 34px;
  color: var(--primary);
  margin-block: 6px 10px;
}
.price-card-value small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  margin-left: 4px;
}
.price-note { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-bottom: 18px; }
.price-card-secondary { margin-top: 10px; }

.related-card { padding: 22px; }
.related-card h3 { font-size: 15px; margin-bottom: 14px; }
.related-card ul { display: flex; flex-direction: column; gap: 10px; }
.related-card a { font-size: 14px; color: var(--secondary); font-weight: 600; }
.related-card a:hover { color: var(--primary); }

@media (max-width: 980px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; }
}
@media (max-width: 560px) {
  .service-detail-heading { flex-direction: column; align-items: flex-start; }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.about-pillar svg { color: var(--accent); margin-bottom: 12px; }
.about-pillar h3 { font-size: 16px; margin-bottom: 8px; }
.about-pillar p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .about-pillars { grid-template-columns: 1fr; }
}
.wcp-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wcp-item {
  display: flex;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.wcp-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.wcp-item h3 { font-size: 15.5px; margin-bottom: 6px; }
.wcp-item p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

@media (max-width: 940px) {
  .wcp-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .wcp-list { grid-template-columns: 1fr; }
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.whatsapp-callout {
  padding: 22px;
  background: var(--accent-100);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.whatsapp-callout svg { color: var(--accent-600); }
.whatsapp-callout h3 { font-size: 16px; margin-bottom: 4px; }
.whatsapp-callout p { font-size: 13.5px; color: var(--text-soft); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-details svg { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.contact-details span { display: block; font-size: 12px; color: var(--muted-soft); margin-bottom: 3px; }
.contact-details a, .contact-details p { font-size: 14.5px; color: var(--text-soft); font-weight: 600; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.legal-hero p { color: var(--on-dark-muted); font-family: var(--font-mono); font-size: 13px; }

.legal-body h2 {
  font-size: 19px;
  margin-block: 32px 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.legal-body li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.legal-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.legal-placeholder-note {
  background: var(--surface-alt);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
}
.work-preview { background: var(--surface); }
.work-preview-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.results-copy h2 { color: #fff; }
.results-copy p { color: var(--on-dark-muted); }

.results-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.results-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #fff;
}
.results-card svg { color: #7fe0c2; margin-bottom: 12px; }
.results-card h3 { color: #fff; font-size: 15.5px; margin-bottom: 7px; }
.results-card p { color: var(--on-dark-muted); font-size: 13.5px; line-height: 1.6; }

@media (max-width: 940px) {
  .results-grid { grid-template-columns: 1fr; }
  .results-cards { grid-template-columns: 1fr; }
}
