.content-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 92% 9%, rgba(23, 118, 78, 0.08), transparent 25%),
    var(--warm-white);
}

.page-shell {
  position: relative;
  margin: 14px;
  overflow: hidden;
  border-radius: 12px 12px var(--radius-xl) var(--radius-xl);
  background:
    radial-gradient(circle at 11% 82%, rgba(255, 201, 77, 0.2), transparent 25%),
    radial-gradient(circle at 91% 42%, rgba(23, 118, 78, 0.12), transparent 26%),
    linear-gradient(135deg, #fbf7ee 0%, #fffdf8 52%, #f2eadc 100%);
}

.content-page .navbar {
  position: relative;
}

.content-page .nav-links a[aria-current="page"] {
  color: white;
  background: var(--green);
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  width: min(1160px, calc(100% - 48px));
  min-height: 590px;
  margin: 0 auto;
  padding: 70px 0 95px;
}

.page-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.page-hero h1 {
  max-width: 750px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -4px;
}

.page-hero-copy > p:not(.section-tag) {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.6;
}

.page-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
}

.page-hero-art::before,
.page-hero-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.page-hero-art::before {
  width: 330px;
  height: 330px;
  background: var(--yellow);
  opacity: 0.88;
}

.page-hero-art::after {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(23, 118, 78, 0.15);
}

.page-hero-art img {
  position: relative;
  z-index: 2;
  width: min(360px, 90%);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(21, 59, 39, 0.16));
}

.hero-glass-note {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 32px;
  display: grid;
  max-width: 205px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 42px rgba(24, 60, 41, 0.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-glass-note strong {
  color: var(--ink);
  font-size: 17px;
}

.hero-glass-note small {
  color: var(--muted);
}

.page-main {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 105px 0 125px;
}

.page-intro {
  max-width: 820px;
  margin-bottom: 58px;
}

.page-intro h2,
.contact-copy h2,
.contact-form h2,
.faq-heading h2,
.legal-content h2 {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -1.5px;
}

.page-intro h2,
.contact-copy h2,
.contact-form h2,
.faq-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.03;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy {
  position: sticky;
  top: 35px;
}

.contact-copy > p:not(.section-kicker) {
  font-size: 18px;
  line-height: 1.7;
}

.support-list {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.support-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 16px;
  border: 1px solid rgba(23, 118, 78, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 15px 32px rgba(24, 60, 41, 0.07);
}

.support-item span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  color: white;
  background: var(--green);
  font-size: 23px;
}

.support-item div {
  display: grid;
}

.support-item small {
  color: var(--muted);
}

.support-item strong,
.support-item a {
  color: var(--ink);
  font-size: 17px;
}

.contact-note {
  padding: 22px;
  border-left: 5px solid var(--yellow);
  background: var(--yellow-pale);
}

.contact-note strong {
  color: var(--ink);
}

.contact-note p {
  margin: 6px 0 0;
}

.contact-note a,
.legal-content a,
.faq-answer a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 201, 77, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(226, 241, 232, 0.58));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-form h2,
.field-full,
.form-status,
.contact-form .button {
  grid-column: 1 / -1;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea,
.faq-search input {
  width: 100%;
  border: 1px solid #d8e2dc;
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field-group input,
.field-group select {
  height: 56px;
  padding: 0 16px;
  border-radius: 14px;
}

.field-group textarea {
  min-height: 180px;
  resize: vertical;
  padding: 15px 16px;
  border-radius: 14px;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus,
.faq-search input:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(23, 118, 78, 0.11);
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.turnstile-wrap {
  width: 100%;
  min-height: 65px;
  overflow: hidden;
  border-radius: 14px;
}

.turnstile-wrap .cf-turnstile,
.turnstile-wrap iframe {
  width: 100% !important;
  max-width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #b42318;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.legal-toc {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 4px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(23, 56, 38, 0.08);
}

.legal-toc strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
}

.legal-toc a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.legal-toc a:hover {
  color: var(--green);
}

.legal-content {
  max-width: 800px;
}

.legal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
}

.legal-meta span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.legal-lead {
  padding: 26px 28px;
  border-left: 5px solid var(--green);
  background: #f0f7f3;
  color: #42534a;
  font-size: 18px;
  line-height: 1.65;
}

.legal-content section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 28px;
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 17px;
  font-size: 31px;
  line-height: 1.1;
}

.legal-content h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #536159;
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.legal-callout {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--yellow-pale);
}

.legal-callout strong {
  color: var(--ink);
}

.faq-tools {
  max-width: 820px;
  margin: 0 auto 70px;
}

.faq-search {
  position: relative;
  display: block;
}

.faq-search span {
  position: absolute;
  z-index: 2;
  left: 22px;
  top: 50%;
  color: var(--green);
  font-size: 24px;
  transform: translateY(-50%);
}

.faq-search input {
  height: 72px;
  padding: 0 24px 0 62px;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(24, 60, 41, 0.09);
  font-size: 18px;
}

.faq-search-status {
  min-height: 24px;
  margin: 12px 4px 0;
  font-size: 14px;
}

.faq-groups {
  display: grid;
  gap: 78px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-heading {
  margin-bottom: 28px;
}

.faq-heading h2 {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(23, 56, 38, 0.06);
}

.faq-list details[open] {
  border-color: rgba(23, 118, 78, 0.22);
  background: linear-gradient(145deg, white, #f0f8f3);
}

.faq-list summary {
  position: relative;
  padding: 23px 64px 23px 24px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p,
.faq-answer li {
  color: #56655d;
  line-height: 1.7;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-empty {
  padding: 45px;
  border: 1px dashed #c9d7cf;
  border-radius: 22px;
  text-align: center;
}

.support-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 35px;
  margin-top: 90px;
  padding: 42px;
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 201, 77, 0.3), transparent 28%),
    linear-gradient(135deg, var(--green-deep), var(--green));
}

.support-cta h2 {
  margin-bottom: 8px;
  color: white;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}

.support-cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.content-page .site-footer {
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

.confirmation-page {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 201, 77, 0.22), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(23, 118, 78, 0.12), transparent 32%),
    var(--warm-white);
}

.confirmation-shell {
  margin-bottom: 0;
  border-radius: 12px 12px 26px 26px;
}

.confirmation-main {
  display: grid;
  flex: 1;
  place-items: center;
  width: 100%;
  padding: 64px 24px;
}

.confirmation-card {
  width: min(590px, 100%);
  padding: clamp(38px, 7vw, 68px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(7, 17, 13, 0.12);
  text-align: center;
}

.confirmation-mark {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(23, 118, 78, 0.24);
}

.confirmation-mark svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.confirmation-card .eyebrow {
  min-height: 0;
  margin-bottom: 12px;
  padding: 0;
  color: var(--green);
  background: transparent;
}

.confirmation-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 7vw, 62px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.confirmation-copy {
  max-width: 450px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.confirmation-action {
  display: flex;
  min-height: 56px;
  margin-top: 32px;
  color: var(--white);
  background: var(--green);
  box-shadow: none;
}

.confirmation-action:hover {
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 12px 28px rgba(23, 118, 78, 0.22);
}

.confirmation-note {
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.confirmation-card.is-error .confirmation-mark {
  border-color: #fde1dc;
  background: #b42318;
}

.confirmation-footer {
  padding-top: 24px !important;
  border-top: 0 !important;
}

@media (max-width: 900px) {
  .page-hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }

  .page-hero-copy {
    max-width: 800px;
    text-align: center;
  }

  .page-hero-copy > p:not(.section-tag) {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero-art {
    min-height: 340px;
  }

  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .legal-toc {
    position: static;
  }

  .legal-toc {
    grid-template-columns: 1fr 1fr;
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .page-shell {
    margin: 8px;
    border-radius: 8px 8px 30px 30px;
  }

  .page-hero,
  .page-main {
    width: calc(100% - 32px);
  }

  .page-hero {
    min-height: auto;
    gap: 25px;
    padding: 30px 0 60px;
  }

  .page-hero h1 {
    font-size: 52px;
    letter-spacing: -2.5px;
  }

  .page-hero-copy > p:not(.section-tag) {
    font-size: 16px;
  }

  .page-hero-art {
    min-height: 300px;
  }

  .page-hero-art::before {
    width: 245px;
    height: 245px;
  }

  .page-hero-art::after {
    width: 285px;
    height: 285px;
  }

  .page-hero-art img {
    max-height: 300px;
  }

  .hero-glass-note {
    right: 4px;
    bottom: 5px;
    padding: 12px 14px;
  }

  .page-main {
    padding: 70px 0 90px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 25px 20px;
    border-radius: 24px;
  }

  .contact-form h2,
  .field-full,
  .form-status,
  .contact-form .button {
    grid-column: auto;
  }

  .legal-toc {
    grid-template-columns: 1fr 1fr;
    gap: 3px 16px;
    padding: 20px;
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .legal-content h2 {
    font-size: 27px;
  }

  .legal-lead {
    padding: 22px;
    font-size: 16px;
  }

  .faq-search input {
    height: 62px;
    font-size: 16px;
  }

  .faq-list summary {
    padding: 20px 58px 20px 19px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 19px 20px;
  }

  .support-cta {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .support-cta .button {
    width: 100%;
  }

  .confirmation-shell {
    border-radius: 8px 8px 24px 24px;
  }

  .confirmation-main {
    padding: 48px 16px 64px;
  }

  .confirmation-card {
    border-radius: 24px;
  }

  .confirmation-mark {
    width: 78px;
    height: 78px;
  }

  .confirmation-card h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .confirmation-action {
    width: 100%;
  }

  .confirmation-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
