/* ============================================================
   MARALAB I&B — Global Stylesheet (Dark Green Theme)
   ============================================================ */

:root {
  --bg:          #0b0d0b;
  --bg-2:        #0f130f;
  --card:        #141914;
  --card-2:      #101410;
  --text:        #f2f4f2;
  --muted:       #c9d0c9;
  --muted-2:     #9aa49a;
  --green:       #2f6f43;
  --green-2:     #2a6240;
  --green-light: #3a8a55;
  --white:       #ffffff;
  --black:       #000000;
  --border:      rgba(255,255,255,.10);
  --radius-lg:   24px;
  --radius-md:   18px;
  --radius-sm:   14px;
  --shadow:      0 12px 36px rgba(0,0,0,.50);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.30);
  --container:   1600px;
  --gap:         32px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 600px at 50% 0%, rgba(42,98,64,.20), transparent 60%),
    linear-gradient(180deg, #070907, var(--bg) 40%, #070907);
  color: var(--text);
  line-height: 1.4;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---- Layout ---- */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.section { padding: 64px 0; }
.section--tight { padding-top: 36px; }
.section--services {
  background: linear-gradient(180deg, transparent, rgba(47,111,67,.07) 45%, transparent);
}

/* ---- Typography ---- */
.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(32px, 3.2vw, 46px);
  margin: 0 0 18px;
  text-align: center;
}
.section-title--left { text-align: left; }
.section-subtitle {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  padding: 11px 20px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: transform .08s ease, filter .2s ease, background .2s ease;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px rgba(47,111,67,.28);
}
.btn--primary:hover { filter: brightness(1.08); }
.btn--ghost {
  background: rgba(255,255,255,.92);
  color: #0b0d0b;
}
.btn--ghost:hover { filter: brightness(.97); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover { background: rgba(255,255,255,.06); }
.btn--pill { border-radius: 999px; }
.btn--lg { padding: 14px 28px; font-size: 13px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__logo-box {
  width: 42px; height: 42px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -.01em;
  color: white;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.brand__sub { font-size: 10px; color: var(--muted-2); letter-spacing: .1em; text-transform: uppercase; }
.nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__link {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.nav__link:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav__link--cta {
  background: var(--green);
  color: white !important;
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 700;
}
.nav__link--cta:hover { filter: brightness(1.08); background: var(--green) !important; }
/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(10,14,10,.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
.nav__item:hover .nav__dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav__dropdown a {
  display: block;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .12s, color .12s;
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover { background: rgba(255,255,255,.05); color: white; }
/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 42px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle-bar {
  display: block;
  height: 2px; width: 18px;
  background: rgba(255,255,255,.85);
  border-radius: 99px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  max-height: 900px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.75)),
    url("images/hero.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 50% 45%, rgba(0,0,0,.10), rgba(0,0,0,.72) 65%),
    linear-gradient(180deg, rgba(0,0,0,.60), rgba(0,0,0,.22) 40%, rgba(0,0,0,.75));
}
.hero__content {
  position: relative;
  padding: 120px 0 140px;
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(47,111,67,.35);
  border: 1px solid rgba(47,111,67,.55);
  color: rgba(255,255,255,.88);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__title {
  margin: 0 0 22px;
  font-family: ui-serif, Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(36px, 4.8vw, 58px);
  text-shadow: 0 12px 28px rgba(0,0,0,.55);
}
.hero__title em { font-style: italic; color: #7dd3c8; }
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero__actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 72px 0 60px;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(42,98,64,.22), transparent 70%);
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
  display: block;
}
.page-hero__title {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0 0 14px;
}
.page-hero__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted-2); transition: color .15s; }
.breadcrumb a:hover { color: white; }
.breadcrumb__sep { opacity: .4; }

/* ============================================================
   STAT CARDS
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(320px, 495px) 1fr;
  gap: 48px;
  align-items: start;
}
.stats { display: grid; gap: var(--gap); }
.stat-card {
  width: 100%;
  max-width: 495px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  box-shadow: 0 20px 48px rgba(0,0,0,.55);
  border: 1px solid var(--border);
}
.stat-card--green {
  background: linear-gradient(160deg, #347a4a, var(--green));
  color: white;
}
.stat-card--white {
  background: white;
  color: #0b0d0b;
  border: 1px solid rgba(0,0,0,.08);
}
.stat-card__big {
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-card__text {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.25;
}

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.locations .section-title { margin-top: 0; }
.locations__grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(300px, 495px));
}
.location-card {
  width: 100%;
  max-width: 495px;
  aspect-ratio: 1 / 1;
  background: rgba(20,25,20,.95);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 20px 48px rgba(0,0,0,.55);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: visible;
  /* make <a> work as card */
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.location-card:hover {
  border-color: rgba(47,111,67,.55);
  transform: translateY(-3px);
  box-shadow: 0 28px 56px rgba(0,0,0,.65);
}
.location-card__title { font-size: 18px; font-weight: 800; margin: 0; }
.location-card__img {
  flex: 1 1 auto;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.location-card__img img { width: 100%; height: 100%; object-fit: cover; }
.location-card__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 10;
}
.chip {
  background: rgba(0,0,0,.65);
  border: 1px solid var(--border);
  padding: 11px 10px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 16px;
  text-align: center;
  line-height: 1.3;
}
.chip--green {
  background: var(--green);
  border-color: rgba(47,111,67,.70);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}
.service-card {
  text-align: center;
}
.service-card__icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 220px;
  margin: 0 auto 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.95);
  color: #0b0d0b;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  font-size: 52px;
}
.service-card__label {
  font-size: 13px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}
.service-card__desc {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 6px;
  line-height: 1.5;
}
.consult {
  margin-top: 40px;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.consult__title { margin: 0 0 10px; font-size: 22px; font-weight: 800; }
.consult__text { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ============================================================
   FEATURE / TWO-COL
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-text .eyebrow { margin-bottom: 10px; }
.feature-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.1;
}
.feature-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.feature-visual {
  background: rgba(20,25,20,.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: var(--green);
  opacity: .1;
  border-radius: 50%;
}

/* Check list */
.check-list { margin: 18px 0; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
  color: var(--muted);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  color: var(--green-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   INFO / DARK CARDS
   ============================================================ */
.dark-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dark-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: border-color .2s;
}
.dark-card:hover { border-color: rgba(47,111,67,.4); }
.dark-card__icon { font-size: 28px; margin-bottom: 14px; }
.dark-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 10px;
}
.dark-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.dark-card a { color: var(--green-light); font-size: 13px; font-weight: 700; margin-top: 14px; display: inline-block; }
.dark-card a:hover { text-decoration: underline; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-card {
  background: rgba(255,255,255,.93);
  color: #0b0d0b;
  border-radius: var(--radius-lg);
  padding: 22px 20px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.08);
  min-height: 210px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,.10);
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--green);
}
.testimonial-card__stars {
  text-align: center;
  font-size: 13px;
  color: #c8822a;
  margin-bottom: 10px;
}
.testimonial-card__quote {
  margin: 0 0 14px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(0,0,0,.70);
  text-align: center;
  font-style: italic;
}
.testimonial-card__name { font-weight: 900; text-align: center; font-size: 13px; }
.testimonial-card__role { text-align: center; font-size: 11px; color: rgba(0,0,0,.50); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, rgba(15,20,15,.9), rgba(20,30,20,.95));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: min(var(--container), calc(100% - 48px));
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 64px;
}
.cta-band h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.cta-band p { color: var(--muted); font-size: 15px; max-width: 500px; margin: 0 auto 28px; line-height: 1.6; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BLOG
   ============================================================ */
.section--blog { padding-top: 54px; }
.blog {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 26px;
  align-items: center;
}
.blog__left { padding-right: 10px; }
.blog__text {
  margin: 14px 0 0;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
}
.blog__card {
  position: relative;
  background: rgba(18,22,18,.75);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.blog__card:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(0,0,0,.65); }
.blog__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: contrast(1.02) brightness(.9);
}
.blog__meta {
  position: absolute;
  top: 14px; left: 16px; right: 80px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 10px 20px rgba(0,0,0,.55);
}
.blog__title { font-weight: 900; font-size: 13px; }
.blog__play {
  position: absolute;
  right: 16px; bottom: 16px;
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(0,0,0,.60);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}
@media (max-width: 900px) {
  .blog { grid-template-columns: 1fr; }
  .blog__left { padding-right: 0; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-shell {
  background: rgba(255,255,255,.97);
  color: #0b0d0b;
  border-radius: 36px;
  padding: 36px 32px 28px;
  box-shadow: 0 22px 54px rgba(0,0,0,.50);
}
.form-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #0b0d0b;
}
.form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row--full { grid-template-columns: 1fr; }
.form input, .form textarea, .form select {
  width: 100%;
  font: inherit;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  background: #fff;
  color: #0b0d0b;
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: rgba(47,111,67,.65);
  box-shadow: 0 0 0 4px rgba(47,111,67,.12);
}
.form textarea { min-height: 130px; resize: vertical; }
.form-actions { display: flex; justify-content: flex-end; margin-top: 8px; }
.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;
}

/* Contact info cards */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 500px;
}
.info-card {
  background: rgba(20,25,20,.90);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 14px;
  box-shadow: var(--shadow-soft);
}
.info-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.info-icon { font-size: 18px; }
.info-card__title { font-weight: 900; font-size: 17px; }
.info-card__body { color: rgba(255,255,255,.80); font-size: 13px; line-height: 1.5; }

/* Map */
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(20,25,20,.6);
  box-shadow: var(--shadow);
  height: 320px;
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Contact layout */
.contact-top__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: start;
}
.page-title {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0 0 12px;
}
.page-subtitle {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.42);
}
.footer__grid {
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.footer__brand-name { font-weight: 900; font-size: 18px; margin-bottom: 4px; }
.footer__brand-sub { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer__desc { font-size: 13px; color: var(--muted-2); line-height: 1.65; max-width: 280px; margin-bottom: 20px; }
.footer__follow-title { font-weight: 900; margin-bottom: 10px; font-size: 14px; }
.social {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  transition: background .15s;
}
.social:hover { background: var(--green); }
.social__icon { font-weight: 900; font-size: 17px; }
.footer__heading { font-weight: 900; margin-bottom: 14px; font-size: 16px; }
.footer__links, .footer__info {
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}
.footer__links a:hover { color: white; text-decoration: underline; }
.footer__info a { color: rgba(255,255,255,.75); }
.footer__info a:hover { color: white; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 14px 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}
.footer__bottom-inner { display: flex; justify-content: center; }

/* ============================================================
   ABOUT — VALUES GRID
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: border-color .2s;
}
.value-card:hover { border-color: rgba(47,111,67,.45); }
.value-card__icon { font-size: 32px; margin-bottom: 14px; }
.value-card h3 { font-size: 15px; font-weight: 800; margin: 0 0 8px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.step {
  text-align: center;
  padding: 24px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.step__num {
  width: 52px; height: 52px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin: 0 auto 16px;
}
.step h3 { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .services { grid-template-columns: 1fr 1fr; }
  .dark-cards { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-visual { height: 280px; }
  .contact-top__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .testimonials { grid-template-columns: 1fr; }
  .dark-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 64px; left: 16px; right: 16px;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(5,8,5,.94);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { display: flex; }
  .nav__dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; background: transparent; border: none; padding-left: 12px; }
  .footer__grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; border-radius: 18px; }
}
@media (max-width: 520px) {
  .hero__actions { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .services { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .locations__grid { grid-template-columns: 1fr; }
}
