:root {
  color-scheme: light;
  --bg: #f7faf7;
  --surface: #ffffff;
  --surface-soft: #eef6f1;
  --text: #17231c;
  --muted: #5f6f66;
  --line: #d9e5dd;
  --primary: #116149;
  --primary-dark: #0b4635;
  --accent: #d7a84b;
  --shadow: 0 18px 44px rgba(20, 45, 35, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(247, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(110deg, rgba(17, 97, 73, 0.92), rgba(15, 45, 38, 0.86)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.page-hero {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
  background: var(--primary);
  color: #fff;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.18;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-inner {
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.18;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  max-width: 900px;
}

.lead {
  margin: 24px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent);
  color: #1e1608;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button.disabled {
  opacity: 0.62;
  pointer-events: none;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  line-height: 1.35;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.check-list li {
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.examples,
.form-section {
  background: var(--surface-soft);
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.steps h3 {
  margin: 0 0 4px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.form-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.notice {
  color: var(--muted);
  font-size: 14px;
}

.notice a {
  color: var(--primary);
  font-weight: 800;
}

.legal-body {
  max-width: 860px;
}

.legal-body h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
}

.legal-body ul {
  padding-left: 1.2em;
}

.policy-date {
  margin-top: 40px;
}

.placeholder-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  color: var(--text);
  background: #f8fbf9;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.operator-box {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.operator-box p {
  margin: 0;
}

.faq details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  color: var(--muted);
}

.footer {
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0 0 6px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid.three,
  .split,
  .form-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  body {
    padding-bottom: 84px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: block;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(247, 250, 247, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(20, 45, 35, 0.12);
    backdrop-filter: blur(14px);
  }

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

@media (max-width: 520px) {
  .nav {
    gap: 10px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }
}
