:root {
  --green-950: #062d22;
  --green-900: #074333;
  --green-800: #0b5b43;
  --green-700: #0d744f;
  --green-600: #138b61;
  --green-500: #18a46f;
  --green-100: #dff8ed;
  --green-050: #f2fff8;
  --white: #ffffff;
  --cream: #fbfff9;
  --ink: #162c25;
  --muted: #60746d;
  --line: #d7eadf;
  --shadow: 0 22px 70px rgba(6, 67, 51, .12);
  --shadow-soft: 0 12px 38px rgba(6, 67, 51, .08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--green-050), #ffffff 340px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--green-900);
  color: var(--white);
}
.skip-link:focus { left: 12px; }
.identity-strip {
  background: var(--green-950);
  color: #d7ffec;
  font-size: 13px;
}
.strip-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 8px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 116, 79, .12);
}
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -.03em;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-900), var(--green-500));
  box-shadow: 0 10px 24px rgba(13, 116, 79, .24);
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 18px; letter-spacing: -.02em; }
.brand-copy small { color: var(--muted); font-size: 12px; margin-top: 3px; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.primary-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #34534a;
  font-size: 15px;
  font-weight: 700;
}
.primary-nav a:hover,
.primary-nav a.active {
  background: var(--green-100);
  color: var(--green-900);
}
.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: var(--green-100);
  color: var(--green-900);
  border-radius: 14px;
  padding: 10px 12px;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  display: block;
  margin: 4px 0;
}
.menu-toggle em { font-style: normal; }
.hero {
  padding: 52px 0 32px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-800);
  background: var(--green-100);
  border: 1px solid rgba(13, 116, 79, .13);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #d9fff0;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}
h1, h2, h3, h4 { line-height: 1.12; margin: 0; color: var(--green-950); }
h1 { font-size: clamp(42px, 6vw, 76px); letter-spacing: -.065em; margin-top: 18px; }
h2 { font-size: clamp(31px, 4vw, 48px); letter-spacing: -.05em; }
h3 { font-size: 22px; letter-spacing: -.03em; }
p { margin: 0; color: var(--muted); }
.hero-copy p {
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 20px);
  max-width: 640px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green-800), var(--green-500));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(13, 116, 79, .24);
}
.btn-secondary {
  background: var(--white);
  color: var(--green-900);
  border-color: var(--line);
}
.btn-light {
  background: var(--white);
  color: var(--green-900);
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
  max-width: 650px;
}
.proof-pill {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
}
.hero-panel {
  position: relative;
  isolation: isolate;
  border-radius: 40px;
  padding: 18px;
  background: radial-gradient(circle at 20% 10%, #b6ffd7 0 18%, transparent 35%), linear-gradient(145deg, #ffffff, #e8fff2 58%, #d2f8e2);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 116, 79, .13);
}
.hero-panel:before {
  content: "";
  position: absolute;
  inset: 32px -22px -22px 70px;
  background: var(--green-700);
  opacity: .12;
  border-radius: inherit;
  z-index: -1;
}
.hero-image-card {
  border-radius: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 116, 79, .12);
}
.hero-image-card img { width: 100%; }
.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.panel-stats div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
}
.panel-stats strong { display: block; color: var(--green-900); font-size: 22px; letter-spacing: -.03em; }
.panel-stats span { display: block; color: var(--muted); font-size: 12px; }
.section { padding: 70px 0; }
.section.tight { padding-top: 34px; }
.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 17px; }
.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.info-card .icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 24px;
  margin-bottom: 18px;
}
.info-card p { margin-top: 10px; }
.image-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.image-card .image-body { padding: 22px; }
.image-card img { width: 100%; background: var(--green-050); }
.space-list {
  display: grid;
  gap: 16px;
}
.space-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.space-row img { border-radius: 18px; background: var(--green-050); }
.space-row p { margin-top: 4px; }
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 900;
  padding: 7px 10px;
  font-size: 12px;
  white-space: nowrap;
}
.green-band {
  background: linear-gradient(135deg, var(--green-950), var(--green-700));
  color: var(--white);
  border-radius: 42px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  position: relative;
}
.green-band:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  right: -120px;
  top: -100px;
}
.green-band h2, .green-band h3 { color: var(--white); }
.green-band p { color: #d8f7e9; }
.band-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.check-list {
  display: grid;
  gap: 12px;
}
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 14px;
}
.check-item span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #b8ffd7;
  color: var(--green-950);
  font-weight: 900;
  flex: 0 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}
.step-card {
  counter-increment: steps;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.step-card:before {
  content: counter(steps, decimal-leading-zero);
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 18px;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}
.step-card p { margin-top: 10px; }
.notice-stack {
  display: grid;
  gap: 12px;
}
.policy-note, .notice {
  border-left: 5px solid var(--green-600);
  background: var(--green-050);
  border-radius: 16px;
  padding: 16px;
  color: var(--green-950);
}
.policy-note strong, .notice strong { color: var(--green-900); }
.page-hero {
  padding: 54px 0 38px;
  background: radial-gradient(circle at 10% 10%, rgba(24, 164, 111, .18), transparent 28%), linear-gradient(180deg, var(--green-050), #fff);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 880px; }
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); }
.page-hero p { margin-top: 18px; font-size: 18px; max-width: 760px; }
.content-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: start;
}
.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-soft);
}
.content-card p + p { margin-top: 14px; }
.content-card ul { margin: 16px 0 0; padding-left: 20px; color: var(--muted); }
.content-card li + li { margin-top: 10px; }
.sidebar-card {
  background: var(--green-950);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: sticky;
  top: 112px;
}
.sidebar-card h3 { color: var(--white); }
.sidebar-card p, .sidebar-card a { color: #ddffef; }
.sidebar-card .btn { margin-top: 18px; color: var(--green-900); }
.form-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
  align-items: start;
}
.inquiry-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--green-950);
  margin-bottom: 14px;
}
label span { color: #c22a2a; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfe5d8;
  background: #fbfffd;
  color: var(--ink);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  min-height: 48px;
}
textarea { resize: vertical; min-height: 130px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(24, 164, 111, .13);
}
.form-note {
  font-size: 13px;
  margin: -2px 0 16px;
}
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--green-950);
  font-weight: 900;
  cursor: pointer;
}
.faq-question span { color: var(--green-700); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.footer-cta {
  margin-top: 50px;
  background: var(--green-900);
  color: var(--white);
}
.footer-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px 0;
}
.footer-cta h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); }
.footer-cta p { margin-top: 12px; color: #dffced; max-width: 760px; }
.site-footer {
  background: var(--green-950);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .65fr .75fr 1fr;
  gap: 28px;
  padding: 46px 0 28px;
}
.footer-brand .brand-copy strong, .footer-brand .brand-copy small { color: var(--white); }
.footer-grid h3 { color: var(--white); font-size: 16px; margin-bottom: 14px; }
.footer-grid a, .footer-grid p { display: block; color: #d6f5e7; margin: 0 0 10px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
}
.footer-bottom p { color: #c1ead6; font-size: 13px; max-width: 780px; }
.alert {
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.alert.success { background: var(--green-050); color: var(--green-900); }
.alert.error { background: #fff4f4; color: #8a1f1f; border-color: #f0cccc; }

@media (max-width: 1020px) {
  .hero-grid, .split-section, .band-grid, .content-grid, .form-wrap { grid-template-columns: 1fr; }
  .hero-panel { max-width: 740px; margin: 0 auto; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--container)); }
  .strip-hide { display: none; }
  .nav-shell { min-height: 70px; }
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    inset: 100% 14px auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { border-radius: 14px; }
  .hero { padding-top: 36px; }
  .hero-grid { gap: 28px; }
  .hero-proof { grid-template-columns: 1fr; }
  .panel-stats { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .space-row { grid-template-columns: 76px 1fr; }
  .space-row .badge { grid-column: 1 / -1; justify-content: center; }
  .footer-cta-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 10px; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(38px, 12vw, 54px); }
  .brand-mark { width: 42px; height: 42px; border-radius: 13px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { display: none; }
  .card-grid, .steps, .footer-grid, .form-row.two { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .green-band { border-radius: 28px; padding: 24px; }
  .space-row { grid-template-columns: 1fr; text-align: left; }
  .space-row img { width: 100%; max-height: 190px; object-fit: cover; }
  .content-card, .inquiry-form { border-radius: 22px; }
}

/* Image stability and responsive rendering */
.hero-image-card picture,
.image-card picture {
  display: block;
  width: 100%;
  overflow: hidden;
}
.hero-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.space-row picture,
.space-row img {
  display: block;
}
.space-row img {
  width: 92px;
  height: 70px;
  object-fit: cover;
}

@media (max-width: 620px) {
  .hero-image-card img { aspect-ratio: 4 / 3; }
  .space-row img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
}

/* Fresh visual sections */
.visual-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}
.visual-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
}
.visual-card.visual-wide {
  grid-row: span 2;
}
.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--green-050);
}
.visual-card.visual-wide img {
  height: 100%;
  min-height: 420px;
}
.visual-card div {
  padding: 20px;
}
.visual-card p { margin-top: 8px; }
.feature-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.contact-photo {
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.contact-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 1020px) {
  .visual-grid { grid-template-columns: 1fr; }
  .visual-card.visual-wide { grid-row: auto; }
  .visual-card.visual-wide img { min-height: auto; }
}

@media (max-width: 620px) {
  .visual-card img,
  .feature-photo-card img,
  .contact-photo img { aspect-ratio: 4 / 3; }
}
