:root {
  --ink: #102a30;
  --ink-2: #355158;
  --deep: #0b2830;
  --deep-2: #123943;
  --green: #49b780;
  --green-2: #bdeed4;
  --lime: #d8f58a;
  --cream: #f5f5ed;
  --paper: #ffffff;
  --line: #dfe8e4;
  --muted: #6f8589;
  --shadow: 0 24px 70px rgba(7, 39, 46, .12);
  --shadow-sm: 0 14px 36px rgba(7, 39, 46, .08);
  --radius: 26px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 999; padding: 12px 18px; border-radius: 10px; background: white; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 16px; }

.announcement { color: #dcf9ea; background: #08252c; font-size: 14px; }
.announcement__inner { min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.announcement p { margin: 0; }
.announcement a { margin-left: 8px; font-weight: 700; color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #5ee79b; box-shadow: 0 0 0 6px rgba(94,231,155,.13); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(223,232,228,.8); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(9, 42, 49, .08); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--deep); }
.brand__mark { width: 43px; height: 43px; display: grid; place-items: center; color: var(--green); }
.brand__mark svg { width: 100%; height: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: "Manrope", sans-serif; font-size: 18px; letter-spacing: -.02em; }
.brand__text small { margin-top: 5px; font-size: 12px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: #698086; }
.primary-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 600; }
.primary-nav > a:not(.btn) { position: relative; }
.primary-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--green); transition: right .2s ease; }
.primary-nav > a:not(.btn):hover::after { right: 0; }
.nav-toggle { display: none; border: 0; padding: 10px; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; border-radius: 2px; background: var(--deep); transition: transform .2s ease, opacity .2s ease; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 13px 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 700; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--nav { min-height: 46px; color: white; background: var(--deep); box-shadow: 0 10px 24px rgba(11,40,48,.16); }
.btn--primary { color: #08252c; background: var(--lime); box-shadow: 0 14px 32px rgba(164,199,76,.22); }
.btn--primary:hover { background: #e4faab; box-shadow: 0 18px 38px rgba(164,199,76,.3); }
.btn--primary svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.btn--large { min-height: 58px; padding-inline: 27px; }
.btn--dark { color: white; background: var(--deep); box-shadow: 0 12px 28px rgba(11,40,48,.18); }
.btn--light { color: var(--deep); background: white; }
.btn--outline { color: var(--deep); border-color: #b8c9c5; background: transparent; }
.btn--full { width: 100%; min-height: 56px; border: 0; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: white; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.38); }
.text-link--dark { color: var(--deep); border-color: #a9bcb7; }

.hero { position: relative; overflow: hidden; color: white; background: linear-gradient(135deg, #08262e 0%, #0d333c 57%, #104049 100%); padding: 86px 0 0; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, #000, transparent 78%); }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero__glow--one { width: 500px; height: 500px; right: -180px; top: -180px; background: rgba(80,195,137,.19); }
.hero__glow--two { width: 360px; height: 360px; left: -190px; bottom: -100px; background: rgba(216,245,138,.08); }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 60px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: #ccebdd; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--lime); }
h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 770px; font-size: clamp(44px, 5.5vw, 74px); }
.hero__lead { max-width: 660px; margin: 25px 0 0; color: #cde0e3; font-size: 19px; line-height: 1.7; }
.hero__actions { margin-top: 34px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 11px 22px; padding: 0; margin: 31px 0 0; list-style: none; color: #dbecee; font-size: 14px; }
.hero__checks li { display: flex; align-items: center; gap: 8px; }
.hero__checks span { color: var(--lime); font-weight: 800; }
.hero__visual { min-width: 0; }
.visual-card { position: relative; margin: 0 -20px -10px 0; }
.visual-card > img { width: 100%; min-height: 570px; object-fit: contain; filter: drop-shadow(0 35px 50px rgba(0,0,0,.28)); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 11px; min-width: 210px; padding: 14px 16px; color: var(--deep); background: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.6); border-radius: 15px; box-shadow: 0 18px 45px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 14px; }
.floating-card small { margin-top: 2px; color: #6f8589; font-size: 12px; }
.floating-card--top { left: 1%; top: 16%; }
.floating-card--bottom { right: 1%; bottom: 16%; }
.floating-card__icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; color: var(--deep); background: var(--green-2); }
.floating-card__icon svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.pulse-ring { width: 13px; height: 13px; border-radius: 50%; background: #45c081; box-shadow: 0 0 0 7px rgba(69,192,129,.15); }
.trust-strip { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 45px; border-top: 1px solid rgba(255,255,255,.13); }
.trust-strip div { min-height: 92px; display: flex; align-items: center; justify-content: center; gap: 13px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { color: var(--lime); font-family: "Manrope", sans-serif; font-size: 13px; }
.trust-strip span { color: #d9e9eb; font-weight: 700; }

.section { padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .75fr; align-items: end; gap: 70px; margin-bottom: 48px; }
.kicker { display: block; margin-bottom: 15px; color: #379468; font-size: 13px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.kicker--light { color: var(--lime); }
.section h2 { font-size: clamp(36px, 4vw, 54px); }
.section-heading p, .intro { margin: 0; color: var(--ink-2); font-size: 17px; line-height: 1.75; }
.section--services { background: #fbfcf9; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 322px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #c6ddd4; box-shadow: var(--shadow-sm); }
.service-card--featured { color: white; border-color: var(--deep); background: var(--deep); }
.service-card__icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 35px; border-radius: 15px; background: #eef8f2; }
.service-card--featured .service-card__icon { background: rgba(255,255,255,.1); }
.service-card__icon img { width: 35px; height: 35px; }
.service-card__number { position: absolute; top: 24px; right: 25px; color: #9fb2ad; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.service-card--featured .service-card__number { color: #89a3a8; }
.service-card h3 { font-size: 23px; }
.service-card p { margin: 14px 0 24px; color: var(--ink-2); }
.service-card--featured p { color: #c9dcdf; }
.service-card a { margin-top: auto; color: #25865b; font-size: 14px; font-weight: 800; }
.service-card--featured a { color: var(--lime); }
.service-card a span { display: inline-block; margin-left: 4px; transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(4px); }

.section--split { overflow: hidden; background: white; }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.photo-frame { position: relative; padding: 22px; border-radius: 30px; background: #edf7f1; }
.photo-frame > img { width: 100%; border-radius: 20px; }
.metric-card { position: absolute; right: -36px; bottom: 48px; min-width: 195px; padding: 21px 24px; border-radius: 17px; background: white; box-shadow: var(--shadow); }
.metric-card strong, .metric-card span { display: block; }
.metric-card strong { color: #2d9967; font-family: "Manrope", sans-serif; font-size: 34px; letter-spacing: -.04em; }
.metric-card span { color: var(--ink-2); font-size: 13px; font-weight: 700; }
.split-content h2 { margin-bottom: 20px; }
.steps { margin: 36px 0; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 0 0 24px; position: relative; }
.step:not(:last-child)::after { content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 1px; background: #cbdad6; }
.step__number { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--deep); background: var(--green-2); font-weight: 800; }
.step h3 { padding-top: 2px; font-size: 19px; }
.step p { margin: 6px 0 0; color: var(--ink-2); }

.section--why { padding-top: 30px; }
.why-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; padding: 70px; border-radius: 30px; color: white; background: linear-gradient(135deg, #0a2a32, #123c45); box-shadow: var(--shadow); }
.why-panel__copy h2 { font-size: clamp(36px, 3.8vw, 52px); }
.why-panel__copy p { margin: 22px 0 30px; color: #cce0e2; font-size: 17px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-grid article { min-height: 185px; padding: 25px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(255,255,255,.06); }
.why-grid span { color: var(--lime); font-size: 12px; font-weight: 800; }
.why-grid h3 { margin-top: 25px; font-size: 18px; }
.why-grid p { margin: 8px 0 0; color: #c9dbde; font-size: 14px; }

.section--areas { background: var(--cream); }
.areas-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.areas-content > p { color: var(--ink-2); font-size: 17px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.area-tags a { padding: 9px 14px; border: 1px solid #c8d7d2; border-radius: 999px; color: #34565a; background: rgba(255,255,255,.55); font-size: 14px; font-weight: 700; transition: background .2s ease, transform .2s ease; }
.area-tags a:hover { transform: translateY(-2px); background: white; }
.map-card { position: relative; padding: 22px; border-radius: 28px; background: white; box-shadow: var(--shadow-sm); }
.map-card img { width: 100%; border-radius: 18px; }
.map-card__badge { position: absolute; left: 42px; bottom: 38px; display: flex; align-items: center; gap: 9px; padding: 10px 14px; border-radius: 12px; background: white; box-shadow: var(--shadow-sm); font-size: 13px; font-weight: 800; }
.map-card__badge span { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(73,183,128,.15); }

.section--proof { background: white; }
.proof-header { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote-card { min-height: 320px; display: flex; flex-direction: column; margin: 0; padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: #fbfcfa; }
.quote-card--accent { background: #edf8f1; border-color: #d1eadc; }
.quote-mark { color: #75c59c; font-family: Georgia, serif; font-size: 66px; line-height: .9; }
.quote-card blockquote { margin: 22px 0 32px; color: #2c4a50; font-size: 17px; line-height: 1.7; }
.quote-card figcaption { margin-top: auto; padding-top: 20px; border-top: 1px solid #dfe8e4; }
.quote-card strong, .quote-card span { display: block; }
.quote-card strong { font-size: 14px; }
.quote-card span { margin-top: 3px; color: var(--muted); font-size: 12px; }

.section--faq { background: #fbfcf9; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 90px; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro p { margin: 22px 0 28px; color: var(--ink-2); font-size: 17px; }
.accordion { border-top: 1px solid #cad8d4; }
.accordion__item { border-bottom: 1px solid #cad8d4; }
.accordion__button { width: 100%; min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-family: "Manrope", sans-serif; font-size: 19px; font-weight: 700; }
.accordion__icon { position: relative; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: #e8f4ed; }
.accordion__icon::before, .accordion__icon::after { content: ""; position: absolute; left: 9px; right: 9px; top: 16px; height: 2px; background: var(--deep); transition: transform .2s ease; }
.accordion__icon::after { transform: rotate(90deg); }
.accordion__item.is-open .accordion__icon::after { transform: rotate(0); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion__panel p { min-height: 0; overflow: hidden; margin: 0; color: var(--ink-2); }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__panel p { padding: 0 55px 25px 0; }

.section--contact { padding-top: 55px; }
.contact-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; padding: 70px; border-radius: 30px; color: white; background: linear-gradient(135deg, #0a2b33, #0f3942); box-shadow: var(--shadow); }
.contact-copy h2 { font-size: clamp(38px, 4vw, 54px); }
.contact-copy > p { margin: 22px 0; color: #c9dcdf; font-size: 17px; }
.contact-points { display: grid; gap: 9px; color: #e5f2ef; font-size: 14px; }
.contact-points span { display: flex; align-items: center; gap: 10px; }
.contact-points b { color: var(--lime); }
.contact-form { padding: 28px; border-radius: 20px; color: var(--ink); background: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 14px; color: #38545a; font-size: 13px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #d3dfdc; border-radius: 10px; outline: 0; color: var(--ink); background: #fbfcfb; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; min-height: 112px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #56ae7e; box-shadow: 0 0 0 4px rgba(86,174,126,.12); }
.form-note { margin: 10px 0 0; color: #809095; font-size: 11px; text-align: center; }

.site-footer { margin-top: 110px; color: #c9dcdf; background: #071f25; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .8fr 1fr; gap: 55px; padding: 70px 0 55px; }
.brand--footer { color: white; }
.footer-brand p, .footer-grid > div > p { max-width: 340px; color: #93aeb3; font-size: 14px; }
.footer-grid h3 { margin-bottom: 18px; color: white; font-size: 14px; letter-spacing: .03em; }
.footer-grid > div:not(.footer-brand) a { display: block; width: fit-content; margin: 10px 0; color: #a9c0c4; font-size: 14px; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { min-height: 75px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.09); color: #78959a; font-size: 12px; }
.footer-bottom p { margin: 0; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .primary-nav { gap: 18px; }
  .hero__grid { gap: 25px; }
  .visual-card > img { min-height: 490px; }
  .section-heading { gap: 35px; }
  .split-grid, .areas-grid { gap: 50px; }
  .why-panel, .contact-panel { padding: 50px; gap: 40px; }
  .faq-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  .announcement p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .announcement a { display: none; }
  .nav-wrap { min-height: 72px; }
  .nav-toggle { display: block; z-index: 102; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 72px 0 auto 0; max-height: 0; overflow: hidden; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 0 20px; background: white; box-shadow: 0 25px 45px rgba(8,38,46,.12); transition: max-height .3s ease, padding .3s ease; }
  .primary-nav.is-open { max-height: 430px; padding-top: 15px; padding-bottom: 25px; }
  .primary-nav > a:not(.btn) { padding: 14px 5px; border-bottom: 1px solid var(--line); }
  .primary-nav > a:not(.btn)::after { display: none; }
  .btn--nav { margin-top: 15px; }
  .hero { padding-top: 65px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__checks { justify-content: center; }
  .hero__visual { max-width: 680px; margin: 0 auto; }
  .visual-card { margin: 0; }
  .visual-card > img { min-height: 440px; }
  .trust-strip { margin-top: 10px; }
  .section-heading, .split-grid, .areas-grid, .why-panel, .contact-panel, .faq-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; }
  .service-grid, .quote-grid { grid-template-columns: 1fr 1fr; }
  .split-visual { max-width: 600px; margin: 0 auto; }
  .metric-card { right: -15px; }
  .why-panel { gap: 55px; }
  .areas-content { order: 1; }
  .map-card { order: 0; }
  .faq-intro { position: static; }
  .contact-panel { gap: 45px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { font-size: 12px; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__text strong { font-size: 16px; }
  .hero { padding-top: 48px; }
  h1 { font-size: clamp(39px, 12vw, 54px); }
  .hero__lead { font-size: 17px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 18px; }
  .text-link { align-self: center; }
  .hero__checks { display: grid; justify-content: start; width: fit-content; margin-inline: auto; text-align: left; }
  .visual-card > img { min-height: 330px; }
  .floating-card { min-width: 175px; padding: 10px 12px; }
  .floating-card--top { left: -5px; top: 11%; }
  .floating-card--bottom { right: -2px; bottom: 7%; }
  .floating-card__icon { width: 31px; height: 31px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div { min-height: 70px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 32px; }
  .section h2 { font-size: 36px; }
  .service-grid, .quote-grid, .why-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .split-grid { gap: 55px; }
  .photo-frame { padding: 12px; }
  .metric-card { right: 10px; bottom: 18px; min-width: 155px; padding: 15px 18px; }
  .metric-card strong { font-size: 28px; }
  .why-panel, .contact-panel { padding: 34px 24px; border-radius: 22px; }
  .why-grid article { min-height: 160px; }
  .map-card { padding: 11px; }
  .map-card__badge { left: 25px; bottom: 24px; }
  .accordion__button { min-height: 76px; font-size: 17px; }
  .accordion__item.is-open .accordion__panel p { padding-right: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 20px; }
  .site-footer { margin-top: 80px; padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; padding-top: 55px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 22px 0; }
  .mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 13px; color: #08252c; background: var(--lime); box-shadow: 0 12px 35px rgba(8,38,46,.26); font-weight: 800; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
