/* ============================================================================
   MAMAK BAYMAK KOMBİ SERVİSİ — UNIFIED STYLESHEET
   One file. 71 pages. All powered by these tokens.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------------------- */
:root {
  /* Brand greens */
  --green-900: #0F3D2E;
  --green-700: #1B5E3F;
  --green-600: #2E7D4F;
  --green-500: #3FA060;
  --green-100: #E8F3EC;
  --green-50:  #F4F9F5;

  /* Neutrals */
  --ink-900: #0F1A14;
  --ink-700: #2C3A33;
  --ink-500: #6B7872;
  --ink-300: #C9D1CC;
  --ink-100: #EEF2EF;
  --ink-50:  #F7F9F7;
  --white:   #FFFFFF;

  /* Accents */
  --whatsapp:    #25D366;
  --whatsapp-dk: #1DA851;
  --warn-amber:  #F59E0B;
  --warn-amber-dk: #D97706;

  /* Typography */
  --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --container:   1280px;
  --gutter:      24px;
  --gutter-sm:   16px;
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(15, 26, 20, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 26, 20, 0.06);
  --shadow:    0 8px 24px rgba(15, 26, 20, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 26, 20, 0.12);
  --shadow-cta:0 8px 24px rgba(46, 125, 79, 0.32);

  /* Motion */
  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t:      220ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 360ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Header heights — used by sticky offsets */
  --h-trust:  36px;
  --h-header: 80px;
}

/* ----------------------------------------------------------------------------
   2. RESET + BASE
   ---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--h-trust) + var(--h-header) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ----------------------------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.25rem, 4.4vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem);  font-weight: 700; }
h3 { font-size: clamp(1.125rem, 1.6vw, 1.375rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.0625rem; font-weight: 600; line-height: 1.4; }

p { color: var(--ink-700); }
.lead { font-size: 1.125rem; line-height: 1.65; color: var(--ink-700); max-width: 60ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-600);
  margin-bottom: 0.75rem;
}

.text-green { color: var(--green-600); }
.text-muted { color: var(--ink-500); }

/* ----------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   ---------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (max-width: 640px) { .container { padding-inline: var(--gutter-sm); } }

.section {
  padding-block: clamp(48px, 7vw, 96px);
}
.section--tight { padding-block: clamp(32px, 5vw, 64px); }
.section--green-50 { background: var(--green-50); }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.section__head .eyebrow { color: var(--green-600); }
.section__head h2 { margin-bottom: 0.75rem; }
.section__head p { color: var(--ink-500); font-size: 1.0625rem; }

/* ----------------------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.005em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t), background-color var(--t), color var(--t), border-color var(--t);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 1.125em; height: 1.125em; flex: none; }

.btn--lg { padding: 1.0625rem 1.875rem; font-size: 1rem; }
.btn--md { padding: 0.75rem 1.375rem; font-size: 0.9375rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

.btn--primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(46,125,79,0.4); }

.btn--ghost {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--ink-100);
}
.btn--ghost:hover { border-color: var(--green-600); color: var(--green-600); transform: translateY(-1px); }

.btn--white {
  background: var(--white);
  color: var(--green-700);
}
.btn--white:hover { background: var(--green-50); transform: translateY(-1px); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
}
.btn--whatsapp:hover { background: var(--whatsapp-dk); transform: translateY(-1px); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }

/* ----------------------------------------------------------------------------
   6. TIER 1 — TRUST STRIP (top dark green bar)
   ---------------------------------------------------------------------------- */
.trust-strip {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  font-weight: 500;
  height: var(--h-trust);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 30;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
}
.trust-strip__list {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.trust-strip__list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.trust-strip__list li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: none;
  background: var(--green-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='black' d='M14.3 4.3 6 12.6l-4.3-4.3 1.4-1.4L6 9.8l6.9-6.9z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='black' d='M14.3 4.3 6 12.6l-4.3-4.3 1.4-1.4L6 9.8l6.9-6.9z'/></svg>") center / contain no-repeat;
}
.trust-strip__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-strip__phone {
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--t-fast);
}
.trust-strip__phone:hover { color: var(--green-100); }
.trust-strip__phone .icon { width: 14px; height: 14px; }

@media (max-width: 1024px) {
  .trust-strip__list li:nth-child(n+3) { display: none; }
}
@media (max-width: 768px) {
  .trust-strip__list { display: none; }
  .trust-strip__inner { justify-content: center; }
  .trust-strip__contact .btn { display: none; }
}

/* ----------------------------------------------------------------------------
   7. TIER 2 — MAIN HEADER
   ---------------------------------------------------------------------------- */
.site-header {
  background: var(--white);
  height: var(--h-header);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--ink-100);
  transition: box-shadow var(--t);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex: none;
}
.logo__icon {
  width: 36px;
  height: 36px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--green-600);
}
.logo__icon svg { width: 100%; height: 100%; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}
.logo__sub {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Main nav */
.main-nav__list {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.main-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.main-nav__link:hover { color: var(--green-600); background: var(--green-50); }
.main-nav__link.is-active { color: var(--green-700); }
.main-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0.875rem; right: 0.875rem;
  bottom: 2px;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
}

.header-cta { flex: none; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  flex: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .logo__sub { display: none; }
  .logo__brand { font-size: 1.375rem; }
}

/* ----------------------------------------------------------------------------
   8. MOBILE NAV DRAWER
   ---------------------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: var(--white);
  z-index: 60;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head {
  background: var(--green-700);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav__head .logo__brand { color: var(--white); }
.mobile-nav__head .logo__sub { color: rgba(255,255,255,0.7); }
.mobile-nav__close {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--white);
  border-radius: var(--radius-sm);
}
.mobile-nav__close:hover { background: rgba(255,255,255,0.12); }
.mobile-nav__list { padding: 1rem 0.5rem; flex: 1; }
.mobile-nav__list li a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-900);
  border-radius: var(--radius-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-nav__list li a:hover, .mobile-nav__list li a.is-active {
  background: var(--green-50);
  color: var(--green-700);
}
.mobile-nav__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--ink-100);
  display: grid;
  gap: 0.75rem;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 20, 0.5);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.scrim.is-visible { opacity: 1; pointer-events: auto; }

/* ----------------------------------------------------------------------------
   9. HERO
   ---------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 50%, var(--green-50) 0%, transparent 60%),
    var(--white);
  padding-block: clamp(48px, 6vw, 80px) clamp(96px, 10vw, 140px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--ink-100) 1px, transparent 1px),
                    linear-gradient(90deg, var(--ink-100) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__content { max-width: 600px; }
.hero__title {
  font-size: clamp(2.25rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero__title span { color: var(--green-600); display: inline-block; }
.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  line-height: 1.65;
  color: var(--ink-700);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero__micro {
  font-size: 0.875rem;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__micro::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(63, 160, 96, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(63, 160, 96, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(63, 160, 96, 0.05); }
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 8% -4% 8% 8%;
  background: var(--green-100);
  border-radius: 50%;
  z-index: 0;
  filter: blur(2px);
}
.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-50), var(--green-100));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}
.hero__image-wrap svg { width: 80%; height: 80%; }

/* Warranty seal */
.warranty-seal {
  position: absolute;
  top: -8%;
  right: -6%;
  width: clamp(96px, 12vw, 132px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: var(--ink-900);
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
  font-family: var(--font-display);
  transform: rotate(-8deg);
  border: 4px solid var(--white);
}
.warranty-seal__year {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1;
  display: block;
}
.warranty-seal__label {
  font-size: clamp(0.625rem, 0.8vw, 0.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 4px;
  line-height: 1.1;
  padding: 0 8px;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin: 0 auto; max-width: 360px; order: -1; aspect-ratio: 1 / 1; }
  .hero__content { text-align: center; margin: 0 auto; }
  .hero__lead { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__micro { justify-content: center; }
}

/* ----------------------------------------------------------------------------
   10. TRUST BAR (5-feature lifted card)
   ---------------------------------------------------------------------------- */
.trust-bar {
  position: relative;
  margin-top: -64px;
  z-index: 5;
}
.trust-bar__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  border: 1px solid var(--ink-100);
}
.trust-feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-right: 1px solid var(--ink-100);
}
.trust-feature:last-child { border-right: 0; }
.trust-feature__icon {
  width: 48px; height: 48px;
  flex: none;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.trust-feature__icon svg { width: 24px; height: 24px; }
.trust-feature__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink-900);
  margin-bottom: 2px;
  line-height: 1.2;
}
.trust-feature__sub {
  font-size: 0.8125rem;
  color: var(--ink-500);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .trust-bar { margin-top: -32px; }
  .trust-bar__card { grid-template-columns: repeat(3, 1fr); }
  .trust-feature:nth-child(3) { border-right: 0; }
  .trust-feature:nth-child(n+4) { border-top: 1px solid var(--ink-100); padding-top: 1rem; }
}
@media (max-width: 640px) {
  .trust-bar { margin-top: 0; }
  .trust-bar__card { grid-template-columns: repeat(2, 1fr); padding: 1rem; }
  .trust-feature { border-right: 0 !important; padding: 0.5rem; }
  .trust-feature:nth-child(odd) { border-right: 1px solid var(--ink-100) !important; }
  .trust-feature:nth-child(n+3) { border-top: 1px solid var(--ink-100); padding-top: 0.875rem; }
  .trust-feature:nth-child(5) { grid-column: 1 / -1; border-right: 0 !important; }
  .trust-feature__icon { width: 40px; height: 40px; }
  .trust-feature__label { font-size: 0.875rem; }
}

/* ----------------------------------------------------------------------------
   11. THREE-COLUMN: SERVICES / ABOUT / REGIONS
   ---------------------------------------------------------------------------- */
.three-col__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  gap: clamp(20px, 2.4vw, 32px);
  align-items: stretch;
}

.svc-card, .reg-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.svc-card__head, .reg-card__head {
  background: var(--green-700);
  color: var(--white);
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.svc-card__head h3, .reg-card__head h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.svc-card__head .icon, .reg-card__head .icon { width: 18px; height: 18px; opacity: 0.85; }

.svc-list { padding: 0.5rem; flex: 1; }
.svc-list li a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  color: var(--ink-900);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background var(--t-fast), color var(--t-fast), padding var(--t-fast);
}
.svc-list li a:hover {
  background: var(--green-50);
  color: var(--green-700);
  padding-left: 1.25rem;
}
.svc-list .svc-icon {
  width: 36px; height: 36px;
  flex: none;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
}
.svc-list .svc-icon svg { width: 18px; height: 18px; }
.svc-list .arrow {
  margin-left: auto;
  color: var(--ink-300);
  transition: transform var(--t), color var(--t);
  font-size: 1.125rem;
}
.svc-list li a:hover .arrow { transform: translateX(4px); color: var(--green-600); }

/* About column */
.about-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
}
.about-block h2 { margin-bottom: 0.25rem; }
.about-block p { font-size: 0.9375rem; line-height: 1.65; }
.check-list { display: grid; gap: 0.625rem; margin-top: 0.5rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ink-700);
}
.check-list li::before {
  content: "";
  width: 18px; height: 18px;
  flex: none;
  background: var(--green-600);
  border-radius: 50%;
  margin-top: 3px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='black' d='M14 4 6 12 2 8l1.4-1.4L6 9.2 12.6 2.6z'/></svg>") center / 70% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='black' d='M14 4 6 12 2 8l1.4-1.4L6 9.2 12.6 2.6z'/></svg>") center / 70% no-repeat;
  background-color: var(--white);
  box-shadow: inset 0 0 0 18px var(--green-600);
}

/* Regions card */
.reg-grid {
  padding: 1rem 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.125rem 1rem;
  flex: 1;
  align-content: start;
}
.reg-grid a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-700);
  border-radius: var(--radius-sm);
  transition: background var(--t-fast), color var(--t-fast);
  line-height: 1.3;
}
.reg-grid a::before {
  content: "›";
  color: var(--green-600);
  font-weight: 700;
  flex: none;
}
.reg-grid a:hover { background: var(--green-50); color: var(--green-700); }

@media (max-width: 1024px) {
  .three-col__grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .reg-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------------------
   12. WHY US (4 feature cards)
   ---------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 28px);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature-card__icon {
  width: 56px; height: 56px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: var(--radius);
  display: grid; place-items: center;
  margin-bottom: 0.25rem;
}
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.125rem; }
.feature-card p { font-size: 0.9375rem; line-height: 1.55; color: var(--ink-500); }

@media (max-width: 1024px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .feature-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------------------
   13. FAQ ACCORDION
   ---------------------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item[open] { border-color: var(--green-100); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-900);
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-700); }
.faq-item summary::after {
  content: "+";
  width: 28px; height: 28px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  flex: none;
  transition: transform var(--t), background var(--t);
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--green-600);
  color: var(--white);
}
.faq-item__body {
  padding: 0 1.5rem 1.25rem;
  color: var(--ink-700);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ----------------------------------------------------------------------------
   14. FINAL CTA BANNER
   ---------------------------------------------------------------------------- */
.final-cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(63,160,96,0.4), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(15,61,46,0.6), transparent 50%),
    var(--green-700);
  color: var(--white);
  padding-block: clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  margin-bottom: 1rem;
}
.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}
.final-cta__buttons {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------------------
   15. FOOTER
   ---------------------------------------------------------------------------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.78);
  padding-top: clamp(48px, 6vw, 72px);
  font-size: 0.9375rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.125rem;
  position: relative;
  padding-bottom: 0.625rem;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--green-500);
}
.site-footer ul { display: grid; gap: 0.625rem; }
.site-footer a {
  color: rgba(255,255,255,0.78);
  transition: color var(--t-fast), padding var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.site-footer a:hover { color: var(--white); padding-left: 4px; }

.site-footer__brand p { color: rgba(255,255,255,0.7); margin-top: 0.875rem; line-height: 1.6; }
.site-footer__brand .logo__brand { color: var(--white); }
.site-footer__brand .logo__sub { color: rgba(255,255,255,0.6); }

.contact-list { display: grid; gap: 0.875rem; }
.contact-list li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  line-height: 1.5;
}
.contact-list .icon {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex: none;
  color: var(--green-500);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.25rem;
  font-size: 0.8125rem;
}
.site-footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------------------
   16. FLOATING CTAs (desktop)
   ---------------------------------------------------------------------------- */
.float-cta {
  position: fixed;
  bottom: 24px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem 0.875rem 0.875rem;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t), box-shadow var(--t);
  animation: floatIn 600ms 800ms cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
@keyframes floatIn {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.float-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.18); }
.float-cta__icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: grid; place-items: center;
  flex: none;
}
.float-cta__icon svg { width: 20px; height: 20px; }
.float-cta__text { display: flex; flex-direction: column; line-height: 1.1; }
.float-cta__text strong { font-size: 0.9375rem; font-weight: 700; }
.float-cta__text small { font-size: 0.75rem; opacity: 0.85; margin-top: 2px; }

.float-cta--phone { left: 24px; background: var(--green-600); }
.float-cta--phone:hover { background: var(--green-700); }
.float-cta--whatsapp { right: 24px; background: var(--whatsapp); animation-delay: 1000ms; }
.float-cta--whatsapp:hover { background: var(--whatsapp-dk); }

@media (max-width: 1024px) {
  .float-cta { padding: 0.75rem; }
  .float-cta__text { display: none; }
  .float-cta__icon { background: transparent; }
  .float-cta--phone { left: 16px; bottom: 80px; }
  .float-cta--whatsapp { right: 16px; bottom: 80px; }
}
@media (max-width: 768px) {
  .float-cta--phone { display: none; } /* phone moves into bottom bar */
}

/* ----------------------------------------------------------------------------
   17. MOBILE STICKY BOTTOM BAR
   ---------------------------------------------------------------------------- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 35;
  background: var(--white);
  border-top: 1px solid var(--ink-100);
  padding: 0.5rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.mobile-bottom-bar a {
  flex: 1;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--white);
}
.mobile-bottom-bar__btn--call { background: var(--green-600); }
.mobile-bottom-bar__btn--wa { background: var(--whatsapp); }
.mobile-bottom-bar a .icon { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 76px; }
  .float-cta--whatsapp { display: none; } /* covered by bottom bar */
}

/* ----------------------------------------------------------------------------
   18. SLIM HERO (for service pages, district pages, info pages)
   ---------------------------------------------------------------------------- */
.slim-hero {
  background:
    radial-gradient(ellipse at 80% 50%, var(--green-100) 0%, transparent 50%),
    var(--green-50);
  padding-block: clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.slim-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--ink-100) 1px, transparent 1px),
                    linear-gradient(90deg, var(--ink-100) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, black, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}
.slim-hero__inner { position: relative; max-width: 820px; }
.slim-hero h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: 0.875rem;
}
.slim-hero p { font-size: 1.0625rem; color: var(--ink-700); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--ink-500);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--green-700); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { opacity: 0.5; }

/* ----------------------------------------------------------------------------
   19. UTILITIES
   ---------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.no-scroll { overflow: hidden; }

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

/* Print */
@media print {
  .trust-strip, .site-header, .float-cta, .mobile-bottom-bar, .final-cta { display: none !important; }
  body { color: black; }
}

/* ============================================================
   ARCHETYPE HELPERS — used by Service / District / Info pages
   (Referenced from REDESIGN-GUIDE.md)
   ============================================================ */

/* Narrow container variant for long-form prose */
.container.narrow { max-width: 820px; }

/* Soft-tinted section background */
.section-soft { background: var(--green-50); }

/* Section title used at top of standalone sections */
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}

/* Hero CTA button cluster */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Slim-hero supporting elements */
.slim-hero .lede {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-700);
  max-width: 640px;
  margin: 1rem 0 0;
}

/* Two-column layout: main content + side card */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* Prose — auto-typography for migrated content */
.prose { color: var(--ink-700); font-size: 1.0625rem; line-height: 1.75; }
.prose h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--ink-900);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink-900);
  margin: 2rem 0 0.75rem;
}
.prose p { margin: 0 0 1.25rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--green-600); }
.prose strong { color: var(--ink-900); font-weight: 600; }

/* Side card — sticky trust/CTA panel for service pages */
.side-card {
  position: sticky;
  top: 120px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(15, 61, 46, 0.06);
}
.side-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 0.5rem;
}
.side-card p {
  font-size: 0.9375rem;
  color: var(--ink-700);
  margin: 0 0 1rem;
}
.side-card .btn { margin-bottom: 0.5rem; }
.side-card .check-list { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--ink-100); }
.side-card .check-list li { font-size: 0.9375rem; }

/* Block button modifier */
.btn-block { display: flex; width: 100%; justify-content: center; }

/* Region grid — for district pages "nearby districts" */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.625rem;
}
.region-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  color: var(--ink-900);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.18s ease;
}
.region-link::before {
  content: '›';
  color: var(--green-600);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.region-link:hover {
  border-color: var(--green-600);
  color: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 125, 79, 0.12);
}

.service-hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(80px, 9vw, 120px);
  background:
    radial-gradient(circle at 20% 30%, rgba(63,160,96,.16), transparent 35%),
    linear-gradient(135deg, #F4F9F5 0%, #FFFFFF 55%, #E8F3EC 100%);
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,26,20,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,26,20,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .55;
}

.service-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 420px;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.service-hero__content {
  max-width: 720px;
}

.service-hero__content h1 {
  margin-bottom: 1rem;
}

.service-hero__card {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,209,204,.7);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(15,26,20,.14);
}

.content-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .service-hero__grid {
    grid-template-columns: 1fr;
  }

  .service-hero__card {
    padding: 24px;
  }
}

.region-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;

  max-height: 320px;
  overflow-y: auto;
  padding-right: 6px;
}

.region-grid a {
  display: block;
  padding: 10px 12px;
  background: #f7f7f7;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  transition: .2s;
}

.region-grid a:hover {
  background: #3FA060;
  color: #fff;
}

.reg-card .reg-grid {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
}
