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

:root {
  --green-dark: #1a3a1a;
  --green-mid: #2d5a27;
  --green-light: #4a8c3f;
  --green-pale: #e8f5e3;
  --green-accent: #6bbf5e;
  --brown: #5c3d1e;
  --cream: #f9f5ee;
  --text: #1a2a18;
  --text-muted: #4a5e48;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(13,43,13,0.82) 0%, rgba(26,74,18,0.72) 45%, rgba(45,110,32,0.78) 100%),
    url('photo3.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 100%, rgba(13,43,13,0.55) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating grass blades */
.grass-anim {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
}
.blade {
  position: absolute;
  bottom: 0;
  width: 4px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #1a4a12, #4a8c3f);
  transform-origin: bottom center;
  animation: sway 3s ease-in-out infinite alternate;
}

@keyframes sway {
  from { transform: rotate(-6deg); }
  to   { transform: rotate(6deg); }
}

/* ── Lusitaania teod (huumoriga) ── */
.slug {
  position: absolute;
  bottom: var(--slug-bottom, 38px);
  left: -160px;
  width: var(--slug-w, 150px);
  z-index: 3;
  animation: crawl var(--slug-dur, 26s) linear infinite;
  animation-delay: var(--slug-delay, 0s);
  transform-origin: bottom center;
}
.slug svg { display: block; width: 100%; height: auto; }
.slug .slug-body { animation: squish 1.6s ease-in-out infinite; transform-origin: center bottom; }

.slug-bubble {
  position: absolute;
  bottom: 100%;
  left: 52%;
  transform: translateX(-10%);
  background: #fff;
  color: #1a2a18;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  opacity: 0;
  animation: bubblePop var(--slug-dur, 26s) linear infinite;
  animation-delay: var(--slug-delay, 0s);
}
.slug-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 22px;
  border: 7px solid transparent;
  border-top-color: #fff;
}

@keyframes crawl {
  0%   { left: -160px; transform: scaleX(1); }
  44%  { left: calc(60% - 75px); transform: scaleX(1); }
  50%  { left: calc(60% - 75px); transform: scaleX(1); }
  56%  { left: calc(60% - 75px); transform: scaleX(-1); }
  100% { left: 110%; transform: scaleX(-1); }
}
@keyframes squish {
  0%, 100% { transform: scaleX(1) scaleY(1); }
  50%      { transform: scaleX(1.08) scaleY(0.94); }
}
@keyframes bubblePop {
  0%, 8%    { opacity: 0; transform: translateX(-10%) translateY(6px) scale(0.8); }
  14%, 42%  { opacity: 1; transform: translateX(-10%) translateY(0) scale(1); }
  48%, 100% { opacity: 0; transform: translateX(-10%) translateY(6px) scale(0.8); }
}

@media (max-width: 640px) {
  .slug { --slug-w: 100px; --slug-bottom: 28px; }
  .slug-bubble { font-size: 11px; }
}

.hero-badge {
  display: inline-block;
  background: rgba(107,191,94,0.2);
  border: 1px solid rgba(107,191,94,0.5);
  color: #a8e89a;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -0.03em;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 span {
  color: var(--green-accent);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  margin-top: 1.25rem;
  max-width: 520px;
  line-height: 1.6;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s 0.3s ease both;
}

.btn-primary {
  background: var(--green-accent);
  color: #0d2b0d;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107,191,94,0.4);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}

.hero-scroll {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.5s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-dot {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.2); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PRODUCT STRIP ── */
.product-strip {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  aspect-ratio: 5 / 2;
}

.photo-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
  min-height: 0;
}

.photo-card:hover { transform: scale(1.02); }

.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.photo-card:hover img { transform: scale(1.06); }

/* Suur pilt katab vasaku 2x2 ploki, 4 väiksemat täidavad parema poole */
.photo-card.featured {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--green-dark);
  padding: 5rem 1.5rem;
  color: white;
}

.how .section-label { color: var(--green-accent); }
.how .section-title { color: white; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.step.visible { opacity: 1; transform: none; }

.step-num {
  width: 56px; height: 56px;
  background: rgba(107,191,94,0.15);
  border: 1.5px solid rgba(107,191,94,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-accent);
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* connector line */
.steps-wrap {
  position: relative;
}

/* ── FEATURES ── */
.features {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feat-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.feat-card.visible { opacity: 1; transform: none; }

.feat-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.feat-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PRICING ── */
.pricing {
  background: white;
  padding: 5rem 1.5rem;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  border-radius: 20px;
  padding: 2rem;
  border: 1.5px solid rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.price-card.featured-price {
  border-color: var(--green-accent);
  background: linear-gradient(160deg, #f0fced, #fff);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-light);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 700;
}

.price-amount sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  vertical-align: baseline;
}

.price-includes {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── ORDER FORM ── */
.order {
  background: linear-gradient(160deg, #0d2b0d, #1e4a16);
  padding: 5rem 1.5rem;
  color: white;
}

.order .section-label { color: var(--green-accent); }
.order .section-title { color: white; }

.order-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

@media (max-width: 720px) {
  .order-wrap { grid-template-columns: 1fr; }
  /* Mosaiik: suur pilt üleval üle laiuse, 4 väiksemat 2x2 all */
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    aspect-ratio: auto;
  }
  .photo-card { aspect-ratio: 4/3; }
  .photo-card.featured {
    grid-column: 1 / span 2;
    grid-row: 1;
    aspect-ratio: 16/9;
  }
}

.order-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.order-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.trust-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.trust-icon {
  width: 32px; height: 32px;
  background: rgba(107,191,94,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Form */
.form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  color: white;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
  background: rgba(107,191,94,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group select option { background: #1a3a1a; color: white; }

/* ── Parcel autocomplete ── */
.carrier-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.carrier-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.carrier-tab:hover { border-color: rgba(107,191,94,0.5); color: rgba(255,255,255,0.85); }
.carrier-tab.active {
  border-color: var(--green-accent);
  background: rgba(107,191,94,0.15);
  color: var(--green-accent);
}

.parcel-wrap { position: relative; }

.parcel-wrap input {
  width: 100%;
  padding-right: 2.5rem !important;
}

.parcel-spinner {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  border: 2px solid rgba(107,191,94,0.25);
  border-top-color: var(--green-accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.parcel-spinner.active { display: block; }

@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

.parcel-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #162e12;
  border: 1px solid rgba(107,191,94,0.3);
  border-radius: 10px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(107,191,94,0.3) transparent;
}

.parcel-dropdown.open { display: block; }

.parcel-option {
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.12s;
  line-height: 1.4;
}

.parcel-option:last-child { border-bottom: none; }

.parcel-option:hover, .parcel-option.active {
  background: rgba(107,191,94,0.15);
  color: white;
}

.parcel-option .opt-name { font-weight: 600; }
.parcel-option .opt-addr { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 1px; }

.parcel-msg {
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 18px;
  color: rgba(255,255,255,0.4);
}

.parcel-msg.err { color: #f87171; }
.parcel-msg.ok  { color: var(--green-accent); }

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  width: 42px; height: 42px;
  cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
}

.qty-btn:hover { background: rgba(107,191,94,0.15); }

.qty-num {
  width: 46px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0;
}

.order-total {
  background: rgba(107,191,94,0.1);
  border: 1px solid rgba(107,191,94,0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.order-rows {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(107,191,94,0.2);
}
.order-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.order-total-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-total-label { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.order-total-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-accent);
}

.submit-btn {
  width: 100%;
  background: var(--green-accent);
  color: #0d2b0d;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.01em;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107,191,94,0.35);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.payment-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}

/* ── Honeypot robotite vastu (inimestele nähtamatu) ── */
.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Müügitingimustega nõustumine ── */
.terms-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0.25rem 0 1.1rem;
}

.terms-group input[type="checkbox"] {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-accent);
  cursor: pointer;
}

.terms-group label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  cursor: pointer;
}

.terms-group a {
  color: var(--green-light);
  font-weight: 600;
}

/* ── SUCCESS ── */
.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,43,13,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.success-overlay.show { display: flex; }

.success-box {
  background: white;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 460px;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

.success-icon {
  width: 72px; height: 72px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.success-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.success-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ── KKK ── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-light);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-size: 0.97rem;
}
.faq-item[open] { border-color: rgba(74,140,63,0.25); }

/* ── FOOTER ── */
footer {
  background: #060e06;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
}

footer a { color: rgba(255,255,255,0.6); text-decoration: none; }

/* ── ANIMATIONS: scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Küpsiste bänner ── */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 640px;
  margin: 0 auto;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-banner a { color: var(--green-accent); }

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-accept {
  background: var(--green-accent);
  color: var(--green-dark);
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
}

.cookie-accept:hover {
  background: var(--green-light);
  color: var(--white);
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
}

.cookie-decline:hover {
  border-color: var(--white);
  color: var(--white);
}
