:root {
  --bg: #f4f1ea;
  --paper: #fffdf7;
  --white: #ffffff;
  --ink: #13231d;
  --muted: rgba(19, 35, 29, 0.66);
  --green: #0f3d2e;
  --green2: #146b4b;
  --soft: #e7f4ed;
  --line: rgba(15, 61, 46, 0.12);
  --shadow: 0 18px 55px rgba(15, 61, 46, 0.11);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 241, 234, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 16px; background: var(--green); color: white; font-size: 24px; box-shadow: 0 10px 25px rgba(15, 61, 46, .2); }
.brand-mark.light { background: white; color: var(--green); }
.brand small { display: block; margin-top: -3px; font-size: 12px; color: rgba(15,61,46,.65); font-weight: 800; }
.footer .brand small { color: rgba(255,255,255,.58); }
.nav-links { display: flex; gap: 24px; color: rgba(19,35,29,.72); font-weight: 800; font-size: 14px; }
.nav-links a:hover { color: var(--green); }

.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; min-height: 44px; border-radius: 999px; padding: 11px 18px; font-weight: 950; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: white; background: var(--green); box-shadow: 0 14px 30px rgba(15, 61, 46, .18); }
.btn-ghost { background: rgba(255,255,255,.72); border: 1px solid var(--line); }
.btn-white { background: white; color: var(--green); }
.btn-lg { min-height: 54px; border-radius: 18px; padding: 15px 24px; }

.hero { position: relative; overflow: hidden; padding: 68px 0 72px; }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; left: 50%; top: -140px; transform: translateX(-50%); background: rgba(26, 137, 92, .12); filter: blur(24px); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow, .section-head small, .trust-copy small, .contact small { display: inline-flex; width: fit-content; margin: 0 0 18px; border: 1px solid var(--line); background: rgba(255,255,255,.65); color: var(--green); border-radius: 999px; padding: 8px 14px; font-weight: 950; font-size: 13px; letter-spacing: .01em; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(42px, 6vw, 78px); letter-spacing: -.06em; line-height: .96; }
.lead { max-width: 650px; color: var(--muted); font-size: 19px; line-height: 1.75; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.feature-prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 36px; max-width: 720px; }
.feature-prices article, .service-grid article, .region-grid article, .district-box, .table-card, .trust-copy, .contact-card { background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.92); border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-prices article { padding: 16px; }
.feature-prices small { color: rgba(15,61,46,.62); font-weight: 900; }
.feature-prices strong { display: block; min-height: 42px; margin-top: 8px; line-height: 1.2; }
.feature-prices b { display: block; margin-top: 14px; font-size: 22px; color: var(--green); }

.calculator-card { background: var(--green); border-radius: 36px; padding: 16px; box-shadow: 0 28px 70px rgba(15, 61, 46, .22); }
.calculator-card > * { position: relative; }
.calculator-card::before { content: ""; display: block; position: absolute; }
.calculator-card { color: var(--ink); }
.calculator-card .card-head, .calculator-card label, .calculator-card .calc-result, .calculator-card .note { background: var(--paper); }
.card-head { border-radius: 24px 24px 0 0; padding: 22px 22px 8px; display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.card-head small { color: rgba(15,61,46,.65); font-weight: 950; }
.card-head h2 { margin: 4px 0 0; font-size: 27px; letter-spacing: -.03em; }
.card-icon { display: grid; place-items: center; flex: 0 0 auto; width: 50px; height: 50px; border-radius: 18px; background: var(--soft); color: var(--green); font-weight: 950; font-size: 26px; }
.calculator-card label { display: block; padding: 12px 22px 0; font-weight: 900; color: rgba(19,35,29,.72); }
.calculator-card select, .calculator-card input { width: 100%; margin-top: 8px; border: 1px solid var(--line); border-radius: 16px; background: white; outline: none; padding: 13px 14px; font-weight: 850; color: var(--ink); }
.calculator-card select:focus, .calculator-card input:focus { box-shadow: 0 0 0 3px rgba(15,61,46,.14); }
.calc-result { margin: 0; padding: 22px; }
.calc-result span { display: block; color: rgba(19,35,29,.62); font-weight: 850; font-size: 14px; }
.calc-result strong { display: block; font-size: 28px; margin-top: 4px; color: var(--green); }
.calc-result b { display: block; font-size: 42px; letter-spacing: -.04em; margin-top: 4px; color: var(--green); }
.calc-result hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }
.note { margin: 0; border-radius: 0 0 24px 24px; padding: 0 22px 22px; font-size: 12px; color: rgba(19,35,29,.58); font-weight: 750; line-height: 1.6; }


.media-section {
  background:
    linear-gradient(180deg, rgba(244,241,234,.65), rgba(244,241,234,1)),
    url("media/hero-yard.jpg") center/cover no-repeat;
  border-top: 1px solid var(--line);
}
.media-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}
.video-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  background: var(--green);
  box-shadow: 0 28px 70px rgba(15, 61, 46, .22);
}
.video-card video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.62));
  pointer-events: none;
}
.video-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  color: var(--ink);
}
.video-badge strong { display: block; font-size: 18px; }
.video-badge span { display: block; margin-top: 4px; color: var(--muted); font-weight: 750; font-size: 13px; }
.media-copy {
  border-radius: 36px;
  padding: 30px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.media-copy small {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 950;
}
.media-copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -.05em;
}
.media-copy p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.media-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.media-mini-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  margin: 0;
  border-radius: 26px;
  background: var(--soft);
}
.media-mini-grid img,
.gallery-row img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.media-mini-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,.88);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}
.gallery-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.gallery-row img {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(15,61,46,.12);
}

.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.5); padding: 42px 0; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-grid article { padding: 24px; box-shadow: none; }
.service-grid span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: var(--green); color: white; font-size: 25px; }
.service-grid h3 { margin: 18px 0 8px; font-size: 19px; }
.service-grid p { margin: 0; color: var(--muted); line-height: 1.55; }

.section { padding: 78px 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.wide { max-width: 920px; }
.section-head small { text-transform: uppercase; letter-spacing: .22em; background: transparent; border: 0; padding: 0; }
.section-head h2, .trust-copy h2, .contact h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.03; letter-spacing: -.05em; }
.section-head p, .trust-copy p, .contact p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.region-grid article { padding: 24px; }
.region-grid h3 { margin: 0; font-size: 21px; }
.region-grid p { color: var(--muted); line-height: 1.65; min-height: 82px; }
.chips, .districts { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span, .districts a { display: inline-flex; align-items: center; min-height: 32px; border-radius: 999px; padding: 8px 12px; background: var(--soft); color: var(--green); font-weight: 950; font-size: 12px; }
.district-box { margin-top: 18px; padding: 26px; }
.district-box h3 { margin: 0; font-size: 26px; }
.district-box p { color: var(--muted); line-height: 1.65; }
.districts a { background: var(--paper); border: 1px solid var(--line); color: rgba(19,35,29,.75); }
.districts a:hover { background: var(--green); color: white; }

.price-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 18px; }
.tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 3px; }
.tabs button { white-space: nowrap; border: 1px solid var(--line); background: white; border-radius: 999px; padding: 13px 18px; font-weight: 950; color: rgba(19,35,29,.72); cursor: pointer; }
.tabs button.active { background: var(--green); color: white; box-shadow: 0 14px 28px rgba(15,61,46,.16); }
.price-toolbar input { min-width: min(100%, 330px); border: 1px solid var(--line); background: white; border-radius: 18px; padding: 14px 16px; outline: none; font-weight: 800; }
.table-card { overflow: hidden; background: white; }
.accent-line { height: 8px; background: linear-gradient(90deg, #f97316, #fbbf24); }
.table-wrap { overflow-x: auto; }
table { width: 100%; min-width: 760px; border-collapse: collapse; }
th { background: var(--green); color: white; text-align: left; padding: 17px 18px; font-size: 14px; }
td { padding: 15px 18px; border-bottom: 1px solid rgba(15,61,46,.08); font-weight: 780; color: rgba(19,35,29,.78); }
tbody tr:nth-child(even) { background: rgba(231,244,237,.46); }
td:first-child { color: var(--ink); font-weight: 950; }
td strong { color: var(--green); }
.offer-link { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--green); color: white; font-size: 12px; font-weight: 950; }
.table-note { margin: 0; padding: 18px; background: var(--paper); color: rgba(19,35,29,.62); font-size: 14px; font-weight: 750; line-height: 1.6; }

.process { background: var(--green); color: white; padding: 78px 0; }
.section-head.dark small { color: #91e0bd; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-grid article { border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.07); padding: 26px; }
.process-grid b { color: #91e0bd; font-size: 34px; }
.process-grid h3 { margin: 34px 0 10px; font-size: 22px; }
.process-grid p { color: rgba(255,255,255,.68); line-height: 1.6; }

.trust-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.trust-copy { padding: 30px; }
.trust-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.trust-list span { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px; font-weight: 900; color: rgba(19,35,29,.76); }
.trust-list span::before { content: "✓"; color: var(--green); margin-right: 10px; font-weight: 950; }

.contact { background: #e4ded0; padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 36px; align-items: center; }
.contact-card { padding: 26px; }
.contact-card h3 { margin: 0; font-size: 24px; }
.contact-card p { color: var(--muted); }
.map-placeholder { display: grid; place-items: center; min-height: 210px; border: 1px dashed rgba(15,61,46,.25); border-radius: 24px; background: var(--paper); text-align: center; color: var(--green); }
.map-placeholder span { display: block; margin-top: 8px; color: rgba(19,35,29,.56); font-size: 14px; }

.footer { background: var(--green); color: white; padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.footer-links { display: flex; gap: 15px; font-weight: 850; color: rgba(255,255,255,.75); }
.mobile-actions { display: none; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .contact-grid, .trust-grid, .media-grid { grid-template-columns: 1fr; }
  .feature-prices, .service-grid, .region-grid, .process-grid, .gallery-row { grid-template-columns: repeat(2, 1fr); }
  .price-toolbar { align-items: stretch; flex-direction: column; }
  .price-toolbar input { width: 100%; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .video-card, .video-card video { min-height: 460px; }
  .media-copy { padding: 22px; }
  .media-mini-grid, .gallery-row { grid-template-columns: 1fr; }
  .site-header .btn { display: none; }
  .hero { padding: 42px 0 56px; }
  .hero h1 { font-size: 43px; }
  .lead { font-size: 17px; }
  .feature-prices, .service-grid, .region-grid, .process-grid, .trust-list { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; padding-bottom: 60px; }
  .mobile-actions { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .mobile-actions a { display: grid; place-items: center; min-height: 52px; border-radius: 18px; background: var(--green); color: white; font-weight: 950; box-shadow: 0 14px 34px rgba(15,61,46,.26); }
  .mobile-actions a:last-child { background: #18a363; }
}

.district-toggle {
  margin: 8px 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  padding: 12px 18px;
  font-weight: 950;
  cursor: pointer;
}
.districts.is-collapsed { display: none; }
.contact-facts {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.contact-facts li {
  border: 1px solid rgba(15,61,46,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.5);
  padding: 12px 14px;
  color: rgba(19,35,29,.75);
  font-weight: 750;
}
.address-list { display: grid; gap: 14px; }
.address-list article {
  border: 1px solid rgba(15,61,46,.1);
  border-radius: 22px;
  background: var(--paper);
  padding: 18px;
}
.address-list strong { display: block; color: var(--green); font-size: 17px; }
.address-list p { margin: 8px 0 14px; line-height: 1.55; }
.address-list a {
  display: inline-flex;
  border-radius: 999px;
  background: var(--green);
  color: white;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 950;
}


.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.map-card {
  border: 1px solid rgba(15,61,46,.1);
  border-radius: 22px;
  background: var(--paper);
  padding: 16px;
  overflow: hidden;
}
.map-card strong { display: block; color: var(--green); font-size: 16px; }
.map-card p { margin: 8px 0 12px; line-height: 1.45; font-size: 14px; }
.map-card iframe {
  width: 100%;
  height: 170px;
  border: 0;
  border-radius: 16px;
  display: block;
  background: #eee;
}
.map-card a {
  display: inline-flex;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 950;
}
.compact-note { box-shadow: none; background: rgba(255,255,255,.62); }

@media (max-width: 640px) {
  .nav { padding: 12px 0; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 11px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 14px; font-size: 20px; }
  .hero { padding: 34px 0 46px; }
  .eyebrow { font-size: 12px; padding: 8px 11px; }
  .hero h1 { font-size: 34px; line-height: 1.02; letter-spacing: -.04em; }
  .lead { font-size: 15.5px; line-height: 1.62; margin-top: 18px; }
  .btn-lg { min-height: 48px; padding: 0 18px; font-size: 14px; }
  .feature-prices { gap: 10px; margin-top: 26px; }
  .feature-prices article { padding: 13px; }
  .feature-prices strong { min-height: auto; font-size: 14px; }
  .feature-prices b { font-size: 18px; }
  .calculator-card { border-radius: 26px; padding: 11px; }
  .card-head { padding: 18px 18px 6px; }
  .card-head h2 { font-size: 22px; }
  .calculator-card label { padding: 10px 18px 0; font-size: 13px; }
  .calc-result { padding: 18px; }
  .calc-result strong { font-size: 23px; }
  .calc-result b { font-size: 32px; }
  .video-card, .video-card video { min-height: 380px; }
  .video-badge { padding: 14px; border-radius: 18px; }
  .video-badge strong { font-size: 15px; }
  .media-copy h2, .section-head h2, .trust-copy h2, .contact h2 { font-size: 28px; line-height: 1.08; letter-spacing: -.035em; }
  .media-copy p, .section-head p, .trust-copy p, .contact p { font-size: 15px; line-height: 1.58; }
  .strip { padding: 28px 0; }
  .service-grid article, .region-grid article, .district-box, .trust-copy, .contact-card { padding: 18px; border-radius: 22px; }
  .service-grid h3, .region-grid h3 { font-size: 18px; }
  .service-grid p, .region-grid p, .district-box p { font-size: 14px; line-height: 1.5; min-height: auto; }
  .chips span, .districts a { font-size: 11px; min-height: 30px; padding: 7px 10px; }
  .section { padding: 44px 0; }
  .price-toolbar { gap: 10px; }
  .tabs button { padding: 10px 14px; font-size: 12px; }
  .price-toolbar input { padding: 12px 14px; font-size: 13px; }
  table { min-width: 650px; }
  th { padding: 13px 14px; font-size: 12px; }
  td { padding: 12px 14px; font-size: 13px; }
  .table-note { font-size: 12.5px; padding: 14px; }
  .process { padding: 50px 0; }
  .process-grid article { padding: 20px; }
  .process-grid h3 { margin-top: 20px; font-size: 19px; }
  .process-grid p { font-size: 14px; }
  .trust-list span { padding: 14px; font-size: 13.5px; }
  .contact { padding: 48px 0; }
  .contact-facts li { font-size: 13.5px; }
  .address-list strong { font-size: 15px; }
  .address-list p { font-size: 13.5px; }
  .map-grid { grid-template-columns: 1fr; }
  .map-card iframe { height: 145px; }
}


.seo-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.seo-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 950;
  font-size: 13px;
}
.seo-page { background: var(--bg); }
.seo-hero { padding: 64px 0 34px; }
.seo-hero h1 { max-width: 960px; margin: 0; font-size: clamp(38px, 5vw, 66px); letter-spacing: -.055em; line-height: 1; }
.seo-hero p { max-width: 820px; color: var(--muted); font-size: 18px; line-height: 1.72; }
.seo-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 22px; align-items: start; padding-bottom: 70px; }
.seo-content, .seo-side-card { background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.94); border-radius: 28px; box-shadow: var(--shadow); }
.seo-content { padding: 32px; }
.seo-content h2 { margin: 28px 0 10px; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.04em; }
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 { margin: 22px 0 8px; font-size: 22px; }
.seo-content p, .seo-content li { color: var(--muted); line-height: 1.75; font-size: 16px; }
.seo-content ul { padding-left: 20px; }
.seo-side-card { padding: 22px; position: sticky; top: 90px; }
.seo-side-card h2 { margin: 0 0 10px; font-size: 25px; letter-spacing: -.03em; }
.seo-side-card p { color: var(--muted); line-height: 1.6; }
.seo-side-card .btn { width: 100%; margin-top: 10px; }
.seo-mini-list { display: grid; gap: 8px; margin-top: 14px; }
.seo-mini-list span { display: block; border: 1px solid var(--line); background: var(--paper); border-radius: 14px; padding: 10px 12px; font-weight: 850; color: rgba(19,35,29,.76); }
.seo-price-list { display: grid; gap: 10px; margin: 16px 0 24px; }
.seo-price-list div { display: flex; justify-content: space-between; gap: 16px; border: 1px solid var(--line); background: var(--paper); border-radius: 16px; padding: 12px 14px; }
.seo-price-list strong { color: var(--green); }
.seo-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; color: rgba(19,35,29,.55); font-size: 13px; font-weight: 850; }
.seo-breadcrumb a { color: var(--green); }
@media (max-width: 900px) { .seo-layout { grid-template-columns: 1fr; } .seo-side-card { position: static; } }
@media (max-width: 640px) { .seo-hero { padding: 40px 0 24px; } .seo-hero h1 { font-size: 34px; } .seo-hero p { font-size: 15.5px; line-height: 1.62; } .seo-content, .seo-side-card { padding: 20px; border-radius: 22px; } .seo-content p, .seo-content li { font-size: 14.5px; } }

/* V19 mobil hız optimizasyonları */
.media-section {
  background: linear-gradient(180deg, rgba(244,241,234,.65), rgba(244,241,234,1));
}
#saha,
#hizmetler,
#bolgeler,
#fiyatlar,
.process,
.trust-section,
.contact,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
img { content-visibility: auto; }
@media (max-width: 640px) {
  .hero::before { width: 360px; height: 360px; top: -110px; filter: blur(18px); }
  .hero-grid { gap: 28px; }
  .calculator-card { box-shadow: 0 18px 42px rgba(15, 61, 46, .16); }
  .feature-prices article,
  .service-grid article,
  .region-grid article,
  .district-box,
  .table-card,
  .trust-copy,
  .contact-card {
    box-shadow: 0 10px 28px rgba(15, 61, 46, .08);
  }
  .video-card, .video-card video { min-height: 320px; }
}
