:root {
  --green: #0f5b45;
  --green-deep: #073b30;
  --green-soft: #28755f;
  --green-pale: #e8f2ed;
  --sage: #b9d7ca;
  --gold: #c79c4b;
  --ink: #17332b;
  --text: #53655f;
  --muted: #778781;
  --paper: #ffffff;
  --soft: #f4f8f6;
  --line: #d9e5df;
  --shadow: 0 24px 70px rgba(7, 59, 48, .14);
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: .7; }
[hidden] { display: none !important; }

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.shell--narrow { width: min(860px, calc(100% - 40px)); }
.section { padding: 108px 0; }
.section--soft { background: var(--soft); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-soft);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow--center { text-align: center; }
.eyebrow--light { color: var(--sage); }
.section-title {
  max-width: 820px;
  margin: 0 auto 54px;
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  text-align: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 27px;
  border: 1px solid var(--green);
  border-radius: 7px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 26px rgba(15, 91, 69, .2);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover, .button:focus-visible {
  background: var(--green-deep);
  box-shadow: 0 13px 30px rgba(7, 59, 48, .28);
  transform: translateY(-2px);
}
.button--wide { width: 100%; }
.button--light {
  border-color: #fff;
  color: var(--green-deep);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}
.button--light:hover, .button--light:focus-visible { color: #fff; background: var(--green-soft); }

.top-cta {
  display: block;
  padding: 10px 20px;
  color: #fff;
  background: var(--green-deep);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  text-decoration: none;
}
.top-cta span { margin-left: 7px; }

.hero {
  position: relative;
  min-height: 730px;
  padding: 88px 0 104px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(185, 215, 202, .18), transparent 31%),
    linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
}
.hero::after {
  position: absolute;
  right: -140px;
  bottom: -250px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  content: "";
}
.hero-glow { position: absolute; border-radius: 50%; opacity: .3; }
.hero-glow--one { top: 80px; left: -110px; width: 250px; height: 250px; border: 1px solid var(--sage); }
.hero-glow--two { top: 195px; left: -45px; width: 260px; height: 260px; border: 1px solid rgba(255, 255, 255, .25); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, .82fr);
  gap: 72px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.brand-image { display: block; object-fit: contain; }
.brand-image--hero {
  width: min(210px, 100%);
  max-height: 130px;
  margin: 0 0 40px;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.hero-title {
  max-width: 690px;
  margin: 0;
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 3.85rem);
  line-height: 1.1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .84);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.55;
}
.form-card {
  padding: 40px 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  color: var(--text);
  background: #fff;
  box-shadow: 0 32px 90px rgba(2, 34, 26, .38);
}
.form-card__kicker { margin: 0 0 8px; color: var(--green-soft); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.form-card h2 { margin: 0 0 14px; color: var(--ink); font-family: "Libre Baskerville", Georgia, serif; font-size: 1.45rem; line-height: 1.35; }
.form-card > p:not(.form-card__kicker) { margin: 0 0 23px; font-size: .79rem; line-height: 1.55; }
.lead-form { display: grid; gap: 14px; }
.lead-form label:not(.consent) { display: grid; gap: 6px; }
.lead-form label > span:first-child { color: var(--ink); font-size: .75rem; font-weight: 700; }
.lead-form small { color: var(--muted); font-weight: 400; }
input[type="text"], input[type="tel"], input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border .18s ease, box-shadow .18s ease;
}
input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 91, 69, .11);
}
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 2px 0 5px; cursor: pointer; }
.consent input { width: 17px; height: 17px; margin: 3px 0 0; accent-color: var(--green); }
.consent span { color: var(--muted); font-size: .61rem; line-height: 1.5; }
.form-status { grid-column: 1 / -1; margin: 4px 0 0; color: #a53f3f; font-size: .76rem; font-weight: 700; line-height: 1.45; }

.credentials { position: relative; z-index: 3; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 12px 35px rgba(7, 59, 48, .06); }
.credentials-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.credentials p {
  display: flex;
  min-height: 116px;
  margin: 0;
  padding: 24px 18px;
  gap: 12px;
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.35;
}
.credentials p:first-child { border-left: 1px solid var(--line); }
.credentials .mdi { color: var(--green-soft); font-size: 1.65rem; }

.help-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: start; }
.help-copy h2 { margin: 0 0 28px; color: var(--ink); font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); line-height: 1.17; }
.help-lead { margin: 0; font-size: 1rem; line-height: 1.8; }
.help-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.help-list li { position: relative; padding: 18px 0 18px 42px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .9rem; font-weight: 600; }
.help-list li::before {
  position: absolute;
  top: 19px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  content: "✓";
  font-size: .74rem;
  place-items: center;
}
.help-closing { margin: 30px 0 22px; color: var(--ink); font-family: "Libre Baskerville", Georgia, serif; font-size: 1.08rem; line-height: 1.55; }
.help-closing span { color: var(--green-soft); }

.icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.icon-card {
  min-height: 168px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  transition: border .2s ease, transform .2s ease, box-shadow .2s ease;
}
.icon-card:hover { border-color: var(--sage); box-shadow: 0 15px 40px rgba(7, 59, 48, .09); transform: translateY(-4px); }
.icon-card .mdi { display: block; margin-bottom: 16px; color: var(--green-soft); font-size: 2.55rem; line-height: 1; }
.icon-card h3 { max-width: 230px; margin: 0 auto; color: var(--ink); font-size: 1rem; line-height: 1.35; }
.infrastructure-note { max-width: 820px; margin: 42px auto 0; color: var(--ink); font-family: "Libre Baskerville", Georgia, serif; font-size: 1.08rem; line-height: 1.55; text-align: center; }

.precedent {
  position: relative;
  padding: 122px 0;
  color: #fff;
  background:
    linear-gradient(rgba(4, 45, 35, .88), rgba(4, 45, 35, .9)),
    url("/uploads/back01.jpg") center 48% / cover no-repeat;
}
.precedent-inner { max-width: 890px; text-align: center; }
.precedent h2 { margin: 0 auto 26px; color: #fff; font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.2; }
.precedent p:not(.eyebrow) { max-width: 780px; margin: 0 auto 14px; color: rgba(255, 255, 255, .83); }
.precedent .button { margin-top: 25px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 60px 25px 0; color: var(--ink); font-weight: 700; line-height: 1.4; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  place-items: center;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details > p, .faq-answer { max-width: 750px; margin: -3px 0 27px; padding-right: 40px; font-size: .9rem; }
.faq-answer p { margin: 0 0 13px; }
.faq-answer ul { margin: 0 0 15px; padding-left: 22px; }

.no-documents { padding: 100px 0; color: #fff; background: var(--green); }
.no-documents-inner { text-align: center; }
.no-documents .mdi { display: block; margin-bottom: 22px; color: var(--sage); font-size: 3.3rem; line-height: 1; }
.no-documents h2 { max-width: 940px; margin: 0 auto 34px; font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.22; }

.cases-section { background: var(--soft); }
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.case-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  padding: 42px 36px 34px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(7, 59, 48, .05);
}
.case-card::before { position: absolute; top: 19px; left: 29px; color: var(--sage); content: "“"; font-family: Georgia, serif; font-size: 4.2rem; line-height: 1; }
.case-card blockquote { position: relative; margin: 0 0 25px; color: var(--text); font-size: .87rem; line-height: 1.68; }
.case-card blockquote p { margin: 0 0 12px; }
.case-card figcaption { color: var(--ink); font-weight: 700; }
.cases-note { max-width: 850px; margin: 42px auto 0; color: var(--ink); font-weight: 700; text-align: center; }

.final-form { background: #fff; }
.final-form-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.final-form h2 { margin: 0 0 20px; color: var(--ink); font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.2; }
.final-form-grid > div > p:last-child { color: var(--ink); font-weight: 700; }
.lead-form--horizontal { display: grid; grid-template-columns: 1fr 1fr; padding: 34px; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); }
.lead-form--horizontal label:nth-of-type(3), .consent--full, .lead-form--horizontal .button { grid-column: 1 / -1; }

.site-footer { padding: 84px 0 95px; color: #fff; background: var(--green-deep); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.footer-contact h2 { margin: 0; color: #fff; font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); line-height: 1.15; text-transform: uppercase; }
.footer-contact > p { margin: 24px 0 37px; color: rgba(255, 255, 255, .85); }
.footer-contact address { display: grid; gap: 3px; margin-bottom: 31px; font-style: normal; }
.footer-contact address a { display: flex; gap: 16px; align-items: center; color: #fff; text-decoration: none; }
.footer-contact address .mdi { width: 25px; font-size: 1.2rem; text-align: center; }
.footer-link { color: #fff; text-underline-offset: 5px; }
.footer-brand { display: grid; min-height: 260px; place-items: center; }
.footer-brand img { width: min(250px, 100%); max-height: 220px; object-fit: contain; filter: brightness(0) invert(1); }

.thank-you { position: relative; display: grid; min-height: 680px; padding: 90px 20px; overflow: hidden; place-items: center; background: var(--soft); }
.thank-you::before { position: absolute; top: -180px; left: -100px; width: 520px; height: 520px; border-radius: 50%; background: rgba(15, 91, 69, .08); content: ""; }
.thank-you-card { position: relative; z-index: 1; width: min(680px, 100%); padding: 65px 55px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); text-align: center; }
.thank-you-card > .mdi { display: block; margin-bottom: 18px; color: var(--green); font-size: 4.5rem; line-height: 1; }
.thank-you-card h1 { margin: 0 0 18px; color: var(--ink); font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2.4rem, 5vw, 4rem); }
.thank-you-card p:not(.eyebrow) { max-width: 540px; margin: 0 auto 30px; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr 420px; gap: 38px; }
  .hero-title { font-size: 2.75rem; }
  .credentials-grid { grid-template-columns: repeat(3, 1fr); }
  .credentials p:nth-child(4) { border-left: 1px solid var(--line); }
  .credentials p { border-bottom: 1px solid var(--line); }
}

@media (max-width: 800px) {
  .section { padding: 80px 0; }
  .hero { padding-top: 64px; }
  .hero-grid, .help-grid, .final-form-grid, .footer-inner { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .hero-copy { align-items: center; text-align: center; }
  .brand-image--hero { object-position: center; }
  .hero-lead { margin-inline: auto; }
  .help-grid, .final-form-grid { gap: 46px; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .precedent { padding: 95px 0; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { min-height: auto; }
  .footer-inner { gap: 60px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .shell, .shell--narrow { width: min(100% - 28px, 1160px); }
  .section { padding: 66px 0; }
  .hero { min-height: 0; padding: 50px 0 68px; }
  .brand-image--hero { margin-bottom: 30px; }
  .hero-title { font-size: 2.08rem; }
  .hero-lead { font-size: 1rem; }
  .form-card { padding: 30px 22px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .credentials p { min-height: 74px; padding: 15px 18px; border-left: 1px solid var(--line); }
  .icon-grid { grid-template-columns: 1fr; }
  .icon-card { min-height: 145px; }
  .section-title { margin-bottom: 38px; }
  .precedent { padding: 74px 0; }
  .precedent .button { width: 100%; }
  .faq-list summary { padding-right: 50px; }
  .faq-list details > p, .faq-answer { padding-right: 0; }
  .no-documents { padding: 72px 0; }
  .case-card { padding: 39px 23px 28px; }
  .lead-form--horizontal { grid-template-columns: 1fr; padding: 25px 20px; }
  .lead-form--horizontal label:nth-of-type(3), .consent--full, .lead-form--horizontal .button { grid-column: auto; }
  .footer-contact h2 { font-size: 2.25rem; }
  .footer-contact address a { font-size: .86rem; }
  .thank-you { min-height: 580px; padding: 60px 14px; }
  .thank-you-card { padding: 48px 22px; }
}
