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

:root {
  --ink: #2c294f;
  --ink-soft: #64617f;
  --green: #7772b4;
  --green-dark: #5c5797;
  --green-light: #ebeafa;
  --green-pale: #f8f9ff;
  --cream: #f3faff;
  --gold: #c9ab00;
  --white: #ffffff;
  --line: #deddf0;
  --shadow: 0 24px 70px rgba(24, 70, 59, .12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

::selection { background: #bfe6da; color: var(--ink); }

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

.section { padding: 110px 0; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(29,70,60,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 58px; height: 58px; border-radius: 16px; object-fit: cover; box-shadow: 0 8px 22px rgba(75,71,124,.16); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.32rem;
  letter-spacing: -.04em;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: .72rem;
  letter-spacing: .02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav > a {
  position: relative;
  font-weight: 600;
  font-size: .88rem;
}
.main-nav > a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .2s ease;
}
.main-nav > a:hover::after { width: 100%; }
.nav-contact {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
}
.nav-contact:hover { background: var(--green-dark); }

.language-toggle {
  min-width: 46px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}
.language-toggle:hover { border-color: var(--green); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--green-pale);
  padding: 12px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 3px;
  background: var(--ink);
  transition: .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding-top: 155px;
  background:
    linear-gradient(110deg, rgba(244,250,247,.98) 0%, rgba(255,255,255,.98) 48%, rgba(255,248,236,.8) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(to top, #fff, transparent);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-orb-a {
  width: 380px;
  height: 380px;
  right: -140px;
  top: 120px;
  background: rgba(129,205,185,.18);
}
.hero-orb-b {
  width: 250px;
  height: 250px;
  left: -110px;
  bottom: 40px;
  background: rgba(241,189,97,.14);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 68px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(213,157,64,.13);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
}
h1 {
  max-width: 720px;
  margin: 26px 0 25px;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  letter-spacing: -.065em;
}
.hero-lead {
  max-width: 630px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.78;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(31,122,103,.23);
}
.button-primary:hover { background: var(--green-dark); box-shadow: 0 18px 32px rgba(31,122,103,.28); }
.button-ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(22,68,57,.09);
}
.button-small { min-height: 44px; padding: 0 18px; background: var(--cream); color: var(--ink); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: .9rem;
}
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list li > span:first-child {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-weight: 800;
  font-size: .72rem;
}

.hero-visual { position: relative; }
.visual-card {
  position: relative;
  border-radius: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.visual-card > svg { border-radius: 42px; }
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 45px rgba(24,70,59,.14);
  transform: rotate(-1.5deg);
}
.floating-badge strong, .floating-badge small { display: block; }
.floating-badge strong { font-family: "Manrope", sans-serif; font-size: .9rem; }
.floating-badge small { margin-top: 3px; color: var(--ink-soft); font-size: .72rem; }
.badge-top { top: 11%; right: -8%; }
.badge-bottom { left: -9%; bottom: 10%; }
.badge-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--cream);
  color: #b97d24;
  font-size: 1.35rem;
}
.badge-icon-green { background: var(--green-light); color: var(--green); }

.values-strip {
  position: relative;
  z-index: 2;
  padding: 35px 0;
  background: var(--ink);
  color: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.values-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.value-number {
  color: #bee3f5;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: .9rem;
}
.values-grid strong { display: block; margin-bottom: 5px; font-family: "Manrope", sans-serif; }
.values-grid p { margin: 0; color: rgba(255,255,255,.68); font-size: .87rem; line-height: 1.55; }

.section-heading { max-width: 770px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.about-content h2,
.faq-intro h2,
.contact-info h2 {
  margin: 20px 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -.055em;
}
.section-heading p,
.about-content > p,
.faq-intro > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.services-section { background: var(--green-pale); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 31px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(27,76,64,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: #d8d6ed;
  box-shadow: 0 24px 55px rgba(27,76,64,.12);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 17px;
  background: var(--green-light);
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 700;
}
.service-card h3 { margin-bottom: 13px; font-size: 1.3rem; letter-spacing: -.025em; }
.service-card p { color: var(--ink-soft); font-size: .95rem; line-height: 1.7; }
.service-link {
  margin-top: auto;
  color: var(--green);
  font-size: .82rem;
  font-weight: 700;
}
.service-card-accent {
  color: var(--white);
  background: var(--green);
}
.service-card-accent .service-icon { background: rgba(255,255,255,.14); color: var(--white); }
.service-card-accent p { color: rgba(255,255,255,.76); }
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-weight: 700;
}
.service-cta:hover { gap: 15px; }

.about-section { overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
  align-items: center;
}
.about-shape { position: relative; }
.about-photo-sim {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 46% 46% 24px 24px;
  background: linear-gradient(145deg, #ecf8f4, #fff4df);
  box-shadow: var(--shadow);
}
.sun {
  position: absolute;
  right: 62px;
  top: 55px;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: rgba(245,197,115,.55);
}
.window {
  position: absolute;
  left: 65px;
  top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 155px;
  height: 190px;
  border: 15px solid var(--white);
  border-bottom-width: 23px;
  background: linear-gradient(#bee3f5, #f8fcfb);
  box-shadow: 0 12px 35px rgba(25,77,63,.1);
}
.window span + span { border-left: 5px solid var(--white); }
.plant { position: absolute; left: 45px; bottom: 45px; width: 95px; height: 150px; }
.plant::after {
  content:"";
  position:absolute;
  left:24px; bottom:0;
  width:65px; height:64px;
  border-radius: 14px 14px 25px 25px;
  background:#c58c47;
}
.plant i {
  position:absolute;
  left:50px; bottom:50px;
  width:18px; height:90px;
  border-radius:50%;
  background:#7772b4;
  transform-origin:bottom;
}
.plant i:nth-child(1){ transform:rotate(-45deg); }
.plant i:nth-child(2){ transform:rotate(3deg); height:110px; }
.plant i:nth-child(3){ transform:rotate(40deg); height:85px; }

.people { position: absolute; inset: auto 30px 0 130px; height: 390px; }
.person { position: absolute; bottom: 0; }
.person::before {
  content:"";
  position:absolute;
  top:0; left:50%;
  width:102px; height:112px;
  border-radius:48% 48% 44% 44%;
  background:#edc5a6;
  transform:translateX(-50%);
}
.person span {
  position:absolute;
  left:50%; bottom:0;
  width:190px; height:260px;
  border-radius:90px 90px 20px 20px;
  transform:translateX(-50%);
}
.person-a { left:20px; width:210px; height:360px; }
.person-a span { background:#8986c0; }
.person-a::after {
  content:"";
  position:absolute;
  top:17px; left:47px;
  width:112px; height:70px;
  border-radius:60px 60px 15px 15px;
  background:#5b4036;
}
.person-b { right:0; width:200px; height:325px; transform:scale(.9); transform-origin:bottom; }
.person-b span { background:#efb354; }
.person-b::after {
  content:"";
  position:absolute;
  top:13px; left:49px;
  width:105px; height:62px;
  border-radius:60px 60px 15px 15px;
  background:#d6d1cd;
}
.quote-card {
  position: absolute;
  right: -28px;
  bottom: 45px;
  width: min(320px, 72%);
  padding: 26px 28px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(24,70,59,.15);
}
.quote-card .quote-mark { color: var(--gold); font-family: Georgia, serif; font-size: 3.6rem; line-height: .7; }
.quote-card p { margin: 10px 0 0; font-family: "Manrope", sans-serif; font-weight: 700; line-height: 1.45; }

.about-content > p { margin-bottom: 18px; }
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.about-points > div { display: flex; gap: 12px; }
.about-points > div > span {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-weight: 800;
}
.about-points p { margin: 0; line-height: 1.35; }
.about-points strong, .about-points small { display: block; }
.about-points strong { font-family: "Manrope", sans-serif; font-size: .92rem; }
.about-points small { margin-top: 4px; color: var(--ink-soft); font-size: .78rem; }

.process-section { background: var(--ink); color: var(--white); }
.process-section .eyebrow { color: #bee3f5; }
.process-section .section-heading p { color: rgba(255,255,255,.68); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-card {
  position: relative;
  min-height: 280px;
  padding: 30px 27px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.055);
  transition: transform .25s ease, background .25s ease;
}
.process-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.process-number {
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(255,255,255,.12);
  font-family: "Manrope", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
}
.process-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 55px;
  border-radius: 17px;
  background: #7772b4;
  font-size: 1.2rem;
}
.process-card h3 { margin-bottom: 12px; font-size: 1.18rem; }
.process-card p { color: rgba(255,255,255,.66); font-size: .9rem; line-height: 1.65; }

.testimonial-section { padding-top: 85px; padding-bottom: 85px; }
.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
}
.testimonial-copy { padding: 55px 65px; }
.testimonial-copy .quote-mark { color: var(--gold); font-family: Georgia, serif; font-size: 5rem; line-height: .7; }
.testimonial-copy blockquote {
  max-width: 800px;
  margin: 15px 0 30px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.035em;
}
.testimonial-copy > p { margin: 0; }
.testimonial-copy strong, .testimonial-copy span { display: block; }
.testimonial-copy span { color: var(--ink-soft); font-size: .85rem; }
.testimonial-mark {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 320px;
  background: var(--green);
}
.testimonial-mark img { width: 165px; border-radius: 34px; filter: none; opacity: 1; box-shadow: 0 18px 45px rgba(44,41,79,.25); }

.faq-section { background: #fbfdfc; }
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.text-link { display: inline-flex; gap: 10px; color: var(--green); font-weight: 700; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 5px;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-light);
}
.accordion summary i::before,
.accordion summary i::after {
  content:"";
  position:absolute;
  left:50%; top:50%;
  width:12px; height:2px;
  border-radius:2px;
  background:var(--green);
  transform:translate(-50%,-50%);
  transition:.2s ease;
}
.accordion summary i::after { transform:translate(-50%,-50%) rotate(90deg); }
.accordion details[open] summary i::after { transform:translate(-50%,-50%) rotate(0); }
.accordion details p {
  max-width: 650px;
  margin: -5px 50px 25px 5px;
  color: var(--ink-soft);
  font-size: .95rem;
}

.contact-section { background: var(--green-pale); }
.contact-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.contact-info {
  padding: 62px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(145deg, var(--green), #6e8da7);
}
.eyebrow-light { color: #eef0ff; }
.contact-info h2 { max-width: 520px; }
.contact-info > p { max-width: 520px; color: rgba(255,255,255,.72); }
.contact-list { display: grid; gap: 18px; margin-top: 38px; }
.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.11);
}
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: rgba(255,255,255,.55); font-size: .72rem; }
.contact-list strong { margin-top: 2px; font-size: .95rem; }

.contact-form {
  position: relative;
  padding: 50px;
  background: var(--white);
}
.form-heading { margin-bottom: 25px; }
.form-heading h3 { margin-bottom: 6px; font-size: 1.55rem; }
.form-heading p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.contact-form label:not(.consent) { display: block; margin-bottom: 17px; }
.contact-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
  font-size: .82rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #d9e6e2;
  border-radius: 13px;
  background: #fbfdfc;
  color: var(--ink);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
input, select { height: 50px; padding: 0 15px; }
textarea { resize: vertical; min-height: 110px; padding: 14px 15px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31,122,103,.1);
}
input.invalid, select.invalid, textarea.invalid { border-color: #c84f4f; }
.field-error {
  display: none;
  margin-top: 5px;
  color: #b33f3f;
  font-size: .72rem;
}
label.has-error .field-error,
.consent-error.show { display: block; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: .78rem;
}
.consent input { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.form-submit { width: 100%; margin-top: 20px; }
.form-note { margin: 12px 0 0; color: #7b8f89; font-size: .7rem; text-align: center; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 13px;
  background: var(--green-light);
  color: var(--green-dark);
  text-align: center;
}
.form-success.show { display: block; }
.form-success strong, .form-success span { display: block; }
.form-success span { font-size: .78rem; margin-top: 3px; }

.site-footer {
  padding: 65px 0 25px;
  background: #102a24;
  color: var(--white);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.25fr .7fr .9fr 1fr;
  gap: 45px;
}
.footer-brand .brand-copy small { color: rgba(255,255,255,.55); }
.footer-brand img { width: 68px; height: 68px; border-radius: 18px; filter: none; }
.footer-links, .footer-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links strong, .footer-cta strong { margin-bottom: 6px; font-family: "Manrope", sans-serif; }
.footer-links a, .footer-links span, .footer-cta p { color: rgba(255,255,255,.62); font-size: .84rem; }
.footer-links a:hover { color: var(--white); }
.footer-cta p { margin: 0 0 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.45);
  font-size: .75rem;
}
.footer-bottom p { margin: 0; }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 800;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(16,42,36,.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .2s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .hero-grid { gap: 35px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 50px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-cta { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  .section { padding: 85px 0; }
  .menu-toggle { display: block; z-index: 1002; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(255,255,255,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a { font-size: 1.25rem; }
  .nav-contact { padding: 13px 25px; }

  .hero { min-height: 0; padding-top: 135px; }
  .hero-grid,
  .about-grid,
  .faq-grid,
  .contact-shell { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-visual { max-width: 620px; margin: 20px auto 0; }
  .values-grid { grid-template-columns: 1fr; gap: 25px; }
  .about-visual { max-width: 620px; margin-inline: auto; }
  .about-content { max-width: 760px; }
  .faq-grid { gap: 45px; }
  .contact-info, .contact-form { padding: 45px; }
  .testimonial-card { grid-template-columns: 1fr; }
  .testimonial-mark { min-height: 180px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .site-header { padding: 11px 0; }
  .brand img { width: 44px; height: 44px; }
  .brand-copy small { font-size: .64rem; }
  .hero { padding-top: 120px; }
  h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .button { width: 100%; }
  .trust-list { align-items: flex-start; flex-direction: column; margin-left: 8px; }
  .visual-card { transform: none; border-radius: 28px; }
  .visual-card > svg { border-radius: 28px; }
  .floating-badge { min-width: 0; padding: 10px 12px; border-radius: 15px; transform: none; }
  .floating-badge strong { font-size: .76rem; }
  .floating-badge small { display: none; }
  .badge-icon { width: 34px; height: 34px; border-radius: 11px; }
  .badge-top { right: 8px; top: 9%; }
  .badge-bottom { left: 8px; bottom: 8%; }

  .services-grid,
  .process-grid,
  .about-points,
  .form-row,
  .footer-main { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .about-photo-sim { min-height: 440px; border-radius: 38% 38% 22px 22px; }
  .window { left: 35px; top: 50px; transform: scale(.75); transform-origin: top left; }
  .sun { right: 35px; top: 45px; width: 65px; height: 65px; }
  .people { inset: auto 5px 0 30px; transform: scale(.8); transform-origin: bottom; }
  .plant { transform: scale(.72); transform-origin: bottom left; }
  .quote-card { right: 10px; bottom: 18px; width: 75%; padding: 20px; }
  .quote-card p { font-size: .85rem; }
  .testimonial-copy { padding: 40px 28px; }
  .contact-info, .contact-form { padding: 35px 24px; }
  .footer-cta { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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


/* Public omavalvontasuunnitelma */
.documents-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 20%, rgba(190,227,245,.62), transparent 25%),
    radial-gradient(circle at 92% 80%, rgba(255,240,0,.13), transparent 23%),
    #f8f9ff;
}
.document-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
  padding: 52px;
  border: 1px solid rgba(137,134,192,.2);
  border-radius: 36px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 28px 80px rgba(75,71,124,.13);
  backdrop-filter: blur(12px);
}
.document-copy h2 {
  margin: 20px 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.document-copy > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.document-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}
.document-meta span {
  min-height: 86px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.document-meta b,
.document-meta small { display: block; }
.document-meta b { font-family: "Manrope", sans-serif; font-size: .9rem; }
.document-meta small { margin-top: 5px; color: var(--ink-soft); font-size: .72rem; line-height: 1.35; }
.document-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.document-actions .button { min-width: 185px; }
.document-download { border: 1px solid var(--line); }
.document-preview {
  overflow: hidden;
  min-height: 570px;
  border: 1px solid #d8d6ed;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(44,41,79,.15);
}
.document-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 15px;
  border-bottom: 1px solid #e4e3f1;
  background: #f5f4fb;
}
.document-window-bar i { width: 9px; height: 9px; border-radius: 50%; background: #cbc9e3; }
.document-window-bar i:first-child { background: #8986c0; }
.document-window-bar i:nth-child(2) { background: #bee3f5; }
.document-window-bar i:nth-child(3) { background: #fff000; }
.document-window-bar span { margin-left: 8px; color: var(--ink-soft); font-size: .72rem; font-weight: 700; }
.document-page-frame {
  display: grid;
  place-items: start center;
  height: 480px;
  overflow: hidden;
  padding: 18px 18px 0;
  background: #ececf4;
}
.document-page-frame img {
  width: min(100%, 430px);
  height: auto;
  border: 1px solid #d9d9e4;
  background: #fff;
  box-shadow: 0 10px 30px rgba(44,41,79,.16);
}
.document-preview-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-top: 1px solid #e4e3f1;
  color: var(--green);
  font-size: .82rem;
  font-weight: 700;
}
.document-preview-link:hover { background: #f8f9ff; }

@media (max-width: 980px) {
  .document-shell { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .document-shell { padding: 25px 18px; border-radius: 25px; }
  .document-copy h2 { font-size: 2rem; line-height: 1.15; }
  .document-meta { grid-template-columns: 1fr; }
  .document-preview { min-height: 480px; }
  .document-page-frame { height: 390px; padding: 12px 12px 0; }
}
