
:root {
  --green-950: #053420;
  --green-900: #064125;
  --green-800: #075834;
  --green-700: #0a6f44;
  --green-600: #118256;
  --green-100: #eaf4ee;
  --green-50: #f4fbf6;
  --cream: #fbf6ec;
  --cream-2: #f7f0df;
  --text: #151b18;
  --soft-text: #536058;
  --muted: #718076;
  --line: #dde7e1;
  --surface: #ffffff;
  --surface-2: #f8fbf8;
  --shadow: 0 18px 44px rgba(5, 52, 32, 0.11);
  --shadow-soft: 0 10px 24px rgba(5, 52, 32, 0.08);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1460px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -90px;
  left: 12px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--green-900);
  color: #fff;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.announcement {
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.announcement__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(221,231,225,.82);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 7px 20px rgba(5, 52, 32, 0.06);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}

.brand img {
  width: 236px;
  height: auto;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 54px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  color: #1d2722;
  font-weight: 800;
  letter-spacing: .01em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--green-700);
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-nav a[aria-current="page"] {
  color: var(--green-700);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border: 2px solid var(--green-800);
  border-radius: 14px;
  background: #fff;
  color: var(--green-900);
  box-shadow: var(--shadow-soft);
  min-width: 232px;
}

.header-call__icon,
.btn__icon,
.icon-badge {
  display: inline-grid;
  place-items: center;
  flex: none;
}

.header-call__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
}

.header-call strong {
  display: block;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1;
  letter-spacing: .04em;
}

.header-call span {
  display: block;
  margin-top: 2px;
  color: var(--soft-text);
  font-size: 13px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--green-100);
  color: var(--green-900);
  border-radius: 13px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle.is-active span {
  background: transparent;
}

.nav-toggle.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(10,111,68,.13), transparent 31%),
    linear-gradient(90deg, #fff 0%, #fff 42%, #f7f1e6 75%, #edf5ef 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.70) 42%, rgba(255,255,255,.08) 68%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(370px, .88fr) minmax(540px, 1.28fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: stretch;
  min-height: 420px;
}

.hero__copy {
  padding: clamp(36px, 6vw, 74px) 0 clamp(30px, 5vw, 56px);
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .01em;
}

.eyebrow svg {
  width: 17px;
  height: 17px;
}

.hero h1,
.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: .94;
  letter-spacing: -.055em;
  max-width: 760px;
}

.hero h1 .accent,
.page-hero h1 .accent {
  display: block;
  color: var(--green-700);
}

.hero__lead {
  max-width: 770px;
  margin: 0;
  color: #28342f;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 900;
  line-height: 1.05;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn small {
  display: block;
  margin-top: 3px;
  font-weight: 700;
  opacity: .9;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  box-shadow: 0 14px 26px rgba(6, 65, 37, .22);
}

.btn--primary:hover {
  box-shadow: 0 18px 36px rgba(6, 65, 37, .28);
}

.btn--outline {
  color: var(--green-900);
  border-color: var(--green-700);
  background: rgba(255,255,255,.86);
}

.btn--outline:hover {
  background: var(--green-50);
}

.btn--light {
  background: #fff;
  border-color: var(--line);
  color: var(--green-800);
  box-shadow: var(--shadow-soft);
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  max-width: 850px;
}

.mini-feature {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 11px;
  align-items: center;
  padding: 14px 16px;
  border-left: 1px solid rgba(5,52,32,.12);
}

.mini-feature:first-child {
  border-left: 0;
}

.icon-badge {
  width: 39px;
  height: 39px;
  border-radius: 999px;
  background: #fff;
  color: var(--green-700);
  border: 1px solid var(--line);
}

.mini-feature strong {
  display: block;
  color: var(--green-900);
  font-size: 15px;
}

.mini-feature span {
  display: block;
  color: var(--soft-text);
  font-size: 13px;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero__visual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 88%;
  height: 60%;
  border-radius: 48% 42% 0 0;
  background: radial-gradient(ellipse at center, rgba(6,65,37,.16), transparent 70%);
  z-index: -1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(1.03);
}

.section {
  padding: clamp(42px, 6vw, 74px) 0;
}

.section--tight {
  padding: 34px 0;
}

.section--cream {
  background: linear-gradient(180deg, var(--cream), #fff);
}

.section--green {
  background:
    radial-gradient(circle at 12% 30%, rgba(255,255,255,.13), transparent 35%),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.035em;
}

.section-header p,
.section-intro {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--soft-text);
  font-weight: 650;
}

.section--green .section-kicker,
.section--green .section-title,
.section--green .section-header p {
  color: #fff;
}

.steps-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: -18px;
}

.steps-layout h2 {
  margin: 0;
  max-width: 170px;
  color: var(--green-900);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: .98;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.step-card {
  position: relative;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 13px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -24px;
  top: 50%;
  color: var(--text);
  font-size: 31px;
  transform: translateY(-50%);
}

.step-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-700);
}

.step-card__num {
  position: absolute;
  left: 48px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.step-card h3 {
  margin: 0 0 2px;
  color: var(--green-900);
  font-size: 16px;
}

.step-card p {
  margin: 0;
  color: #47544d;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.split-layout {
  display: grid;
  grid-template-columns: 250px minmax(0,1fr);
  gap: 28px;
  align-items: start;
}

.side-title {
  position: sticky;
  top: 118px;
}

.side-title h2 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.side-title p {
  margin: 0 0 20px;
  color: var(--soft-text);
  font-weight: 650;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10,111,68,.35);
  box-shadow: var(--shadow);
}

.service-card__media {
  aspect-ratio: 1.55 / 1;
  background: var(--cream);
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: 15px 16px 17px;
}

.service-card h3 {
  margin: 0 0 5px;
  color: var(--green-900);
  font-size: 17px;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: #44534b;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.districts-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-block: 10px;
}

.districts-row h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.05;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #26342d;
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.pill--highlight {
  background: var(--green-100);
  color: var(--green-900);
  border-color: rgba(10,111,68,.18);
}

.reasons {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
}

.reason-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 12px;
  align-items: center;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.reason-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--green-100);
  color: var(--green-700);
}

.reason-card h3 {
  margin: 0 0 3px;
  color: var(--green-900);
  font-size: 15px;
}

.reason-card p {
  margin: 0;
  color: #4a594f;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.35;
}

.testimonial-area {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.testimonial-controls {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-800);
  box-shadow: var(--shadow-soft);
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 2px 2px 20px;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 17px;
  box-shadow: var(--shadow-soft);
}

.stars {
  color: #e2aa22;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 1;
}

.testimonial blockquote {
  margin: 10px 0 15px;
  color: #26342d;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.42;
}

.person {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0b6f45, #153d2b);
  font-weight: 950;
}

.person strong {
  display: block;
  color: var(--green-900);
  font-size: 13px;
}

.person span {
  display: block;
  color: var(--soft-text);
  font-size: 12px;
  font-weight: 750;
}

.contact-band {
  padding: 0 0 clamp(42px, 6vw, 74px);
}

.contact-shell {
  display: grid;
  grid-template-columns: .88fr 1.22fr .95fr;
  gap: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-info {
  padding: clamp(24px, 3vw, 38px);
  background: linear-gradient(135deg, var(--cream), #fff);
}

.contact-info h2 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.02;
}

.contact-info p {
  margin: 0 0 24px;
  color: var(--soft-text);
  font-weight: 650;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  gap: 12px;
  align-items: center;
  color: var(--green-900);
  font-weight: 900;
}

.contact-list small {
  display: block;
  color: var(--soft-text);
  font-weight: 700;
}

.contact-form {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  align-content: center;
  gap: 13px;
  border-inline: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.form-field {
  position: relative;
}

.form-field--full {
  grid-column: 1 / -1;
}

label.sr-only,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #dfe8e2;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}

input, select {
  min-height: 44px;
  padding: 0 14px;
}

textarea {
  min-height: 92px;
  padding: 12px 14px;
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(10,111,68,.11);
}

.honeypot {
  display: none;
}

.form-message {
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 800;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  background: var(--green-100);
  color: var(--green-900);
}

.form-message.is-error {
  background: #fff0ec;
  color: #9e2d16;
}

.map-card {
  min-height: 100%;
  background: #edf4ef;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, var(--green-900), var(--green-950));
  color: #fff;
  padding: 0;
  border-radius: 10px 10px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .85fr .9fr 1fr 1.08fr;
  gap: clamp(20px, 3vw, 42px);
  padding: 30px 0 24px;
}

.footer__brand img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer p {
  margin: 12px 0 14px;
  color: rgba(255,255,255,.82);
  font-weight: 650;
  font-size: 14px;
}

.footer h2,
.footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.footer a {
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: 14px;
}

.footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter input {
  min-height: 44px;
  border: 0;
  background: rgba(255,255,255,.16);
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255,255,255,.72);
}

.newsletter button {
  width: 50px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.2);
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: center;
  padding: 12px 0 16px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.page-hero {
  background:
    radial-gradient(circle at 88% 0%, rgba(10,111,68,.16), transparent 34%),
    linear-gradient(135deg, #fff, var(--cream));
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 6vw, 80px) 0;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--soft-text);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 650;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--green-800);
  font-weight: 900;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--green-700);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

.content-card,
.sidebar-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.content-card {
  padding: clamp(22px, 3vw, 36px);
}

.content-card h2 {
  margin: 24px 0 12px;
  color: var(--green-900);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p {
  color: var(--soft-text);
  font-weight: 650;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #2f3d36;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 950;
}

.sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 22px;
}

.sidebar-card h2,
.sidebar-card h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  line-height: 1.1;
}

.sidebar-card p {
  color: var(--soft-text);
  font-weight: 650;
}

.price-note {
  border-left: 5px solid var(--green-700);
  background: var(--green-50);
  border-radius: 14px;
  padding: 18px;
  margin-top: 22px;
  color: var(--green-900);
  font-weight: 850;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.info-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  margin: 0 0 8px;
  color: var(--green-900);
}

.info-card p {
  margin: 0;
  color: var(--soft-text);
  font-weight: 650;
}

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

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card__media {
  aspect-ratio: 1.7 / 1;
  background: var(--cream);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 20px;
}

.blog-card__meta {
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
}

.blog-card h2,
.blog-card h3 {
  margin: 0 0 9px;
  color: var(--green-900);
  font-size: 21px;
  line-height: 1.13;
}

.blog-card p {
  margin: 0 0 14px;
  color: var(--soft-text);
  font-weight: 650;
}

.inline-cta {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
}

.inline-cta h2,
.inline-cta p {
  margin: 0;
  color: #fff;
}

.inline-cta p {
  opacity: .82;
  font-weight: 650;
}

@media (max-width: 1320px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reason-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }
}

@media (max-width: 1100px) {
  .announcement__inner {
    justify-content: center;
  }

  .announcement__inner span {
    text-align: center;
  }

  .announcement__inner a {
    display: none;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-call {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: calc(82px + 32px);
    left: 20px;
    right: 20px;
    display: none;
    justify-self: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: grid;
    gap: 3px;
    justify-content: stretch;
  }

  .main-nav a {
    padding: 12px 10px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__copy {
    padding-bottom: 0;
  }

  .hero::before {
    background: rgba(255,255,255,.55);
  }

  .hero__visual {
    min-height: 300px;
  }

  .steps-layout,
  .split-layout,
  .districts-row,
  .reasons,
  .testimonial-area,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-title,
  .sidebar {
    position: static;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-form {
    border-inline: 0;
    border-block: 1px solid var(--line);
  }

  .map-card {
    min-height: 290px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .blog-grid,
  .cards-3 {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 198px;
  }

  .hero__badges {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mini-feature {
    border-left: 0;
    padding-inline: 0;
  }

  .hero__actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .section-header {
    display: block;
  }

  .section-header .btn {
    margin-top: 16px;
  }

  .steps,
  .services-grid,
  .reason-grid,
  .blog-grid,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    grid-auto-columns: 86%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    max-width: 420px;
  }

  .footer__bottom {
    justify-content: flex-start;
  }

  .inline-cta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* Dinamik sistem ek stilleri */
.map-card {
  position: relative;
  overflow: hidden;
}

.map-card__pin {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  color: var(--green-800);
  filter: drop-shadow(0 6px 12px rgba(5,52,32,.25));
}

.map-card__label {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(76%, 260px);
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  color: var(--green-900);
  text-align: center;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.status-alert {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.detail-media {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.detail-media img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.district-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.district-card-grid .info-card {
  min-height: 150px;
}

@media (max-width: 1100px) {
  .district-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .district-card-grid {
    grid-template-columns: 1fr;
  }
}
