:root {
  color-scheme: light;
  --green-950: #123c2d;
  --green-800: #1d6649;
  --green-650: #159963;
  --green-100: #eaf7f0;
  --paper: #fffdf7;
  --cream: #f7f3e6;
  --line: rgba(18, 60, 45, 0.14);
  --muted: #61746b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--green-950);
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 190, 59, .24), transparent 26rem),
    linear-gradient(180deg, #fbf8ed, var(--paper));
  line-height: 1.55;
}
a { color: inherit; }
.seo-shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.seo-header {
  position: sticky; top: 0; z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, .92);
  backdrop-filter: blur(12px);
}
.seo-header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.seo-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 900; font-size: 20px; }
.seo-brand-icon { width: 44px; height: 44px; border-radius: 14px; object-fit: cover; box-shadow: 0 7px 20px rgba(93, 63, 4, .16); }
.seo-header-link { text-decoration: none; font-weight: 800; color: var(--green-800); }
.seo-hero { padding: 76px 0 52px; }
.seo-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 42px; align-items: center; }
.seo-kicker { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: var(--green-100); color: var(--green-800); font-size: 13px; font-weight: 900; }
h1 { max-width: 820px; margin: 18px 0 18px; font-size: clamp(38px, 6vw, 72px); line-height: 1.02; letter-spacing: -.05em; }
.seo-lead { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(18px, 2.2vw, 23px); }
.seo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.seo-button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 15px; text-decoration: none; font-weight: 900; }
.seo-button--primary { color: white; background: linear-gradient(145deg, #16a56b, #087a4c); box-shadow: 0 14px 30px rgba(8, 122, 76, .23); }
.seo-button--secondary { border: 1px solid var(--line); background: white; }
.seo-visual { min-height: 360px; position: relative; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.8); border-radius: 36px; background: linear-gradient(150deg, #ffd35f, #f5a918); box-shadow: 0 28px 70px rgba(105, 70, 5, .18); }
.seo-visual::after { content: ""; position: absolute; inset: auto -5% -24% -5%; height: 55%; background: repeating-linear-gradient(75deg, transparent 0 15px, rgba(48,118,58,.26) 16px 18px); transform: rotate(-4deg); }
.seo-visual img { position: relative; z-index: 1; width: min(58%, 260px); aspect-ratio: 1; border-radius: 28%; object-fit: cover; box-shadow: 0 24px 52px rgba(89, 52, 0, .24); }
.seo-section { padding: 44px 0; }
.seo-section h2 { margin: 0 0 14px; font-size: clamp(28px, 4vw, 44px); letter-spacing: -.035em; }
.seo-section-intro { max-width: 760px; margin: 0 0 26px; color: var(--muted); font-size: 18px; }
.seo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.seo-card { padding: 24px; border: 1px solid var(--line); border-radius: 23px; background: rgba(255,255,255,.82); box-shadow: 0 12px 35px rgba(25, 61, 46, .06); }
.seo-card b { display: block; margin-bottom: 8px; font-size: 19px; }
.seo-card p { margin: 0; color: var(--muted); }
.seo-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; padding: 0; list-style: none; }
.seo-list li { position: relative; padding: 14px 16px 14px 44px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.seo-list li::before { content: "✓"; position: absolute; left: 15px; top: 13px; color: var(--green-650); font-weight: 1000; }
.seo-faq details { margin: 10px 0; padding: 18px 20px; border: 1px solid var(--line); border-radius: 17px; background: white; }
.seo-faq summary { cursor: pointer; font-weight: 900; }
.seo-faq p { color: var(--muted); }
.seo-cta { margin: 34px 0 62px; padding: 34px; border-radius: 28px; color: white; background: linear-gradient(145deg, #1a7653, #0b4c36); }
.seo-cta h2 { margin: 0 0 8px; }
.seo-cta p { max-width: 680px; margin: 0 0 22px; color: rgba(255,255,255,.78); }
.seo-cta .seo-button--primary { color: var(--green-950); background: #ffd05a; }
.seo-footer { padding: 26px 0 38px; border-top: 1px solid var(--line); color: var(--muted); }
.seo-footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.seo-footer nav { display: flex; flex-wrap: wrap; gap: 16px; }
@media (max-width: 780px) {
  .seo-header-inner { min-height: 62px; }
  .seo-header-link { font-size: 14px; }
  .seo-hero { padding-top: 48px; }
  .seo-hero-grid { grid-template-columns: 1fr; }
  .seo-visual { min-height: 290px; }
  .seo-grid, .seo-list { grid-template-columns: 1fr; }
  .seo-card { padding: 20px; }
}
