/* =========================
   Base
========================= */
:root{
  --bg: #0b2f24;
  --bg2:#0c3b2c;
  --green:#176b4a;
  --green2:#0f6a45;
  --lime:#9ad64a;
  --yellow:#f2d34f;
  --text:#0c1f18;
  --muted:#5a6a63;
  --card:#ffffff;
  --soft:#f3f6f4;
  --border: rgba(12,31,24,.10);
  --shadow: 0 18px 40px rgba(0,0,0,.10);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:#fff;
  line-height:1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.srOnly{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  border:0;
}

/* =========================
   Topbar
========================= */
.topbar{
  background: linear-gradient(90deg, #0a2a20, #0f4c38);
  color:#e8f3ee;
  font-size:14px;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}
.topbar__left{ display:flex; align-items:center; gap:10px; }
.topbar__badge{
  width:22px;height:22px;
  display:grid; place-items:center;
  border-radius:7px;
  background: rgba(255,255,255,.12);
}
.topbar__link{
  padding:6px 10px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}

/* =========================
   Header / Nav
========================= */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(10,42,32,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
}
.brand__mark{
  width:34px;height:34px;
  display:grid; place-items:center;
  border-radius:12px;
  background: rgba(255,255,255,.12);
}
.brand__name{
  font-weight:800;
  letter-spacing:.2px;
  font-size:20px;
}

.nav{ display:flex; align-items:center; }
.nav__toggle{
  display:none;
  width:44px;height:44px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius:14px;
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  height:2px;
  margin:6px 10px;
  background:#fff;
  border-radius:2px;
}

.nav__panel{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav__link{
  color: rgba(255,255,255,.88);
  font-weight:600;
  font-size:14px;
  padding:10px 12px;
  border-radius:999px;
  transition: background .18s ease, color .18s ease;
}
.nav__link:hover{
  background: rgba(255,255,255,.10);
  color:#fff;
}
.nav__link.is-active{
  background: rgba(255,255,255,.14);
  color:#fff;
}

.nav__cta{
  margin-left:4px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
}
.nav__ctaIcon{
  width:34px;height:34px;
  display:grid; place-items:center;
  border-radius:999px;
  background: rgba(242,211,79,.20);
}
.nav__ctaText small{ display:block; opacity:.86; font-size:12px; line-height:1.1; }
.nav__ctaText strong{ display:block; font-size:14px; line-height:1.1; }

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  cursor:pointer;
  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ filter: brightness(1.02); }
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: #1f7a53;
  color:#fff;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 10px 26px rgba(31,122,83,.25);
}
.btn--ghost{
  background: rgba(255,255,255,.10);
  color:#fff;
  border-color: rgba(255,255,255,.20);
}
.btn--link{
  background: transparent;
  color: var(--green);
  padding: 12px 8px;
}
.btn--full{ width:100%; border-radius:16px; padding:12px 14px; }

/* =========================
   Hero
========================= */
.hero{
  position:relative;
  color:#fff;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(10,42,32,1), rgba(10,42,32,1) 40%, #fff 40%);
}
.hero--sub{
  background: linear-gradient(180deg, rgba(10,42,32,1), rgba(10,42,32,1) 42%, #fff 42%);
}

.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(10,42,32,.86), rgba(10,42,32,.35)),
    url("../img/hero.webp") center/cover no-repeat;
  transform: scale(1.05);
  filter: saturate(1.05);
}
.hero__bg--waste{
  background:
    linear-gradient(90deg, rgba(10,42,32,.86), rgba(10,42,32,.35)),
    url("../img/hero.webp") center/cover no-repeat;
}

.hero__inner{
  position:relative;
  padding: 58px 0 44px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
  align-items: end;
}
.hero__content{ padding: 6px 0 8px; }
.hero__title{
  margin:0 0 14px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.hero__titleStrong{
  font-weight:900;
  color: #ffffff;
}
.hero__lead{
  margin:0 0 20px;
  max-width: 62ch;
  color: rgba(255,255,255,.88);
  font-size: 16px;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin: 0 0 18px;
}
.hero__trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.trustPill{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 10px 12px;
  min-width: 170px;
}
.trustPill strong{ display:block; font-size:14px; }
.trustPill span{ display:block; font-size:12px; opacity:.86; }

.heroCard{
  align-self: stretch;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius2);
  padding: 18px 18px 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.heroCard__title{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
}
.heroCard__text{
  margin:0 0 12px;
  color: rgba(255,255,255,.88);
  font-size:14px;
}
.heroCard__meta{
  display:grid;
  gap:10px;
  padding: 12px 0 8px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.metaRow{ display:flex; align-items:center; gap:10px; font-weight:600; font-size:13px; }
.dot{ width:10px; height:10px; border-radius:999px; }
.dot--green{ background: var(--lime); }
.dot--lime{ background: #49d28a; }
.dot--yellow{ background: var(--yellow); }

.heroCard__link{
  display:inline-flex;
  margin-top: 10px;
  font-weight:800;
  color:#fff;
  opacity:.92;
}

/* =========================
   Sections
========================= */
.section{ padding: 62px 0; }
.section--soft{ background: var(--soft); }
.section__head{ margin-bottom: 22px; }
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--green);
  font-weight:800;
  margin-bottom: 12px;
}
.kicker__icon{
  width:26px;height:26px;
  display:grid; place-items:center;
  border-radius:10px;
  background: rgba(31,122,83,.10);
}
.section__title{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height:1.15;
  letter-spacing:-.6px;
}
.section__lead{
  margin:0;
  color: var(--muted);
  max-width: 78ch;
}

.grid{ display:grid; gap:18px; }
.grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

/* ✅ ÚJ: amikor 1 kártyát akarunk szépen 1 oszlopban */
.grid--single{ grid-template-columns: 1fr; }

/* =========================
   Cards
========================= */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
}
.card__media{
  height: 180px;
  background: #e9f3ee;
}
.card__media--garden{
  background:
    linear-gradient(180deg, rgba(31,122,83,.08), rgba(31,122,83,.02)),
    url("../img/elotte-es-utana.webp") center/cover no-repeat;
}
.card__media--waste{
  background:
    linear-gradient(180deg, rgba(242,211,79,.18), rgba(242,211,79,.05)),
    url("../img/zold-elszallitas.jpg") center/cover no-repeat;
}
.card__body{ padding: 18px 18px 16px; }
.card__title{ margin:0 0 8px; font-size:20px; font-weight:900; }
.card__text{ margin:0 0 12px; color: var(--muted); }
.card__actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }

.list{ margin:0; padding-left: 18px; color: var(--text); }
.list li{ margin: 6px 0; }
.list--compact li{ margin: 5px 0; }

/* =========================
   Split / Features
========================= */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}
.accent{ color: var(--green); }

.featureGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin: 18px 0 16px;
}
.feature{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 14px 12px;
}
.feature__icon{
  width:40px;height:40px;
  display:grid; place-items:center;
  border-radius:14px;
  background: rgba(31,122,83,.10);
  margin-bottom: 10px;
}
.feature__title{ margin:0 0 6px; font-size:16px; font-weight:900; }
.feature__text{ margin:0; color: var(--muted); font-size:14px; }

.ctaRow{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 12px; }

.statsCard{
  border-radius: var(--radius2);
  background: #fff;
  border: 1px solid var(--border);
  overflow:hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
}
.statsCard__top{
  position:relative;
  padding: 16px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
}
.statsCard__media{
  flex:1;
  min-height: 150px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(31,122,83,.08), rgba(31,122,83,.02)),
    url("../img/sajat-bozotirtas.webp") center/cover no-repeat;
}
.statsCard__stat{
  text-align:right;
  padding-bottom: 4px;
}
.statsCard__big{
  display:block;
  font-weight:900;
  font-size: 46px;
  color: var(--green);
  line-height:1;
}
.statsCard__small{
  display:block;
  color: var(--muted);
  font-weight:700;
  margin-top: 4px;
}
.statsCard__bottom{
  padding: 0 16px 16px;
  display:grid;
  gap: 10px;
}
.pill{
  display:flex;
  align-items:center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 12px;
  background: #fff;
}
.pill__icon{
  width:30px;height:30px;
  display:grid; place-items:center;
  border-radius: 999px;
  background: rgba(31,122,83,.10);
}

/* =========================
   CTA Banner
========================= */
.ctaBanner{
  position:relative;
  overflow:hidden;
  padding: 52px 0;
  background: #0a2a20;
  color:#fff;
}
.ctaBanner__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(10,42,32,.88), rgba(10,42,32,.55)),
    url("../img/kert-kep.webp") center/cover no-repeat;
  transform: scale(1.04);
}
.ctaBanner__bg--waste{
  background:
    linear-gradient(90deg, rgba(10,42,32,.88), rgba(10,42,32,.55)),
    url("../img/kert-kep.webp") center/cover no-repeat;
}
.ctaBanner__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}
.ctaBanner__title{
  margin:0 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height:1.12;
  letter-spacing:-.6px;
}
.ctaBanner__title span{ color: var(--yellow); font-weight:900; }
.ctaBanner__text{
  margin:0;
  color: rgba(255,255,255,.88);
  max-width: 70ch;
}

.quoteForm{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 14px;
  backdrop-filter: blur(10px);
}
.quoteForm input,
.quoteForm textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  padding: 12px 12px;
  margin-bottom: 10px;
  outline:none;
}
.quoteForm textarea{ resize: vertical; min-height: 96px; }
.quoteForm input::placeholder,
.quoteForm textarea::placeholder{ color: rgba(255,255,255,.70); }
.quoteForm__hint{
  margin:10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.82);
}
.quoteForm__hint a{ text-decoration: underline; }

/* =========================
   Contact
========================= */
.contactGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.contactCard{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 16px 14px;
}
.contactCard h3{ margin:0 0 8px; font-size:16px; font-weight:900; }
.contactCard a{ color: var(--green); font-weight:800; }
.muted{ color: var(--muted); margin: 8px 0 0; }

/* =========================
   Pricing / FAQ
========================= */
.priceCard{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
  position:relative;
}
.priceCard h3{ margin:0 0 8px; font-size:18px; font-weight:900; }
.priceCard__price{
  margin:0 0 12px;
  font-weight:900;
  color: var(--green);
  font-size: 22px;
}
.priceCard--featured{
  border-color: rgba(31,122,83,.30);
  box-shadow: 0 18px 40px rgba(31,122,83,.12);
}
.priceCard__badge{
  position:absolute;
  top: 12px;
  right: 12px;
  background: rgba(242,211,79,.92);
  color:#153225;
  font-weight:900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.faq{ display:grid; gap: 10px; }
.faqItem{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px 14px;
}
.faqItem summary{
  cursor:pointer;
  font-weight:900;
}
.faqItem p{ margin: 8px 0 0; color: var(--muted); }

/* =========================
   Footer
========================= */
.footer{
  background: linear-gradient(180deg, #083024, #06281f);
  color:#eaf3ef;
  padding-top: 44px;
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr .6fr .6fr .6fr;
  gap: 18px;
  padding-bottom: 26px;
}
.brand--footer{ color:#fff; }
.footer__text{ margin: 12px 0 14px; color: rgba(255,255,255,.84); }

.footer__title{
  margin: 6px 0 10px;
  font-weight:900;
  color: rgba(242,211,79,.95);
  letter-spacing:.2px;
}
.footer__link{
  display:block;
  padding: 6px 0;
  color: rgba(255,255,255,.86);
}
.footer__link:hover{ color:#fff; text-decoration: underline; }

.footer__line{ margin: 8px 0; color: rgba(255,255,255,.86); }
.footer__line a{ text-decoration: underline; }

.social{ display:flex; gap:10px; }
.social__btn{
  width:40px;height:40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-weight:900;
}

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 0;
}
.footer__bottomInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.backTop{
  color: rgba(255,255,255,.86);
  font-weight:800;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; padding: 46px 0 34px; }
  .split{ grid-template-columns: 1fr; }
  .ctaBanner__inner{ grid-template-columns: 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav__toggle{ display:block; }
  .nav__panel{
    position: fixed;
    top: 64px;
    right: 16px;
    left: 16px;
    background: rgba(10,42,32,.96);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    padding: 12px;
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: var(--shadow);
  }
  .nav__panel.is-open{ display:flex; }
  .nav__cta{ justify-content:flex-start; }
  .grid--2{ grid-template-columns: 1fr; }
}

/* =========================
   WHY US – Trust pills (premium, visible)
========================= */

.statsCard__bottom .pill{
  position: relative;
  overflow: hidden;
  display:flex;
  align-items:center;
  gap: 14px;

  padding: 14px 16px;
  border-radius: 20px;

  background: linear-gradient(180deg, #ffffff, #f2f7f4);
  border: 1px solid rgba(12,31,24,.12);

  box-shadow:
    0 14px 34px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.85);

  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.statsCard__bottom .pill::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 6px;
  background: linear-gradient(180deg, var(--lime), var(--green));
  opacity: 1;
}

.statsCard__bottom .pill::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,.35) 50%,
    rgba(255,255,255,0) 60%
  );
  transform: translateX(-120%);
  opacity: .55;
  pointer-events:none;
}

.statsCard__bottom .pill:hover{
  transform: translateY(-3px);
  border-color: rgba(23,107,74,.26);
  background: linear-gradient(180deg, #ffffff, #eef6f1);
  box-shadow:
    0 22px 60px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.statsCard__bottom .pill:hover::after{
  transform: translateX(120%);
  transition: transform .9s ease;
}

.statsCard__bottom .pill__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;

  display:grid;
  place-items:center;

  color: #0b2f24;
  background: linear-gradient(180deg, rgba(154,214,74,.35), rgba(31,122,83,.12));
  border: 1px solid rgba(23,107,74,.18);

  box-shadow:
    0 14px 26px rgba(31,122,83,.18),
    inset 0 1px 0 rgba(255,255,255,.85);
}

.statsCard__bottom .pill__icon svg{
  width: 20px;
  height: 20px;
  opacity: .95;
}

.statsCard__bottom .pill strong{
  font-weight: 900;
  letter-spacing: -.2px;
}

.statsCard__bottom .pill span,
.statsCard__bottom .pill p{
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .statsCard__bottom .pill,
  .statsCard__bottom .pill:hover::after{
    transition: none;
  }
}

/* =========================
   WHY US – Upgrade the 2 small boxes (feature cards)
========================= */

.featureGrid{
  gap: 16px;
}

.feature{
  position: relative;
  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f2f7f4 100%);
  border: 1px solid rgba(12,31,24,.10);
  border-radius: 22px;

  padding: 18px 18px 16px;

  box-shadow:
    0 18px 46px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.80);

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 6px;
  background: linear-gradient(180deg, var(--lime), var(--green));
  opacity: .95;
}

.feature::after{
  content:"";
  position:absolute;
  inset:-40% -50%;
  background: radial-gradient(closest-side, rgba(31,122,83,.10), transparent 65%);
  transform: translateX(-10%);
  pointer-events:none;
}

.feature:hover{
  transform: translateY(-3px);
  border-color: rgba(23,107,74,.22);
  box-shadow:
    0 26px 70px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.88);
}

.feature__icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;

  background: linear-gradient(180deg, rgba(154,214,74,.40), rgba(31,122,83,.14));
  border: 1px solid rgba(23,107,74,.18);

  box-shadow:
    0 16px 30px rgba(31,122,83,.18),
    inset 0 1px 0 rgba(255,255,255,.85);

  margin-bottom: 12px;
}

.feature__title{
  margin:0 0 6px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.3px;
}

.feature__text{
  margin:0;
  color: rgba(12,31,24,.72);
  font-size: 14px;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce){
  .feature{ transition:none; }
}

/* =========================
   THANK YOU PAGE + Honeypot
========================= */

.hpField{
  position:absolute;
  left:-9999px;
  opacity:0;
  height:0;
  width:0;
  pointer-events:none;
}

.thanksPage{
  min-height: 100vh;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(10,42,32,1), rgba(10,42,32,1) 42%, #fff 42%);
  position:relative;
  overflow:hidden;
}

.thanksBg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(10,42,32,.86), rgba(10,42,32,.45)),
    url("../img/hero.webp") center/cover no-repeat;
  transform: scale(1.05);
  filter: saturate(1.05);
}

.thanksInner{
  position:relative;
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
  padding: 56px 0;
}

.thanksCard{
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius2);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.thanksTop{
  padding: 22px 22px 18px;
  color:#fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.thanksBadge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242,211,79,.18);
  border: 1px solid rgba(242,211,79,.30);
  font-weight:900;
}

.thanksTitle{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height:1.12;
  letter-spacing:-.6px;
  font-weight: 950;
}

.thanksLead{
  margin:0;
  color: rgba(255,255,255,.88);
  max-width: 70ch;
}

.thanksBottom{
  background: #fff;
  padding: 18px 22px 22px;
}

.thanksGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.thanksInfo{
  background: linear-gradient(180deg, #ffffff 0%, #f2f7f4 100%);
  border: 1px solid rgba(12,31,24,.10);
  border-radius: 18px;
  padding: 14px 14px 12px;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
}

.thanksInfo strong{
  display:block;
  font-weight: 950;
  margin-bottom: 4px;
  letter-spacing: -.2px;
  color: var(--text);
}

.thanksInfo span{
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

.thanksActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 16px;
}

.thanksSmall{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.countdown{
  font-weight: 950;
  color: var(--green);
}

@media (max-width: 860px){
  .thanksGrid{ grid-template-columns: 1fr; }
}

/* =========================
   Services – two image layout
========================= */

.card--service{
  overflow: hidden;
}

/* KÉPEK TETEJÉN */
.card__mediaSplit{
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 360px;
  background: #e9f3ee;
}

.mediaSplit__img{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* finom elválasztó a képek között */
.mediaSplit__img + .mediaSplit__img{
  border-left: 2px solid rgba(255,255,255,.8);
}

/* ELŐTTE KÉP */
.mediaSplit__img--before{
  background-image:
    linear-gradient(180deg, rgba(31,122,83,.08), rgba(31,122,83,.02)),
    url("../img/1000008267.webp"); /* <-- CSERÉLD SAJÁT KÉPRE */
}

/* UTÁNA KÉP */
.mediaSplit__img--after{
  background-image:
    linear-gradient(180deg, rgba(31,122,83,.08), rgba(31,122,83,.02)),
    url("../img/1000008266.webp"); /* <-- CSERÉLD SAJÁT KÉPRE */
}

/* SZÖVEG RÉSZ PICIT LÉGIESEBB */
.card__body--service{
  padding: 22px 22px 20px;
}

.card__body--service .card__title{
  font-size: 22px;
}

/* MOBILON: képek egymás alá */
@media (max-width: 860px){
  .card__mediaSplit{
    grid-template-columns: 1fr;
    height: 360px;
  }

  .mediaSplit__img + .mediaSplit__img{
    border-left: 0;
    border-top: 2px solid rgba(255,255,255,.8);
  }
}

/* =========================
   Service card – text upgrade
========================= */

.card__body--service{
  position: relative;
  padding: 28px 28px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f6 100%);
}

/* karakteres bal oldali sáv */
.card__body--service::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 6px;
  background: linear-gradient(180deg, var(--lime), var(--green));
}

/* cím legyen erősebb */
.card__body--service .card__title{
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.3px;
  margin-bottom: 10px;
}

/* leírás olvashatóbb */
.card__body--service .card__text{
  font-size: 15px;
  color: rgba(12,31,24,.75);
  margin-bottom: 14px;
  max-width: 68ch;
}

/* lista -> checklist stílus */
.card__body--service .list{
  list-style: none;
  padding-left: 0;
  margin: 0 0 18px;
}

.card__body--service .list li{
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
  font-weight: 600;
  color: rgba(12,31,24,.85);
}

.card__body--service .list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color: var(--green);
  font-weight: 900;
}

/* CTA sor elkülönítése */
.card__body--service .card__actions{
  display:flex;
  align-items:center;
  gap:14px;
  padding-top: 14px;
  border-top: 1px solid rgba(12,31,24,.08);
}

/* =========================
   Form – privacy consent (inline)
========================= */

.consentRow{
  display:flex;
  align-items:center;
  gap:10px;
  margin: 6px 0 10px;
}

.consentRow input{
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--yellow);
}

.consentRow label{
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,255,255,.88);
}

.consentRow a{
  color:#fff;
  text-decoration: underline;
  font-weight: 800;
}

/* mobilon ha nagyon szűk, törhessen normálisan */
@media (max-width: 420px){
  .consentRow{
    align-items:flex-start;
  }
  .consentRow input{
    margin-top: 2px;
  }
}
