@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #102f35;
  --ink-soft: #416269;
  --deep: #082b31;
  --deep-2: #0d3a41;
  --green: #37bd8e;
  --green-dark: #18856d;
  --mint: #dff8ec;
  --lime: #c9f36b;
  --sand: #f4f1e8;
  --paper: #fbfcf8;
  --white: #ffffff;
  --line: rgba(16, 47, 53, 0.13);
  --shadow: 0 24px 65px rgba(10, 45, 51, 0.13);
  --shadow-sm: 0 12px 35px rgba(10, 45, 51, 0.09);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--deep); background: var(--lime); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--deep);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 68px 0; }
.section-dark { color: var(--white); background: var(--deep); }
.section-mint { background: var(--mint); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.section-dark .eyebrow { color: var(--lime); }
h1, h2, h3, h4 { margin: 0 0 .7em; font-family: "Manrope", sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.2em; }
.lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.75; }
.section-dark .lead { color: rgba(255,255,255,.72); }
.muted { color: var(--ink-soft); }
.small { font-size: .88rem; }
.center { text-align: center; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head > div:first-child { max-width: 760px; }
.section-head p { max-width: 480px; }

.topbar { padding: 9px 0; color: rgba(255,255,255,.86); background: var(--deep); font-size: .83rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-note { display: flex; align-items: center; gap: 8px; }
.topbar-links { display: flex; gap: 18px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--lime); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(251,252,248,.88);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 26px rgba(10,45,51,.06); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--deep); text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.brand-word { font: 800 1.15rem/1 "Manrope", sans-serif; letter-spacing: -.03em; }
.brand-word small { display: block; margin-top: 5px; color: var(--green-dark); font: 700 .58rem/1 "DM Sans", sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink); font-size: .93rem; font-weight: 650; text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; color: var(--deep); background: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--deep);
  background: var(--lime);
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(110, 150, 29, .18); }
.btn-dark { color: var(--white); background: var(--deep); }
.btn-green { color: var(--white); background: var(--green-dark); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.68); }
.btn-ghost-light { border-color: rgba(255,255,255,.22); color: var(--white); background: rgba(255,255,255,.08); }
.btn-sm { min-height: 42px; padding-inline: 17px; font-size: .89rem; }
.btn-block { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero { position: relative; overflow: hidden; padding: 72px 0 88px; }
.hero::before {
  position: absolute;
  inset: 0 0 auto auto;
  width: 47vw;
  height: 100%;
  content: "";
  opacity: .11;
  background-image: radial-gradient(circle at 1px 1px, var(--deep) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 62px; }
.hero h1 span { color: var(--green-dark); }
.hero-copy .lead { max-width: 680px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 30px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: rgba(255,255,255,.68); font-size: .87rem; font-weight: 650; }
.badge i { color: var(--green-dark); }
.hero-visual { position: relative; min-height: 570px; }
.hero-image { position: absolute; inset: 0 0 34px 46px; overflow: hidden; border-radius: 36px; box-shadow: var(--shadow); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 50%, rgba(7,38,43,.6)); }
.floating-card { position: absolute; left: 0; bottom: 0; z-index: 2; width: min(310px, 84%); padding: 22px; border: 1px solid rgba(255,255,255,.5); border-radius: 20px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.floating-card strong { display: block; margin-bottom: 5px; font: 800 1.1rem "Manrope", sans-serif; }
.floating-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.floating-card .icon { float: right; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 14px; color: var(--deep); background: var(--lime); }
.hero-stat { position: absolute; right: -16px; top: 40px; z-index: 2; padding: 16px 18px; border-radius: 18px; color: var(--white); background: var(--deep); box-shadow: var(--shadow-sm); }
.hero-stat strong { display: block; font: 800 1.25rem "Manrope", sans-serif; }
.hero-stat span { color: rgba(255,255,255,.72); font-size: .78rem; }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 25px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item i { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border-radius: 12px; color: var(--green-dark); background: var(--mint); }
.trust-item strong { display: block; font: 800 .95rem "Manrope", sans-serif; }
.trust-item span { color: var(--ink-soft); font-size: .79rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card, .price-card, .feature-card, .info-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset; }
.service-card { position: relative; overflow: hidden; min-height: 330px; padding: 28px; }
.service-card::before { position: absolute; right: -65px; top: -65px; width: 180px; height: 180px; border-radius: 50%; content: ""; background: var(--mint); }
.service-card > * { position: relative; }
.service-icon { display: grid; width: 58px; height: 58px; margin-bottom: 40px; place-items: center; border-radius: 18px; color: var(--white); background: var(--deep); font-size: 1.25rem; }
.service-card p { color: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 800; text-decoration: none; }
.text-link:hover { gap: 12px; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 68px; }
.photo-stack { position: relative; min-height: 560px; }
.photo-main { position: absolute; inset: 0 70px 48px 0; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); }
.photo-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-small { position: absolute; right: 0; bottom: 0; width: 52%; overflow: hidden; border: 9px solid var(--paper); border-radius: 24px; box-shadow: var(--shadow-sm); }
.photo-small img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.check-list { display: grid; gap: 14px; margin: 28px 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; }
.check-list i { display: grid; width: 26px; height: 26px; flex: 0 0 26px; place-items: center; border-radius: 50%; color: var(--deep); background: var(--lime); font-size: .72rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: steps; }
.step { position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.055); counter-increment: steps; }
.step::before { display: grid; width: 42px; height: 42px; margin-bottom: 28px; place-items: center; border-radius: 50%; color: var(--deep); background: var(--lime); content: counter(steps, decimal-leading-zero); font: 800 .78rem "Manrope", sans-serif; }
.step p { margin: 0; color: rgba(255,255,255,.67); font-size: .92rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { position: relative; display: flex; min-height: 390px; flex-direction: column; padding: 28px; transition: transform .2s ease, box-shadow .2s ease; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.price-card.featured { color: var(--white); background: var(--deep); }
.price-card .tag { position: absolute; right: 22px; top: 22px; padding: 7px 10px; border-radius: 999px; color: var(--deep); background: var(--lime); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.price-card .price { margin: 8px 0 18px; font: 800 clamp(2rem, 4vw, 3.2rem) "Manrope", sans-serif; letter-spacing: -.05em; }
.price-card .price small { color: var(--ink-soft); font: 600 .82rem "DM Sans", sans-serif; letter-spacing: 0; }
.price-card.featured .price small, .price-card.featured p { color: rgba(255,255,255,.67); }
.price-card ul { display: grid; gap: 11px; margin: 18px 0 28px; padding: 0; list-style: none; }
.price-card li { display: flex; gap: 10px; font-size: .91rem; }
.price-card li i { margin-top: 5px; color: var(--green-dark); }
.price-card.featured li i { color: var(--lime); }
.price-card .btn { margin-top: auto; }
.price-note { max-width: 850px; margin: 28px auto 0; color: var(--ink-soft); text-align: center; font-size: .87rem; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { padding: 25px; }
.feature-card i { display: grid; width: 46px; height: 46px; margin-bottom: 24px; place-items: center; border-radius: 14px; color: var(--green-dark); background: var(--mint); }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

.service-area { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border-radius: 30px; background: var(--deep); box-shadow: var(--shadow); }
.area-copy { padding: clamp(34px, 6vw, 72px); color: var(--white); }
.area-copy p { color: rgba(255,255,255,.7); }
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.area-tags span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.07); font-size: .82rem; }
.map-shell { position: relative; min-height: 470px; background: #d7e6dd; }
.map-placeholder { position: absolute; inset: 0; display: grid; place-items: center; padding: 32px; text-align: center; background:
  linear-gradient(rgba(223,248,236,.84), rgba(223,248,236,.84)),
  radial-gradient(circle at 20% 20%, #8dbda8 0 4px, transparent 5px),
  linear-gradient(38deg, transparent 46%, rgba(16,47,53,.16) 47% 49%, transparent 50%);
  background-size: auto, 55px 55px, 140px 140px;
}
.map-placeholder i { display: grid; width: 62px; height: 62px; margin: 0 auto 18px; place-items: center; border-radius: 20px; color: var(--white); background: var(--green-dark); font-size: 1.5rem; }
.map-shell iframe { width: 100%; height: 100%; min-height: 470px; border: 0; }

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; border: 0; color: var(--ink); background: transparent; text-align: left; font: 800 1.05rem "Manrope", sans-serif; }
.faq-question i { transition: transform .2s ease; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 34px 24px 4px; color: var(--ink-soft); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

.contact-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-panel { padding: 38px; border-radius: 28px; color: var(--white); background: var(--deep); }
.contact-panel p { color: rgba(255,255,255,.7); }
.contact-list { display: grid; gap: 16px; margin-top: 32px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row i { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border-radius: 13px; color: var(--deep); background: var(--lime); }
.contact-row strong { display: block; }
.contact-row a, .contact-row span { color: rgba(255,255,255,.72); text-decoration: none; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: #fcfdfb;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 125px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-dark); box-shadow: 0 0 0 4px rgba(55,189,142,.12); }
.check-field { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--ink-soft); }
.check-field input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--green-dark); }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 12px; font-size: .88rem; }
.form-status.show { display: block; }
.form-status.success { color: #0d684f; background: #e2f8ef; }
.form-status.error { color: #8c2e2e; background: #fde7e7; }
.honeypot { position: absolute !important; left: -9999px !important; }

.cta-band { overflow: hidden; border-radius: 30px; color: var(--white); background: var(--green-dark); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 38px; padding: 48px; }
.cta-inner::after { position: absolute; right: -70px; top: -100px; width: 330px; height: 330px; border: 55px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { max-width: 650px; margin-bottom: 0; font-size: clamp(1.8rem, 3.2vw, 3rem); }

.site-footer { padding: 72px 0 24px; color: rgba(255,255,255,.74); background: #061f24; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .7fr .7fr 1fr; gap: 44px; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { max-width: 390px; margin-top: 20px; }
.footer-col h3 { color: var(--white); font-size: .95rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 10px; padding: 0; list-style: none; }
.footer-links a { color: rgba(255,255,255,.68); text-decoration: none; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .79rem; }

.modal { position: fixed; inset: 0; z-index: 3000; display: none; padding: 24px; place-items: center; background: rgba(5,28,32,.68); backdrop-filter: blur(8px); }
.modal.open { display: grid; }
.modal-dialog { position: relative; width: min(720px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; padding: 34px; border-radius: 26px; background: var(--white); box-shadow: 0 30px 100px rgba(0,0,0,.28); }
.modal-close { position: absolute; right: 18px; top: 18px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--paper); }
.modal-dialog h2 { padding-right: 50px; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.modal-note { padding: 14px; border-radius: 13px; color: var(--ink-soft); background: var(--mint); font-size: .86rem; }

.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 5000; display: none; max-width: 980px; margin: auto; padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; color: var(--white); background: rgba(6,31,36,.97); box-shadow: 0 25px 80px rgba(0,0,0,.28); }
.cookie-banner.show { display: block; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-copy h3 { margin-bottom: 5px; font-size: 1.1rem; }
.cookie-copy p { margin: 0; color: rgba(255,255,255,.68); font-size: .85rem; }
.cookie-copy a { color: var(--lime); }
.cookie-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 8px; }
.cookie-settings { display: none; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.cookie-settings.open { display: grid; gap: 12px; }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-option small { display: block; color: rgba(255,255,255,.58); }
.switch { position: relative; width: 48px; height: 27px; flex: 0 0 48px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: rgba(255,255,255,.2); transition: .2s; }
.switch span::before { position: absolute; left: 4px; top: 4px; width: 19px; height: 19px; border-radius: 50%; content: ""; background: var(--white); transition: .2s; }
.switch input:checked + span { background: var(--green); }
.switch input:checked + span::before { transform: translateX(21px); }
.switch input:disabled + span { opacity: .6; }

.legal-hero { padding: 70px 0; color: var(--white); background: var(--deep); }
.legal-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 6vw, 5rem); }
.legal-hero p { max-width: 760px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.legal-meta span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.07); font-size: .78rem; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 780px); align-items: start; justify-content: center; gap: 70px; }
.legal-toc { position: sticky; top: 112px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.legal-toc strong { display: block; margin-bottom: 12px; font: 800 .85rem "Manrope", sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.legal-toc a { display: block; padding: 7px 0; color: var(--ink-soft); font-size: .85rem; text-decoration: none; }
.legal-toc a:hover { color: var(--green-dark); }
.legal-content h2 { margin-top: 2em; scroll-margin-top: 118px; font-size: 1.8rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 1.7em; font-size: 1.2rem; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-callout { margin: 24px 0; padding: 20px; border-left: 4px solid var(--green-dark); border-radius: 0 14px 14px 0; background: var(--mint); }
.table-wrap { overflow-x: auto; margin: 22px 0; border: 1px solid var(--line); border-radius: 16px; }
.legal-table { width: 100%; border-collapse: collapse; min-width: 650px; background: var(--white); }
.legal-table th, .legal-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .88rem; }
.legal-table th { background: #eff7f1; font-family: "Manrope", sans-serif; }
.legal-table tr:last-child td { border-bottom: 0; }

.toast { position: fixed; right: 20px; bottom: 20px; z-index: 6000; display: none; max-width: 360px; padding: 15px 17px; border-radius: 14px; color: var(--white); background: var(--deep); box-shadow: var(--shadow); }
.toast.show { display: block; animation: toast-in .25s ease; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 1050px) {
  .nav-links { position: fixed; left: 20px; right: 20px; top: 96px; display: none; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-toggle { display: grid; place-items: center; }
  .nav > .btn { display: none; }
  .hero-grid, .split, .contact-wrap, .service-area { grid-template-columns: 1fr; }
  .hero-visual { min-height: 540px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 34px; }
  .legal-toc { position: static; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 72px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .topbar-links { display: none; }
  .topbar-inner { justify-content: center; }
  .nav { min-height: 70px; }
  .brand img { width: 38px; height: 38px; }
  .hero { padding-top: 52px; }
  .hero-grid { gap: 42px; }
  .hero-visual { min-height: 440px; }
  .hero-image { inset: 0 0 38px 20px; border-radius: 26px; }
  .hero-stat { right: 3px; top: 20px; }
  .floating-card { padding: 18px; }
  .trust-grid, .card-grid, .pricing-grid, .feature-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .photo-stack { min-height: 460px; }
  .photo-main { inset: 0 35px 55px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-panel, .contact-form { padding: 27px; }
  .cta-inner { display: block; padding: 34px; }
  .cta-inner .button-row { margin-top: 25px; }
  .footer-bottom { display: block; }
  .cookie-inner { display: block; }
  .cookie-actions { margin-top: 16px; }
  .cookie-actions .btn { flex: 1 1 auto; }
  .modal { padding: 12px; }
  .modal-dialog { padding: 27px 20px; border-radius: 20px; }
  .legal-hero { padding: 54px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.section-head-narrow { display: block; max-width: 820px; margin-inline: auto; }
.button-row-center { justify-content: center; }
.status-screen { min-height: 100vh; display: grid; place-items: center; }
.status-container { max-width: 760px; }
.status-container-sm { max-width: 700px; }
.status-icon { margin: 0 auto 26px; color: var(--deep); background: var(--lime); }
.status-title { font-size: clamp(2.7rem, 8vw, 5.5rem); }
ul.hero-badges, ul.area-tags { padding: 0; list-style: none; }

/* Mobile and touch refinements */
html, body { max-width: 100%; overflow-x: hidden; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
.nav-toggle, .btn, .faq-question, .modal-close { touch-action: manipulation; }

@media (max-width: 1050px) {
  .nav-links {
    max-height: calc(100dvh - 118px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links a { display: block; padding: 10px 4px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2.45rem, 12vw, 4.15rem); }
  h2 { font-size: clamp(2rem, 9vw, 3.2rem); }
  h3 { line-height: 1.2; }
  .container { width: min(100% - 24px, var(--max)); }
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .section-head { margin-bottom: 30px; }
  .topbar { padding: 8px 0; }
  .topbar-note { text-align: center; line-height: 1.35; }

  .site-header { backdrop-filter: blur(12px); }
  .nav { min-height: 66px; gap: 12px; }
  .brand { min-width: 0; gap: 9px; }
  .brand img { width: 36px; height: 36px; flex: 0 0 36px; }
  .brand-word { font-size: 1rem; white-space: nowrap; }
  .brand-word small { font-size: .5rem; letter-spacing: .11em; }
  .nav-toggle { width: 46px; height: 46px; flex: 0 0 46px; }
  .nav-links { left: 12px; right: 12px; top: 82px; padding: 14px 18px; border-radius: 18px; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }

  .hero { padding: 42px 0 58px; }
  .hero::before { width: 100%; height: 54%; }
  .hero-grid { gap: 34px; }
  .hero-copy .lead { line-height: 1.6; }
  .hero-badges { margin: 22px 0 24px; gap: 8px; }
  .badge { padding: 8px 11px; font-size: .81rem; }
  .hero .button-row { display: grid; grid-template-columns: 1fr; }
  .hero .button-row .btn { width: 100%; }
  .hero-visual { min-height: 0; display: grid; gap: 0; padding: 0; }
  .hero-image { position: relative; inset: auto; min-height: 340px; aspect-ratio: 4 / 3; border-radius: 24px; }
  .hero-image img { object-position: 58% center; }
  .hero-stat { top: 14px; right: 14px; max-width: calc(100% - 28px); padding: 12px 14px; border-radius: 14px; }
  .hero-stat strong { font-size: 1.05rem; }
  .hero-stat span { display: block; line-height: 1.35; }
  .floating-card { position: relative; left: auto; bottom: auto; width: calc(100% - 24px); margin: -36px auto 0; padding: 18px; }

  .trust-item { padding: 19px 14px; }
  .service-card, .price-card, .feature-card, .info-card { border-radius: 20px; }
  .service-card { min-height: 0; padding: 23px; }
  .pricing-grid { gap: 16px; }
  .price-card { padding: 23px; }
  .feature-card { padding: 22px; }

  .photo-stack { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .photo-main, .photo-small { position: relative; inset: auto; width: auto; height: auto; border-radius: 20px; }
  .photo-main { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .photo-small { aspect-ratio: 4 / 3; grid-column: 2; margin-top: -54px; border: 6px solid var(--paper); }
  .photo-main img, .photo-small img { width: 100%; height: 100%; object-fit: cover; }

  .steps { gap: 14px; }
  .step { padding: 22px; }
  .area-tags { gap: 8px; }
  .area-tags li { padding: 8px 11px; font-size: .82rem; }

  .contact-wrap { gap: 16px; }
  .contact-panel, .contact-form { padding: 22px; border-radius: 20px; }
  .contact-row { align-items: flex-start; }
  .contact-row a, .contact-row span { overflow-wrap: anywhere; }
  .field input, .field select, .field textarea { font-size: 16px; }

  .map-shell { min-height: 330px; }
  .map-placeholder { padding: 22px; }

  .cta-band { border-radius: 22px; }
  .cta-inner { padding: 28px 22px; }
  .cta-inner::after { opacity: .65; }
  .cta-inner .button-row { display: grid; grid-template-columns: 1fr; }
  .cta-inner .btn { width: 100%; }

  .site-footer { padding-top: 56px; }
  .footer-grid { gap: 28px; }
  .footer-bottom { margin-top: 34px; line-height: 1.6; }

  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 16px; border-radius: 18px; max-height: calc(100dvh - 16px); overflow-y: auto; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-actions .btn { width: 100%; }
  .cookie-option { align-items: flex-start; }

  .modal { align-items: end; padding: 0; }
  .modal-dialog { width: 100%; max-height: 92dvh; padding: 28px 18px 22px; border-radius: 24px 24px 0 0; }
  .modal-close { right: 14px; top: 14px; }
  .modal-dialog h2 { padding-right: 44px; }

  .legal-layout { gap: 24px; }
  .legal-toc { padding: 18px; }
  .legal-content { min-width: 0; }
  .table-wrap { margin-inline: -4px; }
}

@media (max-width: 430px) {
  .container { width: min(100% - 20px, var(--max)); }
  .brand-word small { display: none; }
  .hero-image { min-height: 300px; aspect-ratio: 1 / 1; }
  .hero-stat { position: relative; top: auto; right: auto; margin: 10px 0 0; }
  .floating-card { width: 100%; margin-top: 10px; }
  .photo-stack { grid-template-columns: 1fr; }
  .photo-small { grid-column: 1; margin: 0; border: 0; aspect-ratio: 16 / 10; }
  .btn { min-height: 48px; padding-inline: 16px; }
  .contact-panel, .contact-form, .price-card, .service-card { padding: 20px; }
  .legal-hero h1 { font-size: clamp(2.2rem, 12vw, 3.25rem); }
}

/* Motion, interaction and capsule spacing refinements */
.badge,
.price-card .tag,
.area-tags li,
.area-tags span,
.legal-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  line-height: 1.35;
  white-space: normal;
  text-align: center;
}

.badge {
  min-height: 40px;
  padding: 10px 16px;
}

.price-card .tag {
  min-height: 32px;
  padding: 8px 14px;
  line-height: 1.2;
}

.area-tags {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.area-tags li,
.area-tags span {
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  font-size: .82rem;
}

.legal-meta span {
  min-height: 36px;
  padding: 9px 14px;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.btn::after {
  position: absolute;
  inset: -60% auto -60% -55%;
  z-index: -1;
  width: 42%;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease, opacity .2s ease;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--green-dark);
  transition: right .25s ease;
}

.text-link,
.text-link i,
.service-icon,
.feature-card i,
.trust-item i,
.contact-row i,
.check-list i,
.map-placeholder i,
.hero-image img,
.photo-main img,
.photo-small img {
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}

.service-card,
.feature-card,
.info-card,
.trust-item,
.step,
.contact-panel,
.contact-form,
.faq-item,
.cta-band,
.map-shell {
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease, background-color .35s ease;
}

.hero::before {
  animation: pattern-drift 18s linear infinite;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .hero-badges,
.hero-copy .button-row {
  opacity: 0;
  animation: intro-up .72s cubic-bezier(.2,.75,.25,1) forwards;
}

.hero-copy h1 { animation-delay: .08s; }
.hero-copy .lead { animation-delay: .17s; }
.hero-copy .hero-badges { animation-delay: .26s; }
.hero-copy .button-row { animation-delay: .35s; }
.hero-image { animation: intro-scale .9s .12s cubic-bezier(.2,.75,.25,1) both; }
.hero-stat { animation: intro-right .75s .42s cubic-bezier(.2,.75,.25,1) both, gentle-float 5s 1.25s ease-in-out infinite; }
.floating-card { animation: intro-left .75s .5s cubic-bezier(.2,.75,.25,1) both, gentle-float 5.7s 1.4s ease-in-out infinite reverse; }

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .72s cubic-bezier(.2,.75,.25,1), transform .72s cubic-bezier(.2,.75,.25,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-left { transform: translate3d(-32px, 0, 0); }
.reveal-on-scroll.reveal-right { transform: translate3d(32px, 0, 0); }
.reveal-on-scroll.reveal-scale { transform: scale(.955); }
.reveal-on-scroll.revealed { opacity: 1; transform: none; }

.modal.open { animation: modal-backdrop-in .28s ease both; }
.modal.open .modal-dialog { animation: modal-dialog-in .42s cubic-bezier(.2,.75,.25,1) both; }
.cookie-banner.show { animation: cookie-in .46s cubic-bezier(.2,.75,.25,1) both; }
.nav-links.open { animation: menu-in .3s cubic-bezier(.2,.75,.25,1) both; }
.faq-question[aria-expanded="true"] + .faq-answer { animation: faq-fade .3s ease both; }
.map-placeholder i { animation: map-pulse 2.8s ease-in-out infinite; }

@media (hover: hover) and (pointer: fine) {
  .btn:hover::after { left: 115%; opacity: 1; }
  .nav-links a:hover::after,
  .nav-links a.active::after { right: 0; }
  .service-card.revealed:hover,
  .service-card:hover,
  .feature-card.revealed:hover,
  .feature-card:hover,
  .info-card.revealed:hover,
  .info-card:hover,
  .step.revealed:hover,
  .step:hover {
    transform: translateY(-8px);
    border-color: rgba(55,189,142,.35);
    box-shadow: 0 22px 48px rgba(10,45,51,.12);
  }
  .trust-item.revealed:hover,
  .trust-item:hover { background: rgba(223,248,236,.42); }
  .service-card:hover .service-icon,
  .feature-card:hover i,
  .trust-item:hover i,
  .contact-row:hover i { transform: translateY(-3px) rotate(-4deg) scale(1.05); }
  .service-card:hover::before { transform: scale(1.12); }
  .service-card::before { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
  .hero-image:hover img,
  .photo-main:hover img,
  .photo-small:hover img { transform: scale(1.035); }
  .text-link:hover i { transform: translateX(5px); }
  .badge:hover,
  .area-tags li:hover,
  .area-tags span:hover,
  .legal-meta span:hover { transform: translateY(-2px); }
  .badge,
  .area-tags li,
  .area-tags span,
  .legal-meta span { transition: transform .25s ease, background-color .25s ease, border-color .25s ease; }
}

@keyframes intro-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes intro-scale {
  from { opacity: 0; transform: scale(.94) translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes intro-left {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: none; }
}

@keyframes intro-right {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes gentle-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes pattern-drift {
  to { background-position: 48px 24px; }
}

@keyframes modal-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-dialog-in {
  from { opacity: 0; transform: translateY(22px) scale(.97); }
  to { opacity: 1; transform: none; }
}

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to { opacity: 1; transform: none; }
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-10px) scale(.985); }
  to { opacity: 1; transform: none; }
}

@keyframes faq-fade {
  from { opacity: .4; }
  to { opacity: 1; }
}

@keyframes map-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(24,133,109,.2); }
  50% { transform: translateY(-4px); box-shadow: 0 0 0 12px rgba(24,133,109,0); }
}

@media (max-width: 720px) {
  .badge { min-height: 38px; padding: 9px 14px; }
  .price-card .tag { right: 18px; top: 18px; padding: 8px 13px; }
  .area-tags li,
  .area-tags span { min-height: 38px; padding: 9px 14px; }
  .nav-links a::after { bottom: 4px; }
}

@media (max-width: 430px) {
  .hero-badges { display: grid; grid-template-columns: 1fr; }
  .badge { width: 100%; justify-content: flex-start; text-align: left; }
  .price-card .tag { position: static; align-self: flex-start; margin: -2px 0 12px; }
}

/* Map loading state */
.map-shell { overflow: hidden; }
.map-shell iframe { display: block; }
.map-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: inherit;
  padding: 24px;
  background: rgba(232, 242, 236, .96);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  pointer-events: none;
}
