:root {
  --bg: #fffaf0;
  --bg-soft: #f8f2e6;
  --text: #17211f;
  --muted: #5d6865;
  --green: #0f5f45;
  --green-dark: #0a4231;
  --yellow: #ffd15a;
  --red: #d92d20;
  --white: #ffffff;
  --border: rgba(23, 33, 31, 0.12);
  --shadow: 0 18px 60px rgba(10, 66, 49, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; }

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  color: var(--white);
  box-shadow: var(--shadow);
}

.logo-text { letter-spacing: -0.02em; }

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.menu a,
.nav-cta,
.btn,
.text-link {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.hero {
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(255, 209, 90, 0.35), transparent 34%),
    radial-gradient(circle at bottom right, rgba(15, 95, 69, 0.16), transparent 36%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

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

.eyebrow.light { color: var(--yellow); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text,
.lead,
.section-heading p,
.split-card p,
.notice p,
.contact-card p,
.dark-grid p {
  color: var(--muted);
  font-size: 18px;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--border);
}

.trust-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-card,
.feature,
.split-card,
.notice,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
  border-radius: 34px;
}

.card-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 209, 90, 0.35);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 13px;
}

.hero-card ul {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.hero-card li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero-card li::before,
.check-item::before {
  content: "✓";
  position: absolute;
  color: var(--green);
  font-weight: 900;
}

.hero-card li::before {
  left: 0;
}

.text-link {
  color: var(--green);
  font-weight: 800;
}

.section {
  padding: 86px 0;
}

.section-muted {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature {
  padding: 28px;
  border-radius: 28px;
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.feature p,
.step p,
.footer p {
  color: var(--muted);
  margin-bottom: 0;
}

.two-columns,
.dark-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
}

.step strong {
  color: var(--red);
  font-size: 22px;
}

.split-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
}

.checklist {
  display: grid;
  gap: 14px;
}

.check-item {
  position: relative;
  padding: 16px 16px 16px 46px;
  border-radius: 18px;
  background: var(--bg-soft);
  font-weight: 700;
}

.check-item::before {
  left: 18px;
}

.section-dark {
  background: var(--green-dark);
  color: var(--white);
}

.section-dark p { color: rgba(255,255,255,0.74); }

.country-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.country-boxes span {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 800;
}

.notice {
  padding: 36px;
  border-radius: 30px;
  border-left: 8px solid var(--yellow);
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
}

.contact-actions {
  justify-content: flex-end;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 900px) {
  .menu { display: none; }

  .hero-grid,
  .features,
  .two-columns,
  .split-card,
  .dark-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, 1120px); }

  .logo-text { display: none; }

  .nav-cta { padding: 9px 13px; }

  .hero { padding: 64px 0 48px; }

  .section { padding: 62px 0; }

  .hero-card,
  .feature,
  .split-card,
  .notice,
  .contact-card { padding: 24px; }

  .country-boxes { grid-template-columns: 1fr; }

  .step { grid-template-columns: 1fr; }

  .footer-grid {
    display: grid;
  }
}
