
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    /* CORNEXI brandbook 2025 */
    --petrol:      #004b5a;  /* Pantone 7477 C – elsődleges */
    --petrol-soft: #1a5f6d;
    --cream:       #f2ece1;  /* Pantone 663 C */
    --teal:        #11706c;  /* Pantone 328 C */
    --orange:      #f84c1b;  /* Pantone 172 C */
    --orange-dark: #d93d10;
    --skyblue:     #aad1d9;  /* Pantone 551 C */
    --skyblue-soft:#c3dfe5;
    --cyan:        #00b5e2;  /* Pantone 306 C – cukormentes */
    --purple:      #bb29bb;  /* Pantone Purple C – gluténmentes */
    --ink:         #06333d;
    --font-h: 'Filson Soft', 'Fredoka', sans-serif;
    --font-b: 'Filson Soft Book', 'Quicksand', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--cream); color: var(--ink); font-family: var(--font-b); font-weight: 500; overflow-x: hidden; }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  @keyframes bob {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-12px); }
  }
  @keyframes bobCenter {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50%      { transform: translate(-50%, -50%) translateY(-12px); }
  }
  @keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes cardIn {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
  }

  .progress-bar {
    position: fixed; top: 0; left: 0; height: 3px;
    background: var(--orange);
    z-index: 9999; width: 0%; transition: width .1s linear;
  }

  .back-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 48px; height: 48px; background: var(--orange); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer; box-shadow: 0 6px 20px rgba(248,76,27,.35);
    z-index: 500; opacity: 0; transform: translateY(20px);
    transition: opacity .3s, transform .3s; border: none;
  }
  .back-top.visible { opacity: 1; transform: translateY(0); }
  .back-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

  /* Pill – a márka szignatúra formája */
  .pill {
    display: inline-block; border-radius: 999px;
    font-family: var(--font-h); font-weight: 600;
  }

  /* NAVBAR */
  .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2.5rem; height: 74px;
    background: var(--petrol);
    transition: box-shadow .3s;
  }
  .navbar.scrolled { box-shadow: 0 4px 24px rgba(0,45,55,0.30); }
  .nav-logo img { height: 40px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
  .nav-links a {
    font-family: var(--font-h); font-weight: 500; font-size: .98rem;
    color: var(--cream); transition: color .2s; position: relative;
  }
  .nav-links a::after {
    content: ''; display: block; height: 3px; border-radius: 2px; background: var(--orange);
    width: 0; transition: width .2s; position: absolute; bottom: -6px; left: 0;
  }
  .nav-links a:hover { color: #fff; }
  .nav-links a:hover::after { width: 100%; }
  .nav-links .nav-cta {
    background: var(--orange); color: #fff; padding: .55rem 1.4rem; border-radius: 999px;
    transition: background .2s, transform .2s;
  }
  .nav-links .nav-cta::after { display: none; }
  .nav-links .nav-cta:hover { background: var(--orange-dark); transform: scale(1.05); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .hamburger span { display: block; width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .mobile-menu {
    display: none; position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
    background: var(--petrol); z-index: 999; padding: 2rem;
    flex-direction: column; gap: 1.2rem; overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: var(--font-h); font-weight: 600; font-size: 1.4rem; color: var(--cream); border-bottom: 1px solid rgba(242,236,225,0.15); padding-bottom: .8rem; }
  .mobile-menu a:hover { color: var(--orange); }

  /* HERO */
  .hero {
    position: relative; min-height: 100vh; background: var(--skyblue);
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center; padding: 9rem 0 0; overflow: hidden;
  }
  .hero-content, .hero-products { padding-left: 2rem; padding-right: 2rem; }
  .hero-leaf {
    position: absolute; pointer-events: none; opacity: .45; user-select: none;
  }
  .hero-leaf--tl { width: 420px; top: -90px; left: -110px; transform: rotate(-12deg); }
  .hero-leaf--br { width: 560px; bottom: -140px; right: -150px; transform: rotate(8deg); }
  .hero-content { position: relative; z-index: 2; max-width: 1000px; }
  .hero-label {
    background: rgba(255,255,255,0.65); color: var(--petrol);
    font-family: var(--font-h); font-weight: 600; font-size: .8rem;
    letter-spacing: .14em; text-transform: uppercase; padding: .5rem 1.3rem;
    border-radius: 999px; margin-bottom: 1.8rem; display: inline-block;
    opacity: 0; animation: fadeSlideUp .6s .2s forwards;
  }
  .hero-headline {
    font-family: var(--font-h); font-weight: 700;
    font-size: clamp(2.8rem, 8vw, 7rem); line-height: 1.04;
    color: var(--petrol); margin-bottom: 1.8rem; text-transform: uppercase;
    letter-spacing: .01em;
  }
  .hero-headline .word { display: inline-block; opacity: 0; animation: fadeSlideUp .5s forwards; }
  .hero-headline .word:nth-child(1) { animation-delay: .35s; }
  .hero-headline .word:nth-child(2) { animation-delay: .5s; }
  .hero-headline .word:nth-child(4) { animation-delay: .65s; }
  .hero-headline .line-break { display: block; }
  .word-crossed { position: relative; display: inline-block; }
  .word-crossed svg {
    position: absolute; inset: -12% -8%; width: 116%; height: 124%;
    pointer-events: none;
  }
  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem); color: var(--ink);
    max-width: 560px; margin: 0 auto 2.6rem; line-height: 1.7;
    opacity: 0; animation: fadeSlideUp .7s .85s forwards;
  }
  .btn {
    display: inline-block; font-family: var(--font-h); font-weight: 600;
    border-radius: 999px; padding: .95rem 2.4rem; font-size: 1.02rem; cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s; border: none;
  }
  .btn-orange { background: var(--orange); color: #fff; box-shadow: 0 6px 24px rgba(248,76,27,.30); }
  .btn-orange:hover { background: var(--orange-dark); transform: scale(1.06); box-shadow: 0 10px 32px rgba(248,76,27,.40); }
  .btn-ghost { background: transparent; color: var(--petrol); box-shadow: inset 0 0 0 2.5px var(--petrol); }
  .btn-ghost:hover { background: var(--petrol); color: var(--cream); transform: scale(1.06); }
  .btn-white { background: #fff; color: var(--petrol); box-shadow: 0 6px 24px rgba(0,45,55,.18); }
  .btn-white:hover { transform: scale(1.06); box-shadow: 0 10px 32px rgba(0,45,55,.25); }
  .hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeSlideUp .7s 1.05s forwards; }

  .hero-products {
    position: relative; z-index: 2; display: flex; gap: clamp(1rem, 4vw, 3.5rem);
    align-items: flex-end; justify-content: center; margin-top: 3rem;
    opacity: 0; animation: fadeSlideUp .8s 1.25s forwards;
  }
  .hero-products img {
    height: clamp(120px, 20vw, 230px); width: auto; object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0,45,55,.25));
    animation: bob 3.8s ease-in-out infinite;
  }
  .hero-products img:nth-child(2) { animation-delay: .6s; height: clamp(150px, 24vw, 280px); }
  .hero-products img:nth-child(3) { animation-delay: 1.2s; }

  .ticker-wrap {
    width: 100%; align-self: stretch;
    overflow: hidden; background: var(--petrol); padding: .9rem 0;
    position: relative; z-index: 2; margin-top: 3.5rem;
  }
  .ticker-track { display: flex; width: max-content; animation: ticker-scroll 24s linear infinite; }
  .ticker-track span { font-family: var(--font-h); font-weight: 600; font-size: 1rem; color: var(--cream); white-space: nowrap; padding: 0 1.4rem; letter-spacing: .08em; text-transform: uppercase; }
  .ticker-track span.sep { color: var(--orange); }

  /* SECTION HEADER pill */
  .section-head { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; }
  .section-label {
    font-family: var(--font-h); font-size: .82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .12em;
    background: var(--orange); color: #fff; padding: .4rem 1.1rem; border-radius: 999px;
  }

  /* RÓLUNK */
  .about { background: var(--petrol); color: var(--cream); padding: 7.5rem 5vw; position: relative; overflow: hidden; }
  .about-leaf { position: absolute; width: 520px; right: -140px; bottom: -160px; opacity: .12; pointer-events: none; }
  .about-inner { position: relative; z-index: 1; max-width: 1150px; margin: 0 auto; }
  .about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
  .about-year { font-family: var(--font-h); font-weight: 700; font-size: clamp(4.5rem, 10vw, 8rem); color: var(--skyblue); line-height: 1; display: block; }
  .about h2 { font-family: var(--font-h); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem); margin: 1rem 0 1.2rem; color: #fff; text-transform: uppercase; }
  .about-grid p { color: rgba(242,236,225,.75); font-size: 1.05rem; line-height: 1.75; }
  .about-grid .btn { margin-top: 1.8rem; }
  .value-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
  .value-card {
    background: rgba(242,236,225,.07); border: 1px solid rgba(242,236,225,.12);
    border-radius: 22px; padding: 1.8rem 1.5rem;
    transition: transform .3s, background .3s;
  }
  .value-card:hover { transform: translateY(-6px); background: rgba(242,236,225,.12); }
  .value-card .value-tag {
    display: inline-block; font-family: var(--font-h); font-size: .78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em; padding: .35rem .95rem;
    border-radius: 999px; margin-bottom: .9rem; background: #fff; color: var(--petrol);
  }
  .value-card:nth-child(odd) .value-tag { background: var(--orange); color: #fff; }
  .value-card p { font-size: .92rem; color: rgba(242,236,225,.65); line-height: 1.6; }

  /* TERMÉKEK */
  #termekek { background: var(--cream); padding-bottom: 2rem; }
  .products-header { padding: 5.5rem 5vw 2.5rem; max-width: 1600px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
  .products-header-title { font-family: var(--font-h); font-weight: 700; font-size: clamp(2.4rem, 5vw, 4.5rem); color: var(--petrol); text-transform: uppercase; line-height: 1.02; }
  .products-header-sub { font-size: 1.02rem; color: var(--teal); margin-top: .7rem; font-weight: 600; max-width: 420px; }

  .product-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; padding: 0 40px 40px; max-width: 1600px; margin: 0 auto;
  }
  .prod-card {
    position: relative; border-radius: 24px; height: 420px;
    overflow: hidden; cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    opacity: 0; transform: translateY(40px) scale(0.95);
  }
  .prod-card.card-visible { animation: cardIn .55s ease forwards; }
  .prod-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 24px 60px rgba(0,45,55,0.22); }
  .prod-card::before {
    content: ''; position: absolute; inset: 0;
    background: url('/images/logos/alnyomat-white.png') no-repeat -18% 118% / 62% auto;
    opacity: .16; pointer-events: none;
  }
  .prod-card-img {
    position: absolute; left: 50%; top: 46%;
    transform: translate(-50%, -50%);
    width: auto; height: 62%; max-width: 78%;
    object-fit: contain;
    animation: bobCenter 3.6s ease-in-out infinite;
    z-index: 1; filter: drop-shadow(0 12px 20px rgba(0,45,55,.22));
  }
  .prod-card-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.1rem 1.2rem 1.2rem;
    display: flex; align-items: flex-end; justify-content: space-between; z-index: 2;
  }
  .prod-card-name {
    font-family: var(--font-h); font-weight: 600; font-size: 1.3rem;
    text-transform: uppercase; color: #fff; letter-spacing: .03em; line-height: 1.15;
    max-width: 170px;
  }
  .prod-card-name.dark-text { color: var(--petrol); }
  .prod-card-arrow {
    width: 40px; height: 40px; border-radius: 50%; background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1rem; color: var(--petrol);
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 12px rgba(0,45,55,0.18);
  }
  .prod-card-arrow.dark-arrow { background: var(--petrol); color: #fff; }
  .prod-card:hover .prod-card-arrow { transform: scale(1.15); background: var(--orange); color: #fff; }

  .freefrom-note {
    max-width: 1600px; margin: 0 auto; padding: 0 40px 4rem;
    display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
    font-size: .9rem; color: var(--teal); font-weight: 600;
  }
  .freefrom-dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; margin-right: .45rem; vertical-align: -2px; }

  /* MEGTALÁLSZ MINKET */
  .distributors { padding: 5.5rem 2rem; text-align: center; overflow: hidden; background: #fff; }
  .distributors-label {
    font-family: var(--font-h); font-size: .82rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .12em; color: #fff; background: var(--teal);
    display: inline-block; padding: .4rem 1.1rem; border-radius: 999px; margin-bottom: 1rem;
  }
  .distributors h2 { font-family: var(--font-h); font-weight: 700; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 3rem; color: var(--petrol); text-transform: uppercase; }
  .logo-track-wrap { position: relative; overflow: hidden; }
  .logo-track-wrap::before, .logo-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
  .logo-track-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
  .logo-track-wrap::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
  .logo-track { display: flex; align-items: center; gap: 3rem; width: max-content; animation: marquee 20s linear infinite; }
  .logo-track-wrap:hover .logo-track { animation-play-state: paused; }
  .logo-item { display: flex; align-items: center; justify-content: center; background: var(--cream); border-radius: 16px; padding: .9rem 1.6rem; height: 76px; min-width: 130px; transition: transform .2s, box-shadow .2s, background .2s; }
  .logo-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,45,55,0.12); background: #fff; }
  .logo-item img { height: 44px; width: auto; max-width: 110px; object-fit: contain; }
  .logo-text { font-family: var(--font-h); font-weight: 600; font-size: 1.1rem; color: #9aa5a3; transition: color .3s; }
  .logo-item:hover .logo-text { color: var(--petrol); }

  /* BLOG */
  .blog { background: var(--cream); padding: 6.5rem 5vw; }
  .blog-inner { max-width: 1150px; margin: 0 auto; }
  .blog-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
  .blog h2 { font-family: var(--font-h); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--petrol); text-transform: uppercase; margin-top: .6rem; }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .blog-card {
    background: #fff; border-radius: 24px; overflow: hidden; display: flex; flex-direction: column;
    transition: transform .3s, box-shadow .3s;
  }
  .blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,45,55,.14); }
  .blog-card-visual { height: 150px; position: relative; overflow: hidden; }
  .blog-card-visual img { position: absolute; width: 46%; left: 50%; top: 55%; transform: translate(-50%,-50%) rotate(-6deg); opacity: .9; }
  .blog-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
  .blog-tag { align-self: flex-start; font-family: var(--font-h); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: .3rem .85rem; border-radius: 999px; background: var(--skyblue); color: var(--petrol); }
  .blog-card h3 { font-family: var(--font-h); font-weight: 600; font-size: 1.15rem; color: var(--petrol); line-height: 1.35; }
  .blog-card .blog-more { margin-top: auto; font-family: var(--font-h); font-weight: 600; font-size: .9rem; color: var(--orange); }
  .blog-card:hover .blog-more { text-decoration: underline; }

  /* KARRIER */
  .career { background: var(--orange); padding: 6.5rem 5vw; position: relative; overflow: hidden; }
  .career-leaf { position: absolute; width: 460px; left: -130px; top: -120px; opacity: .18; pointer-events: none; }
  .career-inner { position: relative; z-index: 1; max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
  .career .section-label { background: #fff; color: var(--orange); }
  .career h2 { font-family: var(--font-h); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.4rem); color: #fff; text-transform: uppercase; margin: .9rem 0 1rem; line-height: 1.08; }
  .career p { color: rgba(255,255,255,.88); font-size: 1.05rem; line-height: 1.7; max-width: 520px; }
  .career-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
  .career .btn-white:hover { color: var(--orange); }

  /* KAPCSOLAT */
  .contact { background: var(--skyblue); padding: 6.5rem 5vw; position: relative; overflow: hidden; }
  .contact-leaf { position: absolute; width: 500px; right: -150px; top: -130px; opacity: .35; pointer-events: none; }
  .contact-inner { position: relative; z-index: 1; max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; }
  .contact h2 { font-family: var(--font-h); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--petrol); text-transform: uppercase; margin: .9rem 0 1.2rem; }
  .contact-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.4rem; }
  .contact-item { display: flex; align-items: center; gap: .9rem; font-size: 1rem; color: var(--ink); font-weight: 600; }
  .contact-item a:hover { color: var(--orange); }
  .contact-ic {
    width: 44px; height: 44px; border-radius: 50%; background: var(--petrol); color: var(--cream);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .contact-card {
    background: #fff; border-radius: 26px; padding: 2.2rem 2.2rem 2.4rem;
    box-shadow: 0 18px 50px rgba(0,45,55,.14);
  }
  .contact-card h3 { font-family: var(--font-h); font-weight: 600; font-size: 1.3rem; color: var(--petrol); margin-bottom: 1.4rem; }
  .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .contact-form .full { grid-column: 1 / -1; }
  .contact-form label { display: block; font-family: var(--font-h); font-weight: 600; font-size: .82rem; color: var(--teal); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }
  .contact-form input, .contact-form textarea {
    width: 100%; border: 2px solid var(--skyblue); border-radius: 14px;
    padding: .8rem 1rem; font-family: var(--font-b); font-size: .95rem; color: var(--ink);
    background: var(--cream); transition: border-color .2s; resize: vertical;
  }
  .contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--orange); }
  .contact-form button { grid-column: 1 / -1; justify-self: start; }

  /* FOOTER – kompakt */
  footer { background: var(--petrol); color: rgba(242,236,225,.75); padding: 3.5rem 5vw 2rem; position: relative; overflow: hidden; }
  .footer-leaf { position: absolute; width: 380px; right: -110px; bottom: -140px; opacity: .10; pointer-events: none; }
  .footer-main {
    position: relative; z-index: 1; max-width: 1150px; margin: 0 auto 2.2rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  }
  .footer-main img.footer-logo { height: 42px; width: auto; }
  .footer-nav { display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap; }
  .footer-nav a { font-family: var(--font-h); font-weight: 500; font-size: .95rem; color: rgba(242,236,225,.8); transition: color .2s; }
  .footer-nav a:hover { color: var(--orange); }
  .social-row { display: flex; gap: .9rem; }
  .social-btn {
    width: 46px; height: 46px; border-radius: 50%; background: rgba(242,236,225,.12);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    transition: background .2s, transform .2s, color .2s; color: var(--cream);
  }
  .social-btn:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
  .footer-bottom {
    position: relative; z-index: 1; max-width: 1150px; margin: 0 auto;
    border-top: 1px solid rgba(242,236,225,.14); padding-top: 1.6rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    font-size: .82rem; color: rgba(242,236,225,.45);
  }
  .footer-bottom a { color: rgba(242,236,225,.6); }
  .footer-bottom a:hover { color: var(--orange); }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .value-cards { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .career-inner { grid-template-columns: 1fr; }
    .career-cta { justify-content: flex-start; }
    .contact-inner { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid .blog-card:last-child { display: none; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .navbar { padding: 0 1.4rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 20px 24px; }
    .prod-card { height: 300px; }
    .prod-card-name { font-size: 1.02rem; }
    .hero { padding: 8rem 0 0; }
    .hero-content, .hero-products { padding-left: 1.5rem; padding-right: 1.5rem; }
    .hero-leaf--tl { width: 260px; }
    .hero-leaf--br { width: 320px; }
    .value-cards { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-grid .blog-card:last-child { display: flex; }
    .contact-form { grid-template-columns: 1fr; }
    .footer-main { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
    .products-header { padding: 4rem 20px 2rem; }
    .freefrom-note { padding: 0 20px 3rem; }
  }
  @media (max-width: 480px) {
    .hero-headline { font-size: clamp(2.3rem, 12vw, 4rem); }
    .product-grid { gap: 10px; padding: 0 14px 18px; }
    .prod-card { height: 240px; }
    .prod-card-name { font-size: .92rem; }
    .hero-products img { height: 110px; }
    .hero-products img:nth-child(2) { height: 135px; }
  }

/* ===== SUBPAGES ===== */
.nav-links a.active { color: #fff; }
.nav-links a.active::after { width: 100%; }
.nav-links a.nav-cta.active { background: var(--orange-dark); }

.page-hero { position: relative; overflow: hidden; padding: 11rem 5vw 5rem; background: var(--skyblue); }
.page-hero--petrol { background: var(--petrol); }
.page-hero--orange { background: var(--orange); }
.page-hero--cream  { background: var(--cream); }
.page-hero .hero-leaf-bg { position: absolute; width: 520px; right: -150px; bottom: -180px; opacity: .32; pointer-events: none; }
.page-hero--petrol .hero-leaf-bg, .page-hero--orange .hero-leaf-bg { opacity: .13; }
.page-hero-inner { position: relative; z-index: 1; max-width: 1150px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-h); font-weight: 700; text-transform: uppercase; font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.05; color: var(--petrol); margin: .9rem 0 1rem; }
.page-hero--petrol h1, .page-hero--orange h1 { color: #fff; }
.page-hero .lead { max-width: 640px; font-size: 1.08rem; line-height: 1.75; color: var(--ink); }
.page-hero--petrol .lead { color: rgba(242,236,225,.82); }
.page-hero--orange .lead { color: rgba(255,255,255,.9); }
.page-hero--orange .section-label { background: #fff; color: var(--orange); }

.section { padding: 5.5rem 5vw; }
.section-inner { max-width: 1150px; margin: 0 auto; }
.section h2.section-title { font-family: var(--font-h); font-weight: 700; text-transform: uppercase; font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--petrol); margin: .8rem 0 1.2rem; }

/* product detail hero */
.prod-hero { position: relative; overflow: hidden; padding: 10.5rem 5vw 5rem; }
.prod-hero-inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.prod-hero-title { font-family: var(--font-h); font-weight: 700; text-transform: uppercase; font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.04; color: #fff; margin: .9rem 0 1.1rem; }
.prod-hero-sub { color: rgba(255,255,255,.92); font-size: 1.1rem; line-height: 1.75; max-width: 520px; margin-bottom: 2rem; }
.prod-hero-title.dark { color: var(--petrol); }
.prod-hero-sub.dark { color: var(--ink); }
.prod-hero-img { height: clamp(240px, 30vw, 400px); width: auto; object-fit: contain; justify-self: center; filter: drop-shadow(0 24px 44px rgba(0,45,55,.3)); animation: bob 4s ease-in-out infinite; }
.prod-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.prod-feature { background: #fff; border-radius: 22px; padding: 1.8rem 1.6rem; transition: transform .3s, box-shadow .3s; }
.prod-feature:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,45,55,.12); }
.prod-feature h3 { font-family: var(--font-h); font-weight: 600; font-size: 1.1rem; color: var(--petrol); margin-bottom: .6rem; }
.prod-feature p { font-size: .95rem; line-height: 1.65; color: var(--teal); }

/* CTA band */
.cta-band { background: var(--orange); position: relative; overflow: hidden; padding: 5.5rem 5vw; text-align: center; }
.cta-band .cta-leaf { position: absolute; width: 440px; left: -130px; top: -130px; opacity: .16; pointer-events: none; }
.cta-band h2 { position: relative; z-index: 1; font-family: var(--font-h); font-weight: 700; text-transform: uppercase; font-size: clamp(1.9rem, 4.5vw, 3.2rem); color: #fff; margin-bottom: 1.6rem; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .btn-white:hover { color: var(--orange); }

/* karrier */
.job-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.job-card { background: #fff; border-radius: 20px; padding: 1.7rem 1.9rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; transition: transform .25s, box-shadow .25s; }
.job-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,45,55,.12); }
.job-card h3 { font-family: var(--font-h); font-weight: 600; font-size: 1.25rem; color: var(--petrol); }
.job-meta { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .6rem; }
.job-tag { font-family: var(--font-h); font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; background: var(--skyblue); color: var(--petrol); padding: .32rem .9rem; border-radius: 999px; }

/* timeline (rolunk) */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2rem; }
.timeline-card { background: #fff; border-radius: 22px; padding: 1.8rem 1.5rem; border-top: 6px solid var(--orange); }
.timeline-card:nth-child(2) { border-top-color: var(--teal); }
.timeline-card:nth-child(3) { border-top-color: var(--skyblue); }
.timeline-card:nth-child(4) { border-top-color: var(--purple); }
.timeline-card .tl-year { font-family: var(--font-h); font-weight: 700; font-size: 1.6rem; color: var(--petrol); display: block; margin-bottom: .5rem; }
.timeline-card p { font-size: .95rem; line-height: 1.6; color: var(--teal); }

@media (max-width: 900px) {
  .prod-hero-inner { grid-template-columns: 1fr; text-align: left; }
  .prod-hero-img { justify-self: start; height: clamp(200px, 44vw, 300px); }
  .prod-feature-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
}

/* subtle base shadow so light cards separate from light backgrounds */
.prod-card { box-shadow: 0 8px 24px rgba(0,45,55,.08); }

/* ===== PRODUCT DETAIL v2 ===== */
.variants-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.3rem; margin-top: 2rem; }
.variant-card { border-radius: 22px; overflow: hidden; aspect-ratio: 3/4; display: flex; flex-direction: column; position: relative; transition: transform .3s, box-shadow .3s; box-shadow: 0 8px 24px rgba(0,45,55,.08); }
.variant-card::before { content: ''; position: absolute; inset: 0; background: url('/images/logos/alnyomat-white.png') no-repeat -22% 120% / 70% auto; opacity: .14; pointer-events: none; }
.variant-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,45,55,.2); }
.variant-img-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 1.4rem; min-height: 0; }
.variant-img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0,45,55,.22)); transition: transform .3s; }
.variant-card:hover .variant-img { transform: scale(1.07); }
.variant-label { font-family: var(--font-h); font-weight: 600; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; color: #fff; padding: 1rem 1.2rem; background: rgba(0,45,55,.18); position: relative; z-index: 1; }
.variant-card.light .variant-label { color: var(--petrol); background: rgba(255,255,255,.55); }
.variant-detail { font-family: var(--font-b); font-size: .78rem; font-weight: 500; opacity: .9; text-transform: none; letter-spacing: 0; margin-top: .3rem; line-height: 1.45; }

.prod-about { background: var(--petrol); color: var(--cream); padding: 6rem 5vw; position: relative; overflow: hidden; }
.prod-about .about-leaf { position: absolute; width: 480px; right: -140px; bottom: -150px; opacity: .12; pointer-events: none; }
.prod-about-inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.prod-about h2 { font-family: var(--font-h); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem); color: #fff; text-transform: uppercase; margin: .9rem 0 1.2rem; line-height: 1.1; }
.prod-about p { color: rgba(242,236,225,.75); font-size: 1.05rem; line-height: 1.8; }
.tag-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.tag-pill { font-family: var(--font-h); font-size: .8rem; font-weight: 600; padding: .45rem 1.1rem; border-radius: 999px; background: rgba(242,236,225,.12); border: 1px solid rgba(242,236,225,.22); color: var(--cream); }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.stat-card { background: rgba(242,236,225,.07); border: 1px solid rgba(242,236,225,.12); border-radius: 20px; padding: 1.6rem 1.2rem; text-align: center; transition: background .3s, transform .3s; }
.stat-card:hover { background: rgba(242,236,225,.13); transform: translateY(-4px); }
.stat-number { font-family: var(--font-h); font-weight: 700; font-size: 2.2rem; color: var(--skyblue); display: block; line-height: 1.1; margin-bottom: .3rem; }
.stat-label { font-size: .85rem; color: rgba(242,236,225,.6); font-weight: 500; }

.spotlight-band { background: var(--skyblue); padding: 6rem 5vw; position: relative; overflow: hidden; }
.spotlight-inner { max-width: 1150px; margin: 0 auto; position: relative; z-index: 1; }
.spotlight-inner h2 { font-family: var(--font-h); font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--petrol); text-transform: uppercase; margin: .9rem 0 1.2rem; }
.spotlight-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.spotlight-grid p { line-height: 1.8; color: var(--ink); margin-bottom: 1rem; }
.spotlight-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.spotlight-list li { background: #fff; border-radius: 14px; padding: .85rem 1.1rem; font-size: .92rem; font-weight: 600; color: var(--petrol); box-shadow: 0 6px 18px rgba(0,45,55,.08); }

.nutrition-section { background: var(--cream); padding: 6rem 5vw; }
.nutrition-inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.nutrition-heading { font-family: var(--font-h); font-weight: 600; font-size: 1.45rem; color: var(--petrol); margin: .9rem 0 1rem; text-transform: uppercase; }
.ingredients-text { font-size: .96rem; line-height: 1.8; color: var(--ink); margin-bottom: 1.3rem; }
.allergen-box { display: flex; align-items: flex-start; gap: .7rem; background: #fff; border: 2px solid var(--orange); border-radius: 16px; padding: 1rem 1.2rem; font-size: .88rem; color: var(--ink); font-weight: 600; line-height: 1.55; }
.allergen-box svg { flex-shrink: 0; margin-top: 2px; fill: var(--orange); }
.nutrition-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: .93rem; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,45,55,.08); }
.nutrition-table th { font-family: var(--font-h); font-weight: 600; text-align: left; padding: .8rem 1.1rem; background: var(--petrol); color: var(--cream); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.nutrition-table th:last-child, .nutrition-table td:last-child { text-align: right; }
.nutrition-table td { padding: .62rem 1.1rem; border-bottom: 1px solid rgba(0,75,90,.08); color: var(--ink); }
.nutrition-table tr:last-child td { border-bottom: none; }
.nutrition-table tr.sub td { color: var(--teal); font-size: .86rem; padding-left: 1.7rem; }
.nutrition-table td:last-child { font-weight: 600; font-family: var(--font-h); color: var(--petrol); }

@media (max-width: 900px) {
  .prod-about-inner, .nutrition-inner, .spotlight-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .variants-grid { grid-template-columns: repeat(2, 1fr); }
}
