  .hero-bg__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: var(--black);
  }

  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(135deg, rgba(10,10,10,.5) 0%, rgba(253,184,30,.1) 45%, rgba(0,0,0,.6) 100%),
      linear-gradient(180deg, rgba(0,0,0,.3) 10%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.6) 100%);
    pointer-events: none;
  }

  /* animated noise overlay */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    opacity: .25;
  }

  /* orange accent bar */
  .hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--orange-light), var(--orange), var(--orange-dim));
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    padding: 0 40px;
    max-width: 960px;
    width: 100%;
    text-align: center;
  }

  .hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-bright), var(--orange));
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 24px;
    animation: fadeUp .6s ease both;
  }

  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 28px;
    animation: fadeUp .7s ease .1s both;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--yellow);
    display: block;
  }

  .hero-sub {
    font-size: 17px;
    color: var(--white-soft);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 44px;
    animation: fadeUp .7s ease .2s both;
  }

  .hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp .7s ease .3s both;
  }

  .btn {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 36px;
    cursor: pointer;
    border: none;
    transition: all .25s;
  }
  .btn-primary { background: linear-gradient(135deg, var(--orange-bright), var(--orange)); color: var(--black); }
  .btn-primary:hover { background: linear-gradient(135deg, var(--orange), var(--orange-dim)); transform: translateY(-2px); box-shadow: 0 8px 24px var(--orange-glow); }
  .btn-outline { background: transparent; color: var(--white); border: 2px solid var(--gray-light); }
  .btn-outline:hover { background: var(--orange-soft); color: var(--orange-light); border-color: var(--orange); transform: translateY(-2px); }

  .hero-stats {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 3;
    display: flex;
    gap: 60px;
    animation: fadeUp .7s ease .4s both;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
  }
  .stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

  /* ── SECTION LABELS ── */
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 16px;
  }

  /* ── OFFER SECTION ── */
  #oferta {
    padding: 100px 0;
    background: var(--surface-alt);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
  }

  .offer-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
  }

  /* category tabs */
  .tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gray-border);
    margin-bottom: 48px;
  }
  .tab {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    padding: 14px 26px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .tab:hover { color: var(--white); }
  .tab.active { color: var(--yellow); border-bottom-color: var(--yellow); }

  /* machine grid */
  .machines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .tab-panel { display: none; }
  .tab-panel.active { display: block; }

  .machine-card {
    background: var(--card-bg);
    border: 1px solid var(--gray-border);
    transition: all .3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .machine-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.35), 0 0 0 1px var(--orange-soft); }
  .machine-card:hover .machine-img-wrap::after { opacity: 1; }

  .machine-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: #1a1c20;
  }
  .machine-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
  }
  .machine-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
  }
  .machine-card:hover .machine-img-wrap img { transform: scale(1.06); }

  .machine-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: linear-gradient(135deg, var(--orange-bright), var(--orange));
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    z-index: 2;
  }

  .machine-info {
    padding: 22px 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }
  .machine-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-border);
  }
  .machine-name:empty {
    display: none;
  }

  .machine-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2px 0 6px;
    flex: 1;
  }
  .spec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.4;
  }
  .spec strong { color: var(--white); font-weight: 600; text-align: right; }

  .machine-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--gray-border);
    padding-top: 16px;
    margin-top: auto;
    flex-shrink: 0;
  }
  .machine-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--yellow);
  }
  .machine-price span { font-size: 13px; color: var(--gray); font-weight: 400; }
  .btn-sm {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid #444;
    padding: 8px 18px;
    transition: all .2s;
  }
  .btn-sm:hover { border-color: var(--yellow); color: var(--yellow); }

  .see-more-wrap { text-align: center; margin-top: 40px; }

  /* ── SERVICES ── */
  #uslugi {
    padding: 100px 0;
    background: var(--black);
    position: relative;
  }
  #uslugi::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, var(--orange-soft) 0%, transparent 55%);
    pointer-events: none;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
  }

  .service-card {
    background: var(--dark2);
    padding: 44px 32px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    text-decoration: none;
    display: block;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { background: var(--card-bg-hover); }
  .service-card:nth-child(even) { background: var(--surface); }
  .service-card:nth-child(even):hover { background: var(--card-bg-hover); }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: block;
    object-fit: contain;
  }
  .service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gray-muted);
    margin-bottom: 16px;
  }
  .service-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
  }
  .service-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

  /* ── FINANCING ── */
  #finansowanie {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--surface) 100%);
  }

  .financing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .financing-card {
    border: 1px solid var(--gray-border);
    padding: 44px 36px;
    position: relative;
    transition: all .3s;
    text-decoration: none;
    display: block;
    background: var(--card-bg);
  }
  .financing-card:hover { border-color: var(--orange); box-shadow: 0 8px 28px var(--orange-glow); }

  .fin-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 14px;
  }
  .fin-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

  /* ── WHY US ── */
  #dlaczego {
    padding: 100px 0;
    background: var(--dark3);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-border);
  }
  #dlaczego::before {
    content: 'PM';
    position: absolute;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 400px;
    font-weight: 900;
    color: rgba(255,255,255,.015);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-list { list-style: none; margin-top: 40px; }
  .why-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-border);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-soft);
    transition: color .2s;
  }
  .why-list li:hover { color: var(--white); }
  .why-list li::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--yellow);
    flex-shrink: 0;
    transform: rotate(45deg);
  }

  .why-image {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
  }
  .why-image__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .why-image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.45));
    pointer-events: none;
  }
  .why-image::after {
    content: '';
    position: absolute;
    left: -20px; bottom: -20px;
    width: 120px; height: 120px;
    border: 3px solid var(--yellow);
    z-index: -1;
  }

  /* ── CONTACT ── */
  #kontakt {
    padding: 100px 0;
    background: var(--black);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 56px;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 20px;
    margin-top: 36px;
  }
  .contact-info h3:first-child { margin-top: 0; }
  .contact-info p, .contact-info a {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    text-decoration: none;
  }
  .contact-info a:hover { color: var(--yellow); }

  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
  }
  .form-group input,
  .form-group textarea {
    background: var(--dark2);
    border: 1px solid #2a2c30;
    color: var(--white);
    padding: 14px 18px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    resize: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: #444; }
  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--yellow); }

  .char-count { text-align: right; font-size: 11px; color: #444; }

  .contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .contact-alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid transparent;
  }

  .contact-alert--success {
    background: rgba(42, 122, 42, 0.15);
    border-color: rgba(42, 122, 42, 0.45);
    color: #8fdf8f;
  }

  .contact-alert--error {
    background: rgba(180, 40, 40, 0.12);
    border-color: rgba(220, 80, 80, 0.35);
    color: #ffb4b4;
  }

  .form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white-soft);
    cursor: pointer;
  }

  .form-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--yellow);
    cursor: pointer;
  }

  .form-check a {
    color: var(--yellow);
    text-decoration: none;
  }

  .form-check a:hover {
    text-decoration: underline;
  }

  /* ── TESTIMONIALS ── */
  #opinie {
    padding: 100px 0;
    background: var(--dark);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--gray-border);
    padding: 36px;
    position: relative;
    transition: border-color .25s, box-shadow .25s;
  }
  .testimonial-card:hover { border-color: var(--gray-light); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
  .testimonial-card::before {
    content: '"';
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    position: absolute;
    top: 20px; right: 28px;
    opacity: .3;
  }
  .stars { color: var(--yellow); font-size: 14px; margin-bottom: 16px; }
  .testimonial-text { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--yellow);
    flex-shrink: 0;
  }
  .author-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .author-role { font-size: 12px; color: var(--gray); }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    border-top: 2px solid var(--gray-border);
    box-shadow: inset 0 3px 0 var(--orange-dim);
    padding: 70px 0 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #1a1c20;
    margin-bottom: 30px;
  }

  .footer-logo {
    display: inline-block;
    margin-bottom: 16px;
  }
  .footer-logo-img {
    display: block;
    height: 100px;
    width: auto;
    max-width: 180px;
  }

  .footer-tagline { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 24px; }

  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--white); }

  .footer-contact p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
  }
  .footer-contact a { color: var(--gray); text-decoration: none; }
  .footer-contact a:hover { color: var(--yellow); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: #444;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-legal a {
    color: var(--gray);
    text-decoration: none;
    transition: color .2s;
  }

  .footer-legal a:hover {
    color: var(--yellow);
  }

  .footer-credit {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #1e2024;
    text-align: center;
    font-size: 11px;
    color: var(--gray-muted);
    letter-spacing: 0.3px;
  }

  .footer-credit a,
  .footer-credit a:link,
  .footer-credit a:visited {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
    transition: color .2s, opacity .2s;
  }

  .footer-credit a:hover,
  .footer-credit a:focus-visible {
    color: var(--yellow-light);
    opacity: 1;
  }

  .cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: rgba(10, 10, 10, 0.96);
    border-top: 3px solid var(--yellow);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(100%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    backdrop-filter: blur(10px);
  }

  .cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
  }

  body.cookie-banner-open {
    padding-bottom: 120px;
  }

  .cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
  }

  .cookie-banner__content {
    flex: 1;
    min-width: 0;
  }

  .cookie-banner__badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .cookie-banner__content p {
    color: var(--white-soft);
    font-size: 14px;
    line-height: 1.7;
    max-width: 760px;
  }

  .cookie-banner__content a {
    color: var(--yellow);
    text-decoration: none;
  }

  .cookie-banner__content a:hover {
    text-decoration: underline;
  }

  .cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
  }

  .cookie-banner__btn {
    white-space: nowrap;
  }

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

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

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 0 20px; height: 76px; }
    .logo-img { height: 44px; max-width: 60px; }
    .logo-text { font-size: 22px; letter-spacing: 1.5px; }
    .logo { gap: 10px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    nav.open .nav-links {
      display: flex; flex-direction: column; position: absolute;
      top: 70px; left: 0; right: 0; background: var(--black);
      padding: 20px; border-top: 1px solid #222; gap: 0;
    }
    .hero-content { padding: 0 24px; }
    .hero-stats { display: none; }
    .machines-grid, .services-grid, .financing-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-legal { flex-direction: column; gap: 10px; }
    .cookie-banner__inner { flex-direction: column; align-items: stretch; }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__btn { flex: 1; text-align: center; }
    body.cookie-banner-open { padding-bottom: 180px; }
    .container { padding: 0 20px; }
    .tabs { overflow-x: auto; }
  }
