/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* === VARIABLES === */
:root {
  --green: #19723c;
  --green-dark: #125c30;
  --green-light: #90EE90;
  --white: #FFFFFF;
  --off-white: #F0FFF0;
  --text: #1a1a1a;
  --text-light: #555555;
  --radius: 8px;
  --shadow: 0 2px 4px rgba(0,0,0,0.06);
  --max-width: 1000px;
}

/* === TYPOGRAPHY (Lato) === */
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Lato', sans-serif;
  line-height: 1.25;
  color: var(--green-dark);
}

h1 { font-size: 2.25rem; font-weight: 900; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--green-light); outline-offset: 2px; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* === HEADER / NAV === */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo span { color: var(--green-light); font-weight: 400; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--green); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--green);
  cursor: pointer;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section--alt {
  background: var(--off-white);
  max-width: 100%;
  padding: 6rem 1.5rem;
}
.section--alt .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* === CTA BUTTON === */
.cta-btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
}
.cta-btn:hover { background: var(--green-dark); color: var(--white); text-decoration: none; transform: translateY(-1px); }

.cta-btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.cta-btn--outline:hover { background: var(--green); color: var(--white); }

/* === HERO: ICON-STEP GUIDE === */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.hero h1 { margin-bottom: 1.5rem; }
.hero p { max-width: 600px; margin: 0 auto 3rem; color: var(--text-light); font-size: 1.1rem; }

.hero-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.hero-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-step__circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--off-white);
  border: 3px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.hero-step__label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-dark);
}

.hero-step__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  max-width: 120px;
}

.hero-connector {
  width: 60px;
  height: 3px;
  background: var(--green-light);
  margin-bottom: 2.5rem;
}

/* === TRUST BADGES === */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.trust-badge__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* === CARDS === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--off-white);
  border: 1px solid #d4ecd4;
  border-radius: var(--radius);
  padding: 2rem;
}

.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--text-light); margin-bottom: 1rem; }
.card a { font-weight: 600; }

/* === TABLE === */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.info-table th,
.info-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid #d4ecd4;
}
.info-table th {
  background: var(--off-white);
  font-weight: 700;
  color: var(--green-dark);
  width: 35%;
}
.info-table td { color: var(--text); }

/* === STEPS === */
.steps { counter-reset: step; margin-bottom: 3rem; }
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.step__number {
  counter-increment: step;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step__content { flex: 1; }
.step__content h3 { margin-bottom: 0.25rem; }
.step__content p { color: var(--text-light); margin-bottom: 0; }

/* === FAQ === */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #d4ecd4;
  padding: 1.5rem 0;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--green-dark);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--green);
  font-weight: 700;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item p {
  margin-top: 0.75rem;
  color: var(--text-light);
}

/* === BREADCRUMB === */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--green); }
.breadcrumb span { margin: 0 0.35rem; }

/* === FOOTER === */
.site-footer {
  border-top: 2px solid #d4ecd4;
  padding: 3rem 1.5rem;
  text-align: center;
  margin-top: 3rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 1.5rem;
}
.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-links a:hover { color: var(--green); }

.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.8rem;
  color: #aaa;
}

/* === GAME GRID === */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: var(--off-white);
  border: 1px solid #d4ecd4;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.game-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.game-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.game-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.75rem; }

/* === BONUS CARD === */
.bonus-card {
  background: var(--off-white);
  border: 1px solid #d4ecd4;
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.bonus-card h3 { color: var(--green); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .section { padding: 3rem 1.5rem; }
  .section--alt { padding: 3rem 1.5rem; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-bottom: 3px solid var(--green-light);
    gap: 1rem;
  }
  .nav-links.active { display: flex; }

  .hero { padding: 1.5rem 1rem 1.25rem; }
  .hero h1 { font-size: 1.4rem; margin-bottom: 0.4rem; }
  .hero p { font-size: 0.9rem; margin-bottom: 1rem; }
  .hero-steps { flex-direction: row; gap: 0.25rem; margin-bottom: 1rem; }
  .hero-step { gap: 0.3rem; }
  .hero-step__circle { width: 48px; height: 48px; font-size: 1.2rem; border-width: 2px; }
  .hero-step__label { font-size: 0.75rem; }
  .hero-step__desc { font-size: 0.65rem; max-width: 80px; }
  .hero-connector { width: 20px; height: 2px; margin-bottom: 1.5rem; }

  .trust-badges { gap: 1rem; }

  .card-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }

  .step { gap: 1rem; }

  .info-table th { width: 40%; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .game-grid { grid-template-columns: 1fr; }
  .hero-step__circle { width: 40px; height: 40px; font-size: 1rem; }
  .hero-step__desc { display: none; }
  .hero h1 { font-size: 1.2rem; }
}
