/* ==============================================
   NANA VITA – style.css  |  v15 → PHP migration
   Modal state: .nv-open  |  Overlay: .nv-overlay
============================================== */

.nv-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.nv-overlay.nv-open { opacity: 1; pointer-events: all; }

.cookie-banner.nv-open,
.cookie-settings.nv-open,
.legal-modal.nv-open {
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translate(-50%,-50%) scale(1) !important;
}

/* ===== CSS VÁLTOZÓK ===== */
    :root {
      --cream:        #F5EFE2;
      --cream-dark:   #EDE5D4;
      --dark-green:   #1C3A0C;
      --mid-green:    #2D5A1A;
      --light-green:  #4A7A2A;
      --pale-green:   #D4E8C0;
      --gold:         #C9A200;
      --gold-light:   #F0D060;
      --red:          #C83030;
      --red-hover:    #A02020;
      --white:        #FFFFFF;
      --off-white:    #FAF7F0;
      --text-dark:    #1A2A0C;
      --text-body:    #3A4A2C;
      --text-muted:   #7A8A6A;
      --border:       #D8E8C4;
      --shadow:       0 4px 24px rgba(28,58,12,0.10);
      --shadow-lg:    0 8px 48px rgba(28,58,12,0.15);
      --radius:       12px;
      --radius-lg:    20px;
      --nav-h:        96px;
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
      background: var(--cream-dark);
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 {
      font-family: 'Oswald', sans-serif;
      line-height: 1.1;
      letter-spacing: 0.02em;
    }
    h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 700; }
    h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
    h4 { font-size: 1.1rem; font-weight: 600; }
    p  { font-size: 1rem; line-height: 1.7; }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      padding: 14px 36px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(200,48,48,0.30);
    }
    .btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,48,48,0.35); }

    /* ===== SECTION HELPERS ===== */
      display: inline-block;
      background: transparent;
      color: var(--dark-green);
      border: 2px solid var(--dark-green);
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 10px 28px;
      border-radius: 50px;
      transition: all 0.25s;
    }
    .btn-outline:hover { background: var(--dark-green); color: var(--white); }

    /* ===== SECTION HELPERS ===== */
    .section { padding: 80px 20px; }
    .section-inner { max-width: 1180px; margin: 0 auto; }
    .section-tag {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--light-green);
      border: 1.5px solid var(--light-green);
      padding: 4px 14px;
      border-radius: 50px;
      margin-bottom: 16px;
    }
    .section-title { color: var(--dark-green); margin-bottom: 12px; }
    .section-subtitle { color: var(--text-body); font-size: 1.05rem; margin-bottom: 48px; max-width: 600px; }
    .centered { text-align: center; margin-left: auto; margin-right: auto; }

    /* ===== NAVIGATION ===== */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      background: rgba(245,239,226,0.97);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    #navbar.scrolled { box-shadow: var(--shadow); }
    .nav-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 0;
    }

    /* ===== LOGO – stacked Na/nA/VITA + HERBAL ENERGY badge ===== */
    /* ===== LOGO – inline SVG ===== */
    .logo-mark {
      display: block;
      flex-shrink: 0;
      text-decoration: none;
    }
    .logo-svg {
      height: 78px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 22px;
      margin-left: auto;
    }
    .nav-links a {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-dark);
      transition: color 0.2s;
      position: relative;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0; right: 0;
      height: 2px;
      background: var(--red);
      transform: scaleX(0);
      transition: transform 0.25s;
      border-radius: 2px;
    }
    .nav-links a:hover { color: var(--dark-green); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      margin-left: 16px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      padding: 10px;
      min-width: 44px;
      min-height: 44px;
      border-radius: 8px;
      transition: background 0.2s;
    }
    .burger:hover { background: var(--pale-green); }
    .burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--dark-green);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: var(--cream);
      border-bottom: 1px solid var(--border);
      padding: 24px;
      z-index: 999;
      flex-direction: column;
      gap: 16px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--dark-green);
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
    }

    /* ===== HERO – szöveg ÁTLÓG a fotóra (eredeti design) ===== */
    #hero-section {
      margin-top: var(--nav-h);
      position: relative;
      height: calc(100vh - var(--nav-h));
      min-height: 500px;
      overflow: hidden;
    }

    /* Bal krém háttér */
    .hero-bg {
      position: absolute;
      inset: 0;
      background: var(--cream);
      z-index: 0;
    }

    /* Fotó: TELJES SZÉLESSÉG, szöveg mögött */
    .hero-img-wrap {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
    }
    /* Krém→átlátszó gradient overlay a szöveg olvashatóságáért */
    .hero-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(245,239,226,0.97) 0%,
        rgba(245,239,226,0.90) 22%,
        rgba(245,239,226,0.62) 40%,
        rgba(245,239,226,0.22) 58%,
        rgba(245,239,226,0) 74%
      );
      z-index: 3;
      pointer-events: none;
    }
    .hero-img-wrap img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      z-index: 2;
    }
    .hero-img-ph {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #c8ddb0 0%, #a8c890 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      z-index: 1;   /* MÖGÖTT: csak akkor látszik ha a kép nem tölt be */
    }
    .hero-img-ph span {
      font-family: 'Nunito', sans-serif;
      font-size: 0.82rem;
      color: var(--dark-green);
      opacity: 0.6;
      font-style: italic;
    }

    /* Tartalom: z-index 4 → a gradient overlay FELETT */
    .hero-content {
      position: relative;
      z-index: 4;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 40px 40px 44px;
    }

    /* Bekezdés a bal oldalon marad */
    .hero-content h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.8rem, 4.8vw, 5.4rem);
      font-weight: 700;
      color: var(--dark-green);
      text-transform: uppercase;
      line-height: 0.95;
      margin-bottom: 20px;
      animation: fadeInUp 0.65s ease both;
    }
    .hero-content h1 span.line {
      display: block;
      width: fit-content;
    }

    /* Bekezdés a bal oldalon marad */
    .hero-content p {
      font-size: 0.97rem;
      color: var(--text-body);
      max-width: 340px;
      line-height: 1.65;
      margin-bottom: 30px;
      animation: fadeInUp 0.65s 0.12s ease both;
    }
    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 16px;
      animation: fadeInUp 0.65s 0.24s ease both;
    }
    /* Placeholder other images */
    .img-ph {
      background: linear-gradient(135deg, var(--cream-dark) 0%, var(--pale-green) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Nunito', sans-serif;
      font-size: 0.85rem;
      color: var(--text-muted);
      font-style: italic;
      min-height: 200px;
    }

    /* ===== FUN FACTS ===== */
    /* ===== FUN FACTS ===== */
    #fun-facts {
      background: var(--off-white);
      padding: 44px 20px;
      border-top: 1px solid var(--border);
    }
    .fun-facts-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 48px 1fr 1fr 1fr 1.25fr;
      gap: 0;
      align-items: start;
    }
    .fun-facts-label {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      font-family: 'Oswald', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--light-green);
      padding: 4px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }
    .fact-card {
      padding: 20px 22px 20px 20px;
      border-left: 1px solid var(--border);
    }
    /* SVG outline circle icon */
    .fact-icon-svg {
      width: 52px;
      height: 52px;
      color: var(--dark-green);
      margin-bottom: 14px;
      display: block;
    }
    .fact-card h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--dark-green);
      margin-bottom: 8px;
      line-height: 1.2;
    }
    .fact-card p {
      font-size: 0.84rem;
      color: var(--text-body);
      line-height: 1.55;
    }
    .kombucha-box {
      background: var(--dark-green);
      color: var(--white);
      border-radius: var(--radius);
      padding: 20px 22px;
      margin-left: 12px;
    }
    .kombucha-box h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .kombucha-box p { font-size: 0.84rem; line-height: 1.6; opacity: 0.92; }

    /* ===== ÍGY KÉSZÜL ===== */
    #keszul {
      padding: 80px 20px;
      background: var(--cream);
    }
    .keszul-inner { max-width: 1180px; margin: 0 auto; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
      align-items: start;
      margin-top: 48px;
    }
    .step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      padding: 0 8px;
    }
    .step-item:not(:last-child)::after {
      content: '→';
      position: absolute;
      right: -10px;
      top: 20px;
      font-size: 1.4rem;
      color: var(--light-green);
      font-weight: 300;
    }
    .step-num {
      width: 40px; height: 40px;
      background: var(--dark-green);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 12px;
      flex-shrink: 0;
      z-index: 1;
    }
    .step-img {
      width: 100%;
      aspect-ratio: 3/2.5;
      border-radius: var(--radius);
      object-fit: cover;
      margin-bottom: 12px;
      box-shadow: var(--shadow);
    }
    .step-title {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--dark-green);
      margin-bottom: 6px;
      line-height: 1.2;
    }
    .step-desc { font-size: 0.78rem; color: var(--text-body); line-height: 1.5; }

    /* ===== ÍZEINK ===== */
    #izeink {
      background: var(--off-white);
      padding: 80px 20px;
    }
    .izeink-inner { max-width: 1180px; margin: 0 auto; }
    .flavors-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 48px;
    }
    .flavor-card {
      background: var(--cream);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .flavor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .flavor-img-wrap {
      position: relative;
      overflow: hidden;
    }
    .flavor-img-wrap img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .flavor-card:hover .flavor-img-wrap img { transform: scale(1.04); }
    .flavor-body { padding: 24px; }
    .flavor-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .flavor-name.red { color: var(--red); }
    .flavor-name.green { color: var(--light-green); }
    .flavor-name.gold { color: var(--gold); }
    .flavor-body p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 16px; }
    .flavor-check { display: flex; flex-direction: column; gap: 6px; }
    .flavor-check li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-body);
    }
    .flavor-check li::before {
      content: '✓';
      color: var(--light-green);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ===== MIÉRT NANA VITA ===== */
    #miert {
      background: var(--cream);
      padding: 80px 20px;
    }
    .miert-inner { max-width: 1180px; margin: 0 auto; }
    .miert-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 60px;
    }
    .miert-content h2 { color: var(--dark-green); margin-bottom: 6px; }
    .miert-content .tagline {
      font-family: 'Oswald', sans-serif;
      font-size: 1.8rem;
      color: var(--red);
      margin-bottom: 24px;
      font-style: italic;
    }
    .piac-box {
      background: var(--off-white);
      border-radius: var(--radius);
      padding: 24px;
      border-left: 4px solid var(--light-green);
      margin-bottom: 24px;
    }
    .piac-box h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--dark-green);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .piac-box p { font-size: 0.92rem; color: var(--text-body); }
    .miert-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
    .miert-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

    .kulonleges-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr) 1fr;
      gap: 16px;
      align-items: stretch;
    }
    .kulonleges-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: var(--off-white);
      border-radius: var(--radius);
      padding: 20px 14px;
      gap: 10px;
      border: 1px solid var(--border);
    }
    .k-icon {
      width: 46px; height: 46px;
      background: var(--pale-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }
    .kulonleges-item p {
      font-size: 0.78rem;
      color: var(--text-body);
      line-height: 1.4;
      font-weight: 600;
    }
    .vizion-box {
      background: var(--dark-green);
      color: var(--white);
      border-radius: var(--radius);
      padding: 24px 20px;
      grid-column: 6;
    }
    .vizion-box h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
    }
    .vizion-box p { font-size: 0.85rem; opacity: 0.92; line-height: 1.6; }

    .badges-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 40px;
      justify-content: center;
    }
    .badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--pale-green);
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 0.8rem;
      font-weight: 700;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--dark-green);
    }

    /* ===== KOMBUCHA VS YERBA ===== */
    #vs {
      background: var(--cream-dark);
      padding: 80px 20px;
    }
    .vs-inner { max-width: 1180px; margin: 0 auto; }
    .vs-header { text-align: center; margin-bottom: 48px; }
    .vs-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 32px;
      align-items: start;
    }
    .vs-col { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
    .vs-col-header {
      padding: 28px 24px 20px;
      background: var(--dark-green);
      color: var(--white);
      text-align: center;
    }
    .vs-col-header h3 {
      font-size: 2rem;
      letter-spacing: 0.05em;
    }
    .vs-col-header .sub { font-size: 0.8rem; letter-spacing: 0.15em; opacity: 0.75; text-transform: uppercase; margin-top: 4px; }
    .vs-col-header.yerba-head { background: var(--mid-green); }
    .vs-rows { padding: 16px 0; }
    .vs-row {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      padding: 12px 20px;
      border-bottom: 1px solid var(--border);
      align-items: start;
    }
    .vs-row:last-child { border-bottom: none; }
    .vs-row-icon { font-size: 1rem; margin-top: 2px; }
    .vs-row-label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--light-green);
      margin-bottom: 3px;
    }
    .vs-row-val { font-size: 0.85rem; color: var(--text-body); line-height: 1.5; }

    .vs-divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding-top: 60px;
    }
    .vs-badge {
      background: var(--dark-green);
      color: var(--white);
      font-family: 'Oswald', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      width: 64px; height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
    }

    .vs-bottom {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 32px;
      margin-top: 24px;
    }
    .vs-summary {
      background: var(--dark-green);
      color: var(--white);
      border-radius: var(--radius);
      padding: 20px 24px;
    }
    .vs-summary h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }
    .vs-summary p { font-size: 0.82rem; opacity: 0.9; line-height: 1.6; }
    .vs-summary.right { background: var(--mid-green); }
    .vs-icons-strip {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .vs-icon-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--dark-green);
    }
    .vs-icon-item span { font-size: 1.1rem; }

    /* ===== WORKSHOP ===== */
    #workshop {
      background: var(--cream);
      padding: 80px 20px;
    }
    .ws-inner { max-width: 1180px; margin: 0 auto; }
    .ws-header {
      display: flex;
      align-items: flex-start;
      gap: 48px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .ws-header-left { flex: 1; min-width: 280px; }
    .ws-title-big {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 700;
      color: var(--dark-green);
      text-transform: uppercase;
      line-height: 0.9;
    }
    .ws-subtitle { font-size: 1rem; color: var(--text-body); margin-top: 12px; }
    .ws-tag-big {
      display: inline-block;
      background: var(--dark-green);
      color: var(--white);
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      padding: 6px 18px;
      border-radius: 4px;
      margin-top: 12px;
    }
    .ws-header-right { flex: 1; min-width: 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .ws-col h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--dark-green);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .ws-list { display: flex; flex-direction: column; gap: 8px; }
    .ws-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-body);
    }
    .ws-list li::before { content: '✓'; color: var(--light-green); font-weight: 700; }

    .ws-steps-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      margin-bottom: 40px;
    }
    .ws-step {
      background: var(--off-white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .ws-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .ws-step-img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
    }
    .ws-step-body { padding: 12px; }
    .ws-step-num {
      width: 28px; height: 28px;
      background: var(--dark-green);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .ws-step-body p { font-size: 0.75rem; font-weight: 700; color: var(--dark-green); font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.3; }

    .ws-benefits {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      background: var(--off-white);
      border-radius: var(--radius-lg);
      padding: 24px;
      border: 1px solid var(--border);
    }
    .ws-benefit {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
    }
    .ws-benefit-icon {
      width: 48px; height: 48px;
      background: var(--pale-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }
    .ws-benefit p {
      font-size: 0.75rem;
      font-weight: 700;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--dark-green);
      line-height: 1.3;
    }

    /* ===== NÖVEKEDÉSI STRATÉGIA ===== */
    #strategia {
      background: var(--off-white);
      padding: 80px 20px;
    }
    .strat-inner { max-width: 1180px; margin: 0 auto; }
    .strat-title {
      text-align: center;
      margin-bottom: 48px;
    }
    .strat-title h2 {
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      color: var(--dark-green);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .strat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .strat-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }
    .strat-card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }
    .strat-num {
      width: 52px; height: 52px;
      background: var(--dark-green);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .strat-icon {
      width: 48px; height: 48px;
      background: var(--pale-green);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }
    .strat-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--dark-green);
      text-transform: uppercase;
    }
    .strat-card > p {
      color: var(--text-body);
      font-size: 0.9rem;
      margin-bottom: 16px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 14px;
    }
    .strat-list { display: flex; flex-direction: column; gap: 8px; }
    .strat-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: var(--text-body);
    }
    .strat-list li::before { content: '•'; color: var(--light-green); font-size: 1.2rem; flex-shrink: 0; }
    .strat-img-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-top: 20px;
    }
    .strat-img-row img {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 8px;
      object-fit: cover;
    }

    /* ===== FAQ ===== */
    #faq {
      background: var(--cream);
      padding: 80px 20px;
    }
    .faq-inner { max-width: 780px; margin: 0 auto; }
    .faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
    .faq-item {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      transition: background 0.2s;
      gap: 12px;
    }
    .faq-q:hover { background: var(--off-white); }
    .faq-q h4 {
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark-green);
    }
    .faq-chevron {
      width: 24px; height: 24px;
      background: var(--pale-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--dark-green);
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      padding: 0 20px;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }
    .faq-a p { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--dark-green);
      color: var(--white);
      padding: 48px 20px 28px;
    }
    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 40px;
      align-items: center;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,0.15);
      margin-bottom: 28px;
    }
    .footer-tagline h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      text-transform: uppercase;
      line-height: 0.95;
      color: var(--white);
    }
    .footer-tagline h2 em { color: var(--pale-green); font-style: normal; }
    .footer-mid p { font-size: 0.9rem; opacity: 0.8; max-width: 340px; line-height: 1.7; }
    .footer-mid .happy { font-family: 'Nunito', sans-serif; font-style: italic; color: var(--gold-light); margin-top: 6px; }
    .footer-social h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 14px;
      opacity: 0.75;
    }
    .social-links { display: flex; gap: 12px; }
    .social-link {
      width: 40px; height: 40px;
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: all 0.25s;
    }
    .social-link:hover { border-color: var(--pale-green); background: rgba(255,255,255,0.1); }

    .footer-badges { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
    .footer-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.85;
    }
    .footer-badge span { font-size: 1.1rem; }
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 0.78rem;
      opacity: 0.5;
    }

    /* ===== FOOTER v2 – 4 oszlop, sötét háttér ===== */
    footer {
      background: #0D1F06;
      color: rgba(255,255,255,0.85);
    }
    .footer-main {
      max-width: 1180px;
      margin: 0 auto;
      padding: 60px 24px 44px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-col-title {
      font-family: 'Oswald', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #A8CC80;
      margin-bottom: 18px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a,
    .footer-col ul li button.fc-link {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.68);
      text-decoration: none;
      transition: color 0.2s;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      font-family: 'Nunito', sans-serif;
      text-align: left;
    }
    .footer-col ul li a:hover,
    .footer-col ul li button.fc-link:hover { color: var(--white); }

    /* 1. oszlop – Brand */
    .footer-logo-svg {
      height: 62px;
      width: auto;
      margin-bottom: 14px;
      display: block;
      filter: brightness(0) invert(1);
    }
    .footer-tagline-txt {
      font-family: 'Oswald', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .footer-tagline-txt em { color: #A8CC80; font-style: normal; }
    .footer-brand-desc {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .footer-socials { display: flex; gap: 9px; }
    .footer-soc-btn {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.88rem;
      transition: all 0.2s;
      background: none;
      cursor: pointer;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
    }
    .footer-soc-btn:hover { border-color: #A8CC80; color: var(--white); background: rgba(255,255,255,0.08); }

    /* 4. oszlop – Kapcsolat */
    .footer-contact-row {
      display: flex;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 0.86rem;
      color: rgba(255,255,255,0.68);
      line-height: 1.5;
      align-items: flex-start;
    }
    .footer-contact-row span:first-child { flex-shrink: 0; opacity: 0.7; margin-top: 1px; }
    .footer-contact-row a { color: rgba(255,255,255,0.68); text-decoration: none; }
    .footer-contact-row a:hover { color: var(--white); }
    .footer-placeholder {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
      font-style: italic;
      margin-top: 2px;
    }

    /* Jogi sáv */
    .footer-legal-bar {
      border-top: 1px solid rgba(255,255,255,0.09);
      max-width: 1180px;
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copyright {
      font-size: 0.76rem;
      color: rgba(255,255,255,0.38);
    }
    .footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
    .footer-legal-btn {
      font-size: 0.76rem;
      color: rgba(255,255,255,0.45);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      font-family: 'Nunito', sans-serif;
      transition: color 0.2s;
      text-decoration: underline;
    }
    .footer-legal-btn:hover { color: rgba(255,255,255,0.9); }
    .footer-sep { color: rgba(255,255,255,0.18); font-size: 0.7rem; }

    /* ===== JOGI MODALOK ===== */
    .legal-modal {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: var(--white);
      z-index: 9300;
      width: min(780px, calc(100vw - 20px));
      max-height: 88vh;
      border-radius: var(--radius-lg);
      box-shadow: 0 24px 64px rgba(0,0,0,0.28);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    /* .legal-modal.nv-open – ld. egységes blokk fentebb */
    .legal-modal-hdr {
      padding: 18px 22px 16px;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--white);
      flex-shrink: 0;
    }
    .legal-modal-hdr h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark-green);
      letter-spacing: 0.04em;
    }
    .legal-modal-body {
      padding: 24px 26px 28px;
      overflow-y: auto;
      flex: 1;
    }
    .legal-modal-body h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--dark-green);
      margin: 20px 0 6px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }
    .legal-modal-body h4:first-child { margin-top: 0; padding-top: 0; border-top: none; }
    .legal-modal-body p, .legal-modal-body li {
      font-size: 0.86rem;
      color: var(--text-body);
      line-height: 1.72;
      margin-bottom: 8px;
    }
    .legal-modal-body ul { padding-left: 18px; margin-bottom: 8px; }
    .legal-modal-body a { color: var(--light-green); }
    .legal-placeholder {
      background: #FFF8E1;
      border-left: 3px solid #F0C020;
      padding: 6px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      color: #7A5500;
      font-style: italic;
      margin: 4px 0 12px;
      display: block;
    }
    .green-strip {
      background: var(--dark-green);
      color: var(--white);
      text-align: center;
      padding: 20px;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.2rem, 3vw, 2rem);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .green-strip em { font-style: normal; color: var(--pale-green); }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(30px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .steps-grid { grid-template-columns: repeat(3, 1fr); }
      .step-item:nth-child(3)::after { display: none; }
      .kulonleges-grid { grid-template-columns: repeat(3, 1fr); }
      .vizion-box { grid-column: 1 / -1; }
      .ws-steps-grid { grid-template-columns: repeat(3, 1fr); }
      .ws-benefits { grid-template-columns: repeat(3, 1fr); }
      .strat-img-row { grid-template-columns: repeat(2, 1fr); }
      .nav-links { gap: 16px; }
      .nav-links a { font-size: 0.75rem; }
    }

    @media (max-width: 768px) {
      :root { --nav-h: 72px; }

      /* Nav */
      .nav-links { display: none; }
      .burger { display: flex; margin-left: auto; }

      /* Logo méretezés mobilon */
      .logo-svg { height: 58px; }

      /* Section padding */
      .section { padding: 52px 16px; }

      /* Hero – stack vertically */
      #hero-section {
        height: auto;
        min-height: unset;
        display: flex;
        flex-direction: column;
        background: var(--cream);
      }
      .hero-bg { display: none; }
      .hero-content {
        position: relative;
        z-index: 2;
        height: auto;
        padding: 36px 20px 28px;
        order: 2;
      }
      .hero-content h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
      .hero-img-wrap {
        position: relative;
        width: 100%;
        height: 58vw;
        min-height: 200px;
        order: 1;
      }

      /* Fun facts – 2x2 rács mobilon */
      .fun-facts-inner { grid-template-columns: 1fr 1fr; }
      .fun-facts-label { display: none; }
      .fact-card { border-left: none; border-top: 1px solid var(--border); padding: 14px 12px; }
      .fact-icon-svg { width: 40px; height: 40px; }
      .kombucha-box { margin-left: 0; border-radius: var(--radius); }

      /* Process steps */
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .step-item::after { display: none !important; }

      /* Flavors */
      .flavors-grid { grid-template-columns: 1fr; }

      /* Miért */
      .miert-top { grid-template-columns: 1fr; gap: 28px; }
      .kulonleges-grid { grid-template-columns: repeat(2, 1fr); }

      /* VS */
      .vs-grid { grid-template-columns: 1fr; }
      .vs-divider { flex-direction: row; padding-top: 0; justify-content: center; }
      .vs-bottom { grid-template-columns: 1fr; }

      /* Workshop */
      .ws-steps-grid { grid-template-columns: repeat(2, 1fr); }
      .ws-benefits { grid-template-columns: repeat(2, 1fr); }
      .ws-header { flex-direction: column; gap: 24px; }
      .ws-header-right { grid-template-columns: 1fr 1fr; }

      /* Stratégia */
      .strat-grid { grid-template-columns: 1fr; }
      .strat-img-row { grid-template-columns: repeat(4, 1fr); }

      /* Footer mobile */
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-legal-bar { flex-direction: column; text-align: center; gap: 10px; }
      .footer-legal-links { justify-content: center; }
      .footer-logo-svg { height: 50px; }
    }

    @media (max-width: 480px) {
      :root { --nav-h: 64px; }
      .section { padding: 40px 14px; }

      /* Logo extra small */
      .logo-svg { height: 48px; }

      /* Hero */
      .hero-content { padding: 28px 16px 24px; }
      .hero-content h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
      .hero-img-wrap { height: 64vw; }

      /* Fun facts: single column */
      .fun-facts-inner { grid-template-columns: 1fr; }
      .fact-card { border-left: none; border-top: 1px solid var(--border); }

      /* Steps: single column */
      .steps-grid { grid-template-columns: 1fr; }

      /* Mitől különleges: single */
      .kulonleges-grid { grid-template-columns: 1fr; }

      /* Workshop */
      .ws-steps-grid { grid-template-columns: repeat(2, 1fr); }
      .ws-header-right { grid-template-columns: 1fr; }
      .ws-benefits { grid-template-columns: repeat(2, 1fr); }

      /* Stratégia */
      .strat-img-row { grid-template-columns: repeat(2, 1fr); }

      /* VS */
      .vs-icons-strip { display: none; }

      /* Footer single column */
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-logo-svg { height: 44px; }
    }
    /* ===== MODAL OVERLAY ===== */
    .nv-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 9000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .nv-overlay.nv-open { opacity: 1; pointer-events: all; }

    /* ===== SÜTI BANNER ===== */
    .cookie-banner {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -48%) scale(0.96);
      background: var(--white);
      z-index: 9100;
      padding: 32px 28px 28px;
      border-radius: var(--radius-lg);
      width: min(580px, calc(100vw - 24px));
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 24px 64px rgba(0,0,0,0.22);
      border-top: 4px solid var(--dark-green);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .cookie-banner.nv-open {
      opacity: 1;
      pointer-events: all;
      transform: translate(-50%, -50%) scale(1);
    }
    .cookie-banner h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark-green);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 9px;
    }
    .cookie-banner > p {
      font-size: 0.88rem;
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .cookie-banner > p a,
    .cookie-banner > p button.cb-inline-link {
      color: var(--light-green);
      text-decoration: underline;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      font-size: inherit;
      font-family: inherit;
    }

    /* ═══ EGYENLŐ MÉRETŰ GOMBOK – GDPR art.7(3) / CNIL 2024 ═══
       Mindhárom gomb: azonos méret, azonos vizuális súly.
       Tilos: az "elfogad" gomb kiemelése mérettel vagy színnel. */
    .cookie-buttons {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
    }
    /* Közös gomb alap */
    .cookie-btn {
      font-family: 'Oswald', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 10px;
      border-radius: 50px;
      cursor: pointer;
      min-height: 48px;
      width: 100%;
      transition: all 0.2s;
      white-space: normal;
      line-height: 1.2;
      text-align: center;
    }
    /* Csak szükséges – körvonal */
    .cb-reject {
      background: var(--white);
      color: var(--dark-green);
      border: 2px solid var(--dark-green);
    }
    .cb-reject:hover { background: var(--pale-green); }
    /* Beállítások – semleges */
    .cb-settings {
      background: var(--off-white);
      color: var(--text-dark);
      border: 2px solid var(--border);
    }
    .cb-settings:hover { background: var(--cream-dark); }
    /* Mindent elfogad – teli, DE AZONOS MÉRETŰ */
    .cb-accept {
      background: var(--dark-green);
      color: var(--white);
      border: 2px solid var(--dark-green);
    }
    .cb-accept:hover { background: var(--mid-green); border-color: var(--mid-green); }

    /* Mobilon egymás alá */
    @media (max-width: 520px) {
      .cookie-buttons { grid-template-columns: 1fr; }
    }
    .cookie-settings {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -48%) scale(0.96);
      background: var(--white);
      z-index: 9200;
      padding: 32px 28px 28px;
      border-radius: var(--radius-lg);
      width: min(560px, calc(100vw - 24px));
      max-height: 88vh;
      overflow-y: auto;
      box-shadow: 0 24px 64px rgba(0,0,0,0.22);
      border-top: 4px solid var(--dark-green);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .cookie-settings.nv-open {
      opacity: 1;
      pointer-events: all;
      transform: translate(-50%, -50%) scale(1);
    }
    .cookie-settings > h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--dark-green);
      margin-bottom: 6px;
    }
    .cookie-settings > p {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.55;
    }
    .cookie-category {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px;
      margin-bottom: 10px;
    }
    .cookie-cat-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px;
    }
    .cookie-cat-row > div { flex: 1; }
    .cookie-cat-row h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--dark-green);
      margin-bottom: 4px;
    }
    .cookie-cat-row p {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin: 0;
    }
    .always-on-tag {
      font-family: 'Oswald', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--light-green);
      white-space: nowrap;
      padding-top: 3px;
    }
    /* Toggle switch */
    .cookie-toggle {
      position: relative;
      display: inline-block;
      width: 48px;
      height: 27px;
      flex-shrink: 0;
      cursor: pointer;
    }
    .cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
    .toggle-slider {
      position: absolute;
      inset: 0;
      background: #ccc;
      border-radius: 50px;
      transition: background 0.3s;
    }
    .toggle-slider::before {
      content: '';
      position: absolute;
      width: 21px; height: 21px;
      background: var(--white);
      border-radius: 50%;
      top: 3px; left: 3px;
      transition: transform 0.3s;
      box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }
    .cookie-toggle input:checked + .toggle-slider { background: var(--dark-green); }
    .cookie-toggle input:checked + .toggle-slider::before { transform: translateX(21px); }
    .cookie-toggle input:focus-visible + .toggle-slider { outline: 2px solid var(--dark-green); outline-offset: 2px; border-radius: 50px; }
    .cookie-settings-btns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 20px;
    }

    /* Bezáró X gomb */
    .modal-close {
      position: absolute;
      top: 14px; right: 14px;
      background: var(--cream-dark);
      border: none;
      width: 32px; height: 32px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      color: var(--text-dark);
      line-height: 1;
    }
    .modal-close:hover { background: var(--pale-green); }

    /* Cookie policy accordion */
    .cookie-policy-details {
      margin-top: 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .cookie-policy-details summary {
      padding: 12px 16px;
      cursor: pointer;
      font-family: 'Oswald', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--dark-green);
      background: var(--off-white);
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }
    .cookie-policy-details summary::after { content: '▼'; font-size: 0.7rem; opacity: 0.6; }
    .cookie-policy-details[open] summary::after { content: '▲'; }
    .cookie-policy-text {
      padding: 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .cookie-policy-text p { font-size: 0.8rem; color: var(--text-body); line-height: 1.55; margin: 0; }
    .cookie-policy-text a { color: var(--light-green); text-decoration: underline; }

    /* cb-inline-link (banner szövegben) */
    .cb-inline-link {
      background: none;
      border: none;
      padding: 0;
      font-size: inherit;
      font-family: inherit;
      color: var(--light-green);
      text-decoration: underline;
      cursor: pointer;
    }

    /* ===== LEBEGŐ SÜTI GOMB ===== */
    .cookie-float {
      position: fixed;
      bottom: 20px; left: 20px;
      width: 48px; height: 48px;
      background: var(--dark-green);
      color: var(--white);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 8000;
      box-shadow: 0 4px 16px rgba(28,58,12,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .cookie-float:hover { transform: scale(1.1); box-shadow: 0 6px 22px rgba(28,58,12,0.45); }

    /* Footer süti link */
    .footer-cookie-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      opacity: 0.65;
      cursor: pointer;
      transition: opacity 0.2s;
      background: none;
      border: none;
      color: var(--white);
      font-family: 'Nunito', sans-serif;
      padding: 0;
      text-decoration: underline;
    }
    .footer-cookie-link:hover { opacity: 1; }

    /* ===== HERO DUAL CTA ===== */
    .btn-hero-outline {
      background: transparent;
      color: var(--dark-green);
      border: 2px solid var(--dark-green);
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 13px 28px;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.25s;
      white-space: nowrap;
    }
    .btn-hero-outline:hover { background: var(--dark-green); color: var(--white); }

    /* ===== KAPCSOLATFELVÉTEL SZEKCIÓ ===== */
    #kapcsolatfelvetel { background: var(--cream); }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 60px;
      align-items: start;
    }
    .contact-left h2 { color: var(--dark-green); margin-bottom: 14px; }
    .contact-desc {
      font-size: 1rem;
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 400px;
    }
    .contact-reasons { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
    .contact-reason { display: flex; gap: 14px; align-items: flex-start; }
    .cr-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--pale-green);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .contact-reason h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.88rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--dark-green); margin-bottom: 3px;
    }
    .contact-reason p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
    .contact-direct {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600;
      color: var(--dark-green); text-decoration: none;
      border-bottom: 2px solid var(--pale-green); padding-bottom: 2px;
      transition: border-color 0.2s;
    }
    .contact-direct:hover { border-color: var(--dark-green); }

    /* Form kártya */
    .contact-right {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }
    .form-group {
      display: flex; flex-direction: column; gap: 5px;
      margin-bottom: 14px;
    }
    .form-row .form-group { margin-bottom: 0; }
    .form-group label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--dark-green);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 11px 14px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.9rem;
      color: var(--text-dark);
      background: var(--off-white);
      transition: border-color 0.2s, box-shadow 0.2s;
      width: 100%;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--dark-green);
      box-shadow: 0 0 0 3px rgba(28,58,12,0.1);
      background: var(--white);
    }
    .form-group input.field-error,
    .form-group select.field-error,
    .form-group textarea.field-error { border-color: var(--red); }
    .form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
    /* Select custom arrow */
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231C3A0C' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 38px;
      cursor: pointer;
    }
    /* Checkboxes */
    .form-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
    .form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
    .form-check input[type="checkbox"] {
      width: 18px; height: 18px; flex-shrink: 0;
      margin-top: 2px; accent-color: var(--dark-green); cursor: pointer;
    }
    .form-check span { font-size: 0.82rem; color: var(--text-body); line-height: 1.5; }
    /* Submit */
    .btn-full { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1rem; }
    .form-note {
      font-size: 0.72rem; color: var(--text-muted);
      margin-top: 12px; text-align: center; line-height: 1.5;
    }
    /* Status üzenetek */
    .form-status {
      border-radius: 8px; font-size: 0.87rem;
      line-height: 1.55; transition: all 0.3s;
      max-height: 0; overflow: hidden; margin-bottom: 0;
    }
    .form-status:not(:empty) { max-height: 120px; padding: 12px 16px; margin-bottom: 16px; }
    .form-status.success { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; }
    .form-status.error   { background: #FFEBEE; color: #B71C1C; border: 1px solid #EF9A9A; }
    .form-status.info    { background: #FFF8E1; color: #7A5500; border: 1px solid #FFE082; }
    .form-status a { color: inherit; font-weight: 700; }

    /* ===== RESPONSIVE – contact ===== */
    @media (max-width: 768px) {
      .contact-inner { grid-template-columns: 1fr; gap: 32px; }
      .contact-right { padding: 24px 18px; }
      .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
      .form-row .form-group { margin-bottom: 14px; }
    }
    @media (max-width: 480px) {
      .contact-right { padding: 20px 14px; }
    }

    /* ===== B2B CTA BANNER – Miért szekció ===== */
    .b2b-cta-banner {
      background: var(--dark-green);
      border-radius: var(--radius-lg);
      padding: 36px 44px;
      margin-top: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .b2b-cta-left { flex: 1; min-width: 260px; }
    .b2b-cta-tag {
      font-family: 'Oswald', sans-serif;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: #A8CC80; margin-bottom: 10px;
      display: flex; align-items: center; gap: 8px;
    }
    .b2b-cta-banner h3 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-weight: 700; color: var(--white);
      line-height: 1.15; margin-bottom: 10px;
    }
    .b2b-cta-banner p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.65;
      max-width: 500px;
    }
    .b2b-cta-points {
      display: flex; gap: 20px; flex-wrap: wrap;
      margin-top: 16px;
    }
    .b2b-cta-point {
      display: flex; align-items: center; gap: 6px;
      font-size: 0.8rem; color: rgba(255,255,255,0.8);
      font-family: 'Oswald', sans-serif;
      font-weight: 600; letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .b2b-cta-point::before {
      content: '✓'; color: #A8CC80; font-size: 0.9rem;
    }
    .btn-cta-white {
      background: var(--white);
      color: var(--dark-green);
      font-family: 'Oswald', sans-serif;
      font-size: 0.92rem; font-weight: 700;
      letter-spacing: 0.07em; text-transform: uppercase;
      padding: 15px 32px;
      border-radius: 50px;
      border: none; cursor: pointer;
      white-space: nowrap; flex-shrink: 0;
      transition: all 0.25s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    .btn-cta-white:hover {
      background: #A8CC80;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    }
    @media (max-width: 768px) {
      .b2b-cta-banner { flex-direction: column; padding: 28px 22px; gap: 24px; }
      .btn-cta-white { width: 100%; text-align: center; }
      .b2b-cta-points { gap: 12px; }
    }

    /* ===== WORKSHOP CTA ===== */
    .workshop-cta {
      background: var(--dark-green);
      border-radius: var(--radius-lg);
      padding: 28px 36px;
      margin-top: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      flex-wrap: wrap;
    }
    .ws-cta-text { flex: 1; min-width: 220px; }
    .ws-cta-text h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.35rem; font-weight: 700;
      color: var(--white); margin-bottom: 5px;
    }
    .ws-cta-text p {
      font-size: 0.87rem;
      color: rgba(255,255,255,0.68);
      line-height: 1.5;
    }
    .ws-cta-badges {
      display: flex; gap: 12px; flex-wrap: wrap;
      margin-top: 10px;
    }
    .ws-cta-badge {
      font-size: 0.72rem; font-weight: 700;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px; padding: 4px 12px;
    }
    @media (max-width: 768px) {
      .workshop-cta { flex-direction: column; padding: 24px 20px; gap: 20px; }
      .workshop-cta .btn-cta-white { width: 100%; text-align: center; }
    }