:root {
  --pe-green: #4a6b42;
  --pe-green-dark: #375330;
  --pe-green-light: #f1f5f0;
  --pe-orange: #c84f00;
  --pe-orange-hover: #a94100;
  --pe-sand: #d1a168;
  --pe-soil: #6e4a31;
  --pe-ink: #19304a;
  --pe-muted: #637285;
  --pe-border: #dfe7e1;
  --pe-soft: #f7f9f7;
  --pe-white: #fff;
  --pe-shadow: 0 18px 48px rgba(55, 83, 48, .09);
  --pe-radius: 18px;
  --pe-content: 1180px;
  --pe-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pe-title: "Outfit", var(--pe-body);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pe-ink);
  background: var(--pe-white);
  font-family: var(--pe-body);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--pe-orange);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--pe-orange-hover);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--pe-green-dark);
  font-family: var(--pe-title);
  line-height: 1.16;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.2vw, 4.6rem);
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  letter-spacing: -.025em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p {
  margin: 0 0 18px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--pe-white);
  background: var(--pe-green-dark);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(223, 231, 225, .9);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--pe-content));
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
}

.brand {
  margin-right: auto;
}

.brand img,
.footer-brand img {
  width: 184px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.login-link {
  color: var(--pe-green-dark);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--pe-orange);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--pe-orange);
  border-radius: 11px;
  color: var(--pe-white);
  background: var(--pe-orange);
  box-shadow: 0 10px 22px rgba(200, 79, 0, .18);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover {
  color: var(--pe-white);
  background: var(--pe-orange-hover);
  box-shadow: 0 13px 28px rgba(200, 79, 0, .24);
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: .875rem;
}

.button-light {
  border-color: var(--pe-white);
  color: var(--pe-green-dark);
  background: var(--pe-white);
  box-shadow: none;
}

.button-light:hover {
  color: var(--pe-green-dark);
  background: var(--pe-green-light);
}

.mobile-nav {
  display: none;
}

main {
  width: min(calc(100% - 40px), var(--pe-content));
  margin: 0 auto;
}

.breadcrumb {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--pe-muted);
  font-size: .78rem;
}

.breadcrumb a {
  color: var(--pe-green-dark);
  font-weight: 650;
  text-decoration: none;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(285px, .7fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  padding: clamp(64px, 9vw, 104px) clamp(26px, 6vw, 76px);
  border: 1px solid var(--pe-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 20%, rgba(209, 161, 104, .24), transparent 31%),
    linear-gradient(140deg, #fff 0%, var(--pe-green-light) 100%);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(74, 107, 66, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(74, 107, 66, .035), 0 0 0 66px rgba(74, 107, 66, .025);
  content: "";
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--pe-orange);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.page-hero > div > p {
  max-width: 760px;
  margin-bottom: 29px;
  color: #526478;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.text-link {
  color: var(--pe-green-dark);
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
}

.hero-panel {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--pe-radius);
  color: var(--pe-white);
  background: var(--pe-green-dark);
  box-shadow: var(--pe-shadow);
}

.hero-panel > span {
  margin-bottom: 16px;
  color: #d9e6d6;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-panel strong {
  color: var(--pe-white);
  font-family: var(--pe-title);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.32;
}

.hero-panel small {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #d9e6d6;
  line-height: 1.5;
}

.page-content > section,
.related-section {
  padding: clamp(70px, 9vw, 106px) clamp(4px, 4vw, 48px);
  border-bottom: 1px solid var(--pe-border);
}

.page-content > section > p,
.page-content > section > ul,
.legal-section > p,
.legal-section > ul {
  max-width: 880px;
  color: #526174;
}

.page-content section a:not(.button) {
  font-weight: 650;
}

.feature-grid,
.steps-grid,
.case-grid,
.contact-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card,
.feature-card,
.case-card,
.contact-card {
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius);
  background: var(--pe-white);
  box-shadow: 0 12px 34px rgba(55, 83, 48, .055);
}

.step-card > span,
.feature-card > span,
.case-card > span,
.contact-card > span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 10px;
  color: var(--pe-green-dark);
  background: var(--pe-green-light);
  font-family: var(--pe-title);
  font-size: .78rem;
  font-weight: 800;
}

.step-card h3,
.feature-card h3,
.case-card h3,
.contact-card h3 {
  margin-top: 19px;
}

.step-card p,
.feature-card p,
.case-card p,
.contact-card p {
  color: var(--pe-muted);
  font-size: .91rem;
}

.case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-card a,
.contact-card a {
  display: inline-flex;
  margin-top: 8px;
}

.contact-grid {
  max-width: 780px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  align-items: center;
  gap: clamp(34px, 7vw, 84px);
}

.note-card,
.status-banner {
  padding: 28px;
  border: 1px solid #d7e2d4;
  border-left: 4px solid var(--pe-green);
  border-radius: 14px;
  background: var(--pe-green-light);
}

.note-card strong,
.status-banner strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pe-green-dark);
  font-family: var(--pe-title);
  font-size: 1.16rem;
}

.note-card p,
.status-banner p {
  margin: 0;
  color: #526174;
  font-size: .92rem;
}

.status-banner {
  max-width: 900px;
  border-left-color: var(--pe-orange);
  background: #fff7ef;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
}

.check-list li::before {
  position: absolute;
  top: .15em;
  left: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pe-white);
  background: var(--pe-green);
  font-size: .7rem;
  font-weight: 900;
  content: "✓";
}

.showcase {
  margin: 32px 0 0;
  padding: clamp(18px, 4vw, 38px);
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius);
  background: var(--pe-soft);
}

.showcase img {
  width: 100%;
  max-height: 540px;
  border-radius: 12px;
  object-fit: contain;
}

.showcase figcaption {
  margin-top: 17px;
  color: var(--pe-muted);
  font-size: .82rem;
  text-align: center;
}

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

.faq-list details {
  padding: 0 22px;
  border: 1px solid var(--pe-border);
  border-radius: 13px;
  background: var(--pe-white);
}

.faq-list summary {
  padding: 19px 34px 19px 0;
  color: var(--pe-green-dark);
  font-family: var(--pe-title);
  font-weight: 700;
  cursor: pointer;
}

.faq-list details p {
  max-width: 820px;
  padding: 0 0 19px;
  color: var(--pe-muted);
}

.legal-section h2 {
  max-width: 900px;
  margin-top: 50px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.legal-section h2:first-of-type {
  margin-top: 25px;
}

.legal-section li {
  margin-bottom: 9px;
}

.legal-updated {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--pe-green-light);
  font-size: .83rem;
  font-weight: 650;
}

.related-section {
  border-bottom: 0;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius);
  color: var(--pe-green-dark);
  background: var(--pe-white);
  box-shadow: 0 12px 32px rgba(55, 83, 48, .055);
  text-decoration: none;
  transition: border .18s ease, transform .18s ease, box-shadow .18s ease;
}

.related-card:hover {
  border-color: #b9cab5;
  color: var(--pe-green-dark);
  box-shadow: var(--pe-shadow);
  transform: translateY(-3px);
}

.related-card > span {
  color: var(--pe-orange);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.related-card strong {
  margin: 14px 0 28px;
  font-family: var(--pe-title);
  font-size: 1.28rem;
  line-height: 1.25;
}

.related-card small {
  margin-top: auto;
  font-weight: 700;
}

.final-cta {
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 88px;
  padding: clamp(38px, 6vw, 66px);
  border-radius: 22px;
  color: var(--pe-white);
  background: var(--pe-green-dark);
  overflow: hidden;
}

.final-cta h2 {
  margin-bottom: 10px;
  color: var(--pe-white);
}

.final-cta p {
  max-width: 680px;
  margin: 0;
  color: #dbe6d9;
}

.final-cta .eyebrow {
  color: #efbd82;
}

.site-footer {
  color: #d8e2d6;
  background: #293f24;
}

.footer-grid,
.footer-bottom {
  width: min(calc(100% - 40px), var(--pe-content));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  padding: 62px 0 48px;
}

.footer-brand img {
  margin-bottom: 18px;
  padding: 3px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
}

.footer-brand p {
  max-width: 320px;
  color: #bdcab9;
  font-size: .88rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 7px;
  color: var(--pe-white);
  font-family: var(--pe-title);
}

.footer-grid a {
  color: #cbd7c8;
  font-size: .84rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--pe-white);
  text-decoration: underline;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #aebdaa;
  font-size: .74rem;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: .8rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    padding: 8px 13px;
    border: 1px solid var(--pe-border);
    border-radius: 9px;
    color: var(--pe-green-dark);
    font-size: .85rem;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(82vw, 330px);
    display: grid;
    padding: 12px;
    border: 1px solid var(--pe-border);
    border-radius: 12px;
    background: var(--pe-white);
    box-shadow: var(--pe-shadow);
  }

  .mobile-nav nav a {
    padding: 11px 10px;
    border-radius: 8px;
    color: var(--pe-green-dark);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav nav a:hover {
    background: var(--pe-green-light);
  }

  .page-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 230px;
  }

  .feature-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 15px;
  }

  .header-inner,
  main,
  .footer-grid,
  .footer-bottom {
    width: min(calc(100% - 24px), var(--pe-content));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 150px;
    height: 40px;
  }

  .breadcrumb {
    min-height: 50px;
  }

  .page-hero {
    padding: 48px 22px;
    border-radius: 18px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .hero-panel {
    padding: 24px;
  }

  .page-content > section,
  .related-section {
    padding: 62px 2px;
  }

  .feature-grid,
  .steps-grid,
  .case-grid,
  .contact-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .feature-card,
  .case-card,
  .contact-card {
    min-height: 0;
  }

  .final-cta {
    margin-bottom: 48px;
    padding: 34px 24px;
    border-radius: 18px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
