/* ========================================
   FHU Inventor – Design System
   sanok.hvac4upro.pl
   ======================================== */

/* ---- TOKENS ---- */
:root {
    --navy:       #0A2342;
    --navy-dark:  #061629;
    --navy-mid:   #0D1F3C;
    --cyan:       #00B4D8;
    --cyan-light: #48CAE4;
    --orange:     #F77F00;
    --orange-dk:  #D96B00;
    --white:      #FFFFFF;
    --gray-50:    #F8FAFC;
    --gray-100:   #F1F5F9;
    --gray-200:   #E2E8F0;
    --gray-400:   #94A3B8;
    --gray-600:   #475569;
    --gray-800:   #1E293B;
    --text:       #1E293B;
    --text-light: #475569;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:  0 4px 16px rgba(0,0,0,.12);
    --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
    --shadow-cyan: 0 8px 32px rgba(0,180,216,.25);

    --transition: .2s ease;
    --font: 'Inter', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITIES ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--navy-mid); color: var(--white); }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }

.badge { display: inline-block; background: rgba(0,180,216,.12); color: var(--cyan); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 20px; margin-bottom: 1rem; border: 1px solid rgba(0,180,216,.2); }

.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: .75rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 620px; margin-bottom: 3rem; }
.section--dark .section-subtitle, .section--navy .section-subtitle { color: rgba(255,255,255,.7); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.cyan { color: var(--cyan); }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem; transition: all var(--transition); white-space: nowrap; }
.btn--primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(247,127,0,.35); }
.btn--primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,127,0,.4); }
.btn--outline { border: 2px solid var(--cyan); color: var(--cyan); }
.btn--outline:hover { background: var(--cyan); color: var(--navy); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn--lg { padding: 1rem 2.4rem; font-size: 1rem; }

/* ---- TOPBAR ---- */
.topbar { background: var(--navy-dark); color: rgba(255,255,255,.75); font-size: .82rem; padding: .45rem 0; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar__item { display: flex; align-items: center; gap: .4rem; }
.topbar__phone a { color: var(--cyan); font-weight: 600; }
.topbar__phone a:hover { color: var(--cyan-light); }

/* ---- HEADER ---- */
.header { background: var(--navy); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,.3); transition: background var(--transition); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 2rem; }
.header__logo { display: flex; align-items: center; justify-content: center; background: var(--navy); padding: 10px 18px 18px 18px; border-radius: 0 0 var(--radius-md) var(--radius-md); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); align-self: flex-start; z-index: 1010; transition: all var(--transition); }
.header__logo img { height: 58px; width: auto; filter: invert(1) hue-rotate(180deg) brightness(1.15) contrast(1.1); transition: transform var(--transition); }
.header__logo:hover { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35); background: var(--navy-dark); }
.header__logo:hover img { transform: scale(1.02); }

/* ---- NAV ---- */
.nav__list { display: flex; align-items: center; gap: .25rem; }
.nav__link { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; padding: .5rem .85rem; border-radius: var(--radius-sm); transition: all var(--transition); display: flex; align-items: center; gap: .3rem; }
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__cta { background: var(--orange); color: var(--white) !important; padding: .5rem 1.25rem; }
.nav__cta:hover { background: var(--orange-dk) !important; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__submenu { display: none; position: absolute; top: calc(100% + .5rem); left: 0; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); min-width: 240px; padding: .5rem; z-index: 200; }
.nav__submenu::before { content: ""; position: absolute; top: -1rem; left: 0; right: 0; height: 1rem; }
.nav__dropdown:hover .nav__submenu { display: block; animation: fadeDown .15s ease; }
.nav__submenu li a { display: block; padding: .6rem 1rem; color: var(--text); font-size: .88rem; border-radius: var(--radius-sm); transition: all var(--transition); }
.nav__submenu li a:hover { background: var(--gray-100); color: var(--navy); padding-left: 1.25rem; }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ---- HERO ---- */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 50%, #0B2545 100%); color: var(--white); padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(0,180,216,.12) 0%, transparent 65%); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero__badge { display: inline-block; background: rgba(0,180,216,.15); border: 1px solid rgba(0,180,216,.3); color: var(--cyan); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 20px; margin-bottom: 1.5rem; }
.hero__title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.25rem; }
.hero__title span { color: var(--cyan); }
.hero__desc { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 2rem; max-width: 500px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__phone { display: flex; align-items: center; gap: .75rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero__phone-icon { width: 44px; height: 44px; background: rgba(0,180,216,.15); border: 1px solid rgba(0,180,216,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero__phone-text small { display: block; font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.hero__phone-text a { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.hero__image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,35,66,.3) 0%, transparent 60%); }
.hero__badge-float { position: absolute; bottom: -1rem; left: -1rem; background: var(--orange); color: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); z-index: 5; }
.hero__badge-float strong { display: block; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.hero__badge-float span { font-size: .78rem; opacity: .85; }

/* ---- STATS BAR ---- */
.stats { background: var(--cyan); padding: 2rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat__number { font-size: 2.2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat__label { font-size: .85rem; font-weight: 600; color: var(--navy); opacity: .8; margin-top: .25rem; }

/* ---- ZALETY (WHY US) ---- */
.zalety__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.zaleta-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 2rem; transition: all .25s ease; position: relative; overflow: hidden; }
.zaleta-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--orange)); transform: scaleX(0); transition: transform .3s ease; transform-origin: left; }
.zaleta-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.zaleta-card:hover::before { transform: scaleX(1); }
.zaleta-card__icon { width: 52px; height: 52px; background: linear-gradient(135deg, rgba(0,180,216,.15), rgba(0,180,216,.05)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1rem; }
.zaleta-card__title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.zaleta-card__text { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* ---- OFERTA CARDS ---- */
.oferta__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.oferta-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .25s ease; display: flex; flex-direction: column; }
.oferta-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.oferta-card__img { height: 200px; overflow: hidden; position: relative; }
.oferta-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.oferta-card:hover .oferta-card__img img { transform: scale(1.05); }
.oferta-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.oferta-card__icon { font-size: 1.5rem; margin-bottom: .75rem; }
.oferta-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.oferta-card__text { font-size: .88rem; color: var(--text-light); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.oferta-card__link { display: inline-flex; align-items: center; gap: .4rem; color: var(--cyan); font-weight: 600; font-size: .88rem; transition: gap var(--transition); }
.oferta-card__link:hover { gap: .7rem; }

/* ---- MARKI ---- */
.marki { padding: 3rem 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.marki__title { text-align: center; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 2rem; }
.marki__list { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.marka { font-size: 1.3rem; font-weight: 800; color: var(--gray-400); letter-spacing: .05em; transition: color var(--transition); }
.marka:hover { color: var(--navy); }

/* ---- GALERIA / GRID ---- */
.galeria__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.galeria-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.galeria-item:hover img { transform: scale(1.06); }
.galeria-item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,35,66,.85) 0%, transparent 60%); opacity: 0; transition: opacity var(--transition); display: flex; align-items: flex-end; padding: 1.25rem; }
.galeria-item:hover .galeria-item__overlay { opacity: 1; }
.galeria-item__text { color: var(--white); font-weight: 600; font-size: .9rem; }

/* ---- KONTAKT / FORMULARZ ---- */
.kontakt__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.kontakt__info h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 1rem; }
.kontakt__info p { color: var(--text-light); margin-bottom: 2rem; }
.kontakt__detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.kontakt__detail-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--cyan), #0096C7); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white; }
.kontakt__detail-text strong { display: block; font-weight: 700; font-size: .85rem; margin-bottom: .2rem; }
.kontakt__detail-text a, .kontakt__detail-text span { font-size: 1rem; color: var(--text); }
.kontakt__detail-text a:hover { color: var(--cyan); }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.form-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font); font-size: .95rem; color: var(--text); background: var(--gray-50); transition: all var(--transition); outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--cyan); background: var(--white); box-shadow: 0 0 0 3px rgba(0,180,216,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .error { font-size: .8rem; color: #E53E3E; margin-top: .3rem; display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.alert-success { background: #F0FFF4; border: 1px solid #C6F6D5; color: #276749; padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-weight: 500; }

/* ---- FAQ ---- */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: .75rem; overflow: hidden; }
.faq-item__question { padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1rem; transition: background var(--transition); user-select: none; }
.faq-item__question:hover { background: var(--gray-50); }
.faq-item__question.active { background: var(--navy); color: var(--white); }
.faq-item__question .chevron { width: 20px; height: 20px; transition: transform var(--transition); flex-shrink: 0; }
.faq-item__question.active .chevron { transform: rotate(180deg); }
.faq-item__answer { display: none; padding: 1.25rem 1.5rem; border-top: 1px solid var(--gray-200); color: var(--text-light); line-height: 1.75; font-size: .95rem; }
.faq-item__answer.open { display: block; animation: slideDown .2s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- OBSZAR DZIAŁANIA ---- */
.obszar__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.miasta-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.miasto-tag { background: var(--gray-100); border: 1px solid var(--gray-200); color: var(--text); padding: .4rem 1rem; border-radius: 20px; font-size: .88rem; font-weight: 500; transition: all var(--transition); }
.miasto-tag:hover, .miasto-tag--main { background: var(--cyan); border-color: var(--cyan); color: var(--navy); font-weight: 700; }

/* ---- PAGE HERO ---- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); padding: 3.5rem 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(0,180,216,.1) 0%, transparent 60%); }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.page-hero__icon svg { width: 3rem; height: 3rem; }
.page-hero__title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: .75rem; }
.page-hero__subtitle { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 600px; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .83rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ---- CTA SECTION ---- */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(0,180,216,.15) 0%, transparent 70%); }
.cta-section__inner { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.8); padding: 4rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; }
.footer__brand img { margin-bottom: 1rem; }
.footer__brand p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer__col h4 { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1.25rem; }
.footer__col ul li { margin-bottom: .6rem; }
.footer__col ul a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__col ul a:hover { color: var(--white); }
.footer__contact p { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; line-height: 1.5; }
.footer__contact svg { flex-shrink: 0; margin-top: .15rem; color: var(--cyan); }
.footer__contact a:hover { color: var(--cyan); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero__image { max-width: 600px; }
    .oferta__grid { grid-template-columns: repeat(2, 1fr); }
    .zalety__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .kontakt__grid { grid-template-columns: 1fr; }
    .obszar__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--navy); z-index: 2000; padding: 5rem 1.5rem 2rem; transition: right .3s ease; overflow-y: auto; }
    .nav.open { right: 0; }
    .nav__list { flex-direction: column; align-items: flex-start; gap: .25rem; }
    .nav__dropdown .nav__submenu { position: static; display: none; box-shadow: none; background: rgba(255,255,255,.05); border-radius: var(--radius-sm); margin-top: .25rem; padding: .25rem; }
    .nav__dropdown .nav__submenu li a { color: rgba(255,255,255,.7); }
    .nav__dropdown:hover .nav__submenu { display: block; }
    .nav__link { color: rgba(255,255,255,.9); padding: .75rem 1rem; width: 100%; }
    .topbar__item:first-child { display: none; }

    .hero { padding: 3rem 0; }
    .hero__actions { flex-direction: column; }
    .hero__badge-float { display: none; }
    .oferta__grid { grid-template-columns: 1fr; }
    .zalety__grid { grid-template-columns: 1fr; }
    .galeria__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom .container { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .cta-section__actions { flex-direction: column; align-items: center; }
    .marki__list { gap: 2rem; }
}

@media (max-width: 480px) {
    .galeria__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr 1fr; }
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
    position: fixed;
    bottom: -120px;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 35, 66, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    opacity: 0;
}
.cookie-banner--show {
    bottom: 1.5rem;
    opacity: 1;
}
.cookie-banner__content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.cookie-banner__icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.cookie-banner__text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}
.cookie-banner__text a {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: underline;
}
.cookie-banner__text a:hover {
    color: var(--cyan-light);
}
.cookie-banner__actions {
    flex-shrink: 0;
}
.btn--sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.88rem;
}
.btn--cookie-reject {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: transparent;
}
.btn--cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.25rem;
        left: 1rem;
        right: 1rem;
    }
    .cookie-banner--show {
        bottom: 1rem;
    }
    .cookie-banner__actions {
        width: 100%;
    }
    .cookie-banner__actions button {
        width: 100%;
        justify-content: center;
    }
}
