@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('font/Inter-Regular.woff2') format('woff2'),
       url('font/Inter-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('font/Inter18pt-SemiBold.woff2') format('woff2'),
       url('font/Inter18pt-SemiBold.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('font/Inter18pt-Bold.woff2') format('woff2'),
       url('font/Inter18pt-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('font/Inter18pt-ExtraBold.woff2') format('woff2'),
       url('font/Inter18pt-ExtraBold.woff') format('woff');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green-dark: #1F6B4E;
  --green-light: #E8F4EF;
  --orange: #E67E22;
  --red: #C0392B;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --max-w: 720px;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
section { padding: 48px 0; }
section:nth-child(even) { background: var(--gray-50); }

h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--gray-800);
  margin-bottom: 20px;
}
p, li { color: var(--gray-600); }
p { margin-bottom: 16px; }

ul, ol { padding-left: 24px; margin-bottom: 20px; }
li { margin-bottom: 8px; }
li strong { color: var(--gray-800); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}
.btn-primary:hover { background: #17573F; }
.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: #CF6D17; }

.hero {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--white) 100%);
  padding: 56px 0 48px;
}
.hero-badge {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero-quick {
  background: var(--white);
  border-left: 4px solid var(--green-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.hero-quick h3 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.hero-quick ul { list-style: none; padding: 0; margin: 0; }
.hero-quick li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.hero-quick li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.checklist ol {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.checklist li {
  counter-increment: step;
  padding: 16px 16px 16px 60px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.checklist li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 32px;
  height: 32px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
thead { background: var(--green-dark); color: var(--white); }
th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(odd) { background: var(--gray-50); }
.risk-low { color: var(--green-dark); font-weight: 600; }
.risk-mid { color: var(--orange); font-weight: 600; }
.risk-high { color: var(--red); font-weight: 700; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  margin-bottom: 16px;
}
.card-green { border-left: 4px solid var(--green-dark); }
.card-red { border-left: 4px solid var(--red); }

.warn-box {
  background: #FFF3E0;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}
.warn-box ul { list-style: none; padding: 0; margin: 0; }
.warn-box li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-800);
  font-weight: 600;
}
.warn-box li::before {
  content: '\274C';
  position: absolute;
  left: 0;
}

.risk-list { list-style: none; padding: 0; }
.risk-list li {
  padding: 12px 16px 12px 44px;
  position: relative;
  background: #FEF2F2;
  border-radius: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--red);
}
.risk-list li::before {
  content: '\26A0';
  position: absolute;
  left: 16px;
  top: 12px;
}

.flow-steps {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1;
  min-width: 140px;
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.flow-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.flow-step p { font-size: .9rem; font-weight: 600; color: var(--gray-800); margin: 0; }

.source-list { list-style: none; padding: 0; }
.source-list li {
  padding: 12px 16px;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid var(--gray-200);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.source-icon {
  width: 36px;
  height: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

section.ebook-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #145A3E 100%);
  color: var(--white);
  padding: 56px 0;
}
.ebook-section h2 { color: var(--white); }
.ebook-section p { color: rgba(255,255,255,.85); }
.ebook-card {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0;
}
.ebook-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.ebook-card li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,.95);
}
.ebook-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #6EE7B7;
  font-weight: 700;
}
.ebook-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.ebook-price-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}
.ebook-notice {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

.container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 20px 0;
  display: block;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  animation: pulse 2s infinite;
}
.sticky-cta .btn {
  box-shadow: 0 4px 20px rgba(31,107,78,.4);
  font-size: .9rem;
  padding: 14px 20px;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
  padding: 20px;
  z-index: 1000;
  transform: translateY(0);
  transition: transform .3s ease;
}
.consent-banner.hidden { transform: translateY(100%); pointer-events: none; }
.consent-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.consent-banner p {
  font-size: .85rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.consent-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.consent-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .15s;
}
.consent-btn-essential {
  background: var(--gray-200);
  color: var(--gray-800);
}
.consent-btn-essential:hover { background: var(--gray-100); }
.consent-btn-allow {
  background: var(--green-dark);
  color: var(--white);
}
.consent-btn-allow:hover { background: #17573F; }

.seo-text { font-size: .95rem; line-height: 1.8; }

.legal-footer {
  padding: 24px 0;
  background: var(--gray-800);
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  text-align: center;
}
.legal-footer a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
}

@media (min-width: 640px) {
  section { padding: 64px 0; }
  .container { padding: 0 32px; }
  .hero { padding: 72px 0 64px; }
  .ebook-section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .flow-steps { flex-direction: column; }
  .sticky-cta .btn { font-size: .8rem; padding: 12px 16px; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
