/* ===== CSS Variables ===== */
:root {
  --pine-deep: #1a3a2a;
  --pine-mid: #2d5a3d;
  --pine-light: #4a7a55;
  --bark-dark: #3d2518;
  --bark-mid: #5c3d2e;
  --bark-light: #8b6347;
  --fire-orange: #e8822a;
  --fire-warm: #f5a623;
  --fire-glow: #f5c842;
  --beige: #f0e6d3;
  --beige-dark: #d4c4a8;
  --text-on-dark: #f0e6d3;
  --text-on-dark-muted: #e8dcc8;
  --cream: #faf6ef;
  --moss: #6b8f5e;
  --text-dark: #1a2e1a;
  --text-mid: #3d4f3d;
  --text-light: #f0e6d3;
  --acorn-gold: #c9922a;
  --danger: #c0392b;
  --success: #27ae60;
  --shadow: rgba(26, 46, 26, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font-body: "Nunito", sans-serif;
  --font-heading: "Bitter", serif;
  --header-height: 72px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pine-mid);
  text-decoration: underline;
  transition: color var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--fire-orange);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--pine-deep);
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
}
h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}
h3 {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}

ul,
ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.section--dark {
  background-color: var(--pine-deep);
  color: var(--text-light);
}

.section--dark h2,
.section--dark h3 {
  color: var(--beige);
}

.section--wood {
  background-color: var(--bark-mid);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233d2518' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: var(--text-light);
}

.section--wood h2 {
  color: var(--beige);
}
#why-kiwis .card__body p {
  color: #000;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title p {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

.section--dark .section-title p,
.section--wood .section-title p {
  color: var(--text-on-dark-muted);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn:focus-visible {
  outline: 3px solid var(--fire-glow);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-warm));
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 130, 42, 0.4);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--fire-warm), var(--fire-glow));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 130, 42, 0.5);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--pine-deep);
  border: 2px solid var(--pine-mid);
}

.btn--secondary:hover {
  background: var(--pine-mid);
  color: var(--text-light);
}

.cookie-banner .btn--secondary,
.game-page .btn--secondary {
  color: var(--beige);
  border-color: var(--beige);
}

.cookie-banner .btn--secondary:hover,
.game-page .btn--secondary:hover {
  background: rgba(240, 230, 211, 0.15);
  color: var(--fire-glow);
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--danger {
  background: var(--danger);
  color: #fff;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 58, 42, 0.95);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  border-bottom: 2px solid var(--bark-mid);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--beige);
}

.site-logo svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .site-logo__text {
    display: none;
  }
}

.site-logo__text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-on-dark-muted);
}

.acorn-balance {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 146, 42, 0.2);
  border: 1px solid var(--acorn-gold);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  color: var(--fire-glow);
  font-weight: 700;
  font-size: 0.9rem;
}

.acorn-balance svg {
  width: 20px;
  height: 20px;
}

/* Desktop Nav */
.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--beige);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    background var(--transition),
    color var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  background: rgba(232, 130, 42, 0.2);
  color: var(--fire-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.hamburger:focus-visible {
  outline: 3px solid var(--fire-glow);
  outline-offset: 2px;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--beige);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--pine-deep);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-left: 3px solid var(--bark-mid);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(240, 230, 211, 0.15);
}

.mobile-menu__close {
  background: none;
  border: none;
  color: var(--beige);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.mobile-menu__close:focus-visible {
  outline: 3px solid var(--fire-glow);
  outline-offset: 2px;
}

.mobile-menu nav ul {
  list-style: none;
  padding: 0;
}

.mobile-menu nav li {
  margin-bottom: 0.25rem;
}

.mobile-menu nav a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--beige);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible,
.mobile-menu nav a.active {
  background: rgba(232, 130, 42, 0.2);
  color: var(--fire-glow);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 58, 42, 0.7) 0%,
    rgba(26, 58, 42, 0.5) 50%,
    rgba(26, 46, 26, 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  background: rgba(232, 130, 42, 0.25);
  border: 1px solid var(--fire-orange);
  color: var(--fire-glow);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--beige);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  color: var(--text-on-dark-muted);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  border: 1px solid var(--beige-dark);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow);
}

.card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  margin-bottom: 0.5rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--fire-orange);
}

/* Game Cards */
.game-card {
  background: linear-gradient(145deg, var(--pine-mid), var(--pine-deep));
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--bark-mid);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.game-card__visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

.game-card__visual svg {
  width: 80px;
  height: 80px;
}

.game-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card__body {
  padding: 1.5rem;
  color: var(--beige);
}

.game-card__body h3 {
  color: var(--fire-glow);
  margin-bottom: 0.5rem;
}

.game-card__body p {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 1rem;
}

/* ===== Charter Box ===== */
.charter-box {
  background: linear-gradient(135deg, var(--pine-deep), var(--bark-dark));
  border: 2px solid var(--fire-orange);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--beige);
  position: relative;
  overflow: hidden;
}

.charter-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 130, 42, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.charter-box h2 {
  color: var(--fire-glow);
  margin-bottom: 1rem;
}

.charter-box ul {
  list-style: none;
  padding: 0;
}

.charter-box li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

.charter-box li::before {
  content: "🌲";
  position: absolute;
  left: 0;
}

.charter-badge {
  display: inline-block;
  background: var(--fire-orange);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px var(--shadow);
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-warm));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pine-deep);
  transition: background var(--transition);
}

.faq-item__question:hover,
.faq-item__question:focus-visible {
  background: var(--beige);
  outline: none;
}

.faq-item__question:focus-visible {
  box-shadow: inset 0 0 0 3px var(--fire-glow);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-mid);
}

/* ===== Safe Harbour ===== */
.safe-harbour {
  background: linear-gradient(135deg, #1a2e1a, var(--pine-deep));
  border-top: 4px solid var(--fire-orange);
  padding: 3rem 0;
  color: var(--beige);
}

.safe-harbour h2 {
  color: var(--fire-glow);
}

.safe-harbour a {
  color: var(--fire-glow);
}

.helpline-box {
  background: rgba(232, 130, 42, 0.15);
  border: 1px solid var(--fire-orange);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.helpline-box a {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.safe-harbour .safe-harbour__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bark-dark);
  color: var(--text-on-dark-muted);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: var(--beige);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--fire-glow);
}

.footer-bottom {
  border-top: 1px solid rgba(240, 230, 211, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 1rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

/* ===== Modals ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s ease;
  border: 2px solid var(--bark-mid);
}

.modal-overlay.is-open .modal {
  transform: scale(1) translateY(0);
}

.modal h2 {
  margin-bottom: 1rem;
}

.modal p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.modal__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-mid);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal__close:focus-visible {
  outline: 3px solid var(--fire-glow);
}

.modal--relative {
  position: relative;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--pine-deep);
  color: var(--beige);
  padding: 1.25rem;
  border-top: 3px solid var(--fire-orange);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--fire-glow);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--pine-deep);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--fire-orange);
  box-shadow: 0 0 0 3px rgba(232, 130, 42, 0.2);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, var(--pine-deep), var(--bark-dark));
  color: var(--beige);
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  text-align: center;
}

.page-header h1 {
  color: var(--beige);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--text-on-dark-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Content Page ===== */
.content-page {
  padding: 3rem 0 4rem;
}

.content-page .container {
  max-width: 800px;
}

.content-page h2 {
  margin: 2rem 0 1rem;
  font-size: 1.35rem;
}

.content-page h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.1rem;
}

.content-page p,
.content-page li {
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== Benefits Grid ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px var(--shadow);
  border-left: 4px solid var(--fire-orange);
}

.benefit-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.benefit-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.benefit-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.progress-bar {
  height: 8px;
  background: var(--beige-dark);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--fire-orange), var(--fire-glow));
  border-radius: 4px;
  width: 0;
  transition: width 1.2s ease;
}

.progress-bar__fill.is-animated {
  width: var(--progress, 100%);
}

/* ===== Daily Bonus ===== */
.daily-bonus {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(145deg, #fff, var(--cream));
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 30px var(--shadow);
}

.daily-bonus__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.daily-bonus__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.35rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 2px solid var(--beige-dark);
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.daily-bonus__day-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-mid);
}

.daily-bonus__gift-icon {
  width: 36px;
  height: 36px;
  color: var(--bark-mid);
}

.daily-bonus__day-reward {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pine-deep);
}

.daily-bonus__day-status {
  font-size: 0.65rem;
  color: var(--text-mid);
  line-height: 1.2;
}

.daily-bonus__day--active {
  border-color: var(--fire-orange);
  background: linear-gradient(
    160deg,
    rgba(232, 130, 42, 0.12),
    rgba(245, 200, 66, 0.08)
  );
  box-shadow: 0 0 0 3px rgba(232, 130, 42, 0.25);
  transform: translateY(-4px);
}

.daily-bonus__day--active .daily-bonus__gift-icon {
  color: var(--fire-orange);
}

.daily-bonus__day--active .daily-bonus__day-reward {
  color: var(--fire-orange);
}

.daily-bonus__day--claimed {
  border-color: var(--pine-mid);
  background: rgba(45, 90, 61, 0.08);
  opacity: 0.85;
}

.daily-bonus__day--claimed .daily-bonus__gift-icon {
  color: var(--pine-mid);
}

.daily-bonus__day--locked {
  opacity: 0.55;
}

.daily-bonus__progress {
  margin-bottom: 1.25rem;
}

.daily-bonus__progress-label {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  text-align: center;
}

.daily-bonus__message {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.daily-bonus__actions {
  display: flex;
  justify-content: center;
}

.daily-bonus__actions .btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.footer-support-link {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}

.footer-support-link img {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer-support-link:hover img,
.footer-support-link:focus-visible img {
  opacity: 1;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-badges__link {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}

.footer-badges__link img {
  height: 32px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-badges__link:hover img,
.footer-badges__link:focus-visible img {
  opacity: 1;
}

@media (max-width: 768px) {
  .daily-bonus__days {
    grid-template-columns: repeat(4, 1fr);
  }

  .daily-bonus__day:nth-child(5) {
    grid-column: 2;
  }
}

@media (max-width: 480px) {
  .daily-bonus {
    padding: 1.25rem 1rem;
  }

  .daily-bonus__days {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .daily-bonus__day:nth-child(5),
  .daily-bonus__day:nth-child(6),
  .daily-bonus__day:nth-child(7) {
    grid-column: auto;
  }

  .daily-bonus__day:nth-child(7) {
    grid-column: 2;
  }

  .daily-bonus__gift-icon {
    width: 28px;
    height: 28px;
  }

  .daily-bonus__day-reward {
    font-size: 0.75rem;
  }
}

/* ===== Legal Pages ===== */
.legal-content {
  padding: 3rem 0 4rem;
}

.legal-content .container {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--beige-dark);
}

.legal-content h2:first-of-type {
  margin-top: 1.5rem;
  border-top: none;
  padding-top: 0;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info {
  background: var(--pine-deep);
  color: var(--beige);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-info h2 {
  color: var(--fire-glow);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
