/* ==========================================================
   BS David Renov — style.css
   Brand colors taken from logo: navy blue, red, slate gray.
   ========================================================== */

:root {
    --navy: #0E2A56;
    --navy-deep: #081A38;
    --navy-soft: #1B3F76;
    --red: #D62828;
    --red-deep: #B81F1F;
    --gray: #6B7280;
    --gray-soft: #E5E7EB;
    --bg: #FFFFFF;
    --bg-alt: #F6F8FB;
    --text: #1B2233;
    --text-soft: #4B5563;
    --shadow-sm: 0 2px 8px rgba(14, 42, 86, 0.06);
    --shadow-md: 0 8px 24px rgba(14, 42, 86, 0.10);
    --shadow-lg: 0 20px 50px rgba(14, 42, 86, 0.18);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --container: 1200px;
    --header-h: 84px;

    --font-title: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
    --font-body: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-title);
    color: var(--navy);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 .6em;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.accent { color: var(--red); }

/* ============== Buttons ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(214, 40, 40, 0.35); }
.btn--primary:hover { background: var(--red-deep); }
.btn--ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ============== Topbar ============== */
.topbar {
    background: var(--navy-deep);
    color: #cbd5e1;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    gap: 24px;
}
.topbar__left, .topbar__right {
    display: flex;
    align-items: center;
    gap: 22px;
}
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    transition: color .2s;
}
.topbar__item:hover { color: #fff; }

/* ============== Header ============== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-soft);
    transition: box-shadow .2s ease, background .2s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}
.header__brand { display: flex; align-items: center; }
.header__logo { width: 64px; height: 64px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
    padding: 10px 14px;
    font-weight: 500;
    color: var(--navy);
    border-radius: 999px;
    font-size: 15px;
    transition: background .2s, color .2s;
}
.nav__link:hover { background: var(--bg-alt); color: var(--red); }

.header__cta { padding: 10px 20px; font-size: 14px; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.burger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .25s, opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============== Hero ============== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding: 60px 0 80px;
}
.hero__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    will-change: transform;
}
.hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 26, 56, 0.92) 0%, rgba(14, 42, 86, 0.78) 45%, rgba(14, 42, 86, 0.55) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 820px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.hero__sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    max-width: 640px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.18);
    max-width: 640px;
}
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item strong {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero__trust-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-top: 6px;
    font-weight: 500;
}

/* ============== Section bits ============== */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.eyebrow {
    display: inline-block;
    color: var(--red);
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.eyebrow--light { color: #ffb3b3; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 3rem); margin-bottom: 18px; }
.section-title--light { color: #fff; }
.section-sub { color: var(--text-soft); font-size: 1.05rem; }

/* ============== Services ============== */
.services { padding: 100px 0; background: var(--bg-alt); }
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
}
.service-card {
    position: relative;
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-md);
    transition: transform .4s ease, box-shadow .4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8, 26, 56, 0.05) 0%, rgba(8, 26, 56, 0.55) 45%, rgba(8, 26, 56, 0.95) 100%);
    transition: background .3s ease;
}
.service-card:hover .service-card__overlay {
    background: linear-gradient(180deg, rgba(8, 26, 56, 0.35) 0%, rgba(8, 26, 56, 0.78) 50%, rgba(8, 26, 56, 0.97) 100%);
}
.service-card__body {
    position: relative;
    z-index: 2;
    padding: 30px 28px 28px;
    width: 100%;
}
.service-card__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 8px 18px rgba(214, 40, 40, 0.4);
}
.service-card h3 {
    color: #fff;
    font-size: 1.45rem;
    margin-bottom: 8px;
}
.service-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin: 0 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .35s ease, margin .35s ease;
}
.service-card:hover p { max-height: 200px; opacity: 1; margin-bottom: 16px; }
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    padding-bottom: 4px;
    transition: color .2s, border-color .2s;
}
.service-card__link:hover { color: #ffd1d1; border-color: var(--red); }

/* ============== About ============== */
.about { padding: 110px 0; }
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__media { position: relative; padding: 40px 40px 60px 0; }
.about__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}
.about__img--main { width: 100%; aspect-ratio: 4/5; }
.about__img--accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    aspect-ratio: 1;
    border: 8px solid #fff;
}
.about__experience {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--red);
    color: #fff;
    padding: 22px 26px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(214, 40, 40, 0.4);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}
.about__experience strong {
    font-family: var(--font-title);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}
.about__experience span {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
}

.about__content p {
    color: var(--text-soft);
    margin: 0 0 14px;
    font-size: 1.02rem;
}
.about__list {
    margin: 24px 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}
.about__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-weight: 500;
}
.about__list-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

/* ============== Gallery ============== */
.gallery { padding: 100px 0; background: var(--bg-alt); }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery__item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8,26,56,0.45));
    opacity: 0;
    transition: opacity .3s;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }

/* ============== Reviews ============== */
.reviews { padding: 100px 0; }
.reviews__rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 0.95rem;
}
.reviews__stars {
    color: #f5b400;
    font-size: 1.4rem;
    letter-spacing: 2px;
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
}
.review {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-soft);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.review:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(214, 40, 40, 0.3);
}
.review__stars { color: #f5b400; font-size: 1.1rem; letter-spacing: 2px; }
.review p {
    color: var(--text);
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    flex-grow: 1;
}
.review__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-soft);
}
.review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 14px;
}
.review__author strong { display: block; color: var(--navy); font-family: var(--font-title); }
.review__author span { font-size: 13px; color: var(--gray); }

/* ============== Contact ============== */
.contact {
    padding: 100px 0;
    background:
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 70%, var(--navy-soft) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(214,40,40,0.25), transparent 60%);
    border-radius: 50%;
}
.contact::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(214,40,40,0.18), transparent 65%);
    border-radius: 50%;
}
.contact__grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}
.contact__info .section-head { text-align: left; margin: 0; }
.contact__lead { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.contact__list { display: flex; flex-direction: column; gap: 18px; }
.contact__list li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact__label { display: block; font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.contact__list a { color: #fff; font-weight: 500; transition: color .2s; }
.contact__list a:hover { color: #ffb3b3; }

.contact__form {
    background: #fff;
    color: var(--text);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--shadow-lg);
}
.contact__form h3 { font-size: 1.4rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    font-family: var(--font-title);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-soft);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { text-align: center; font-size: 12px; color: var(--gray); margin: 12px 0 0; }
.form-success {
    margin-top: 16px;
    padding: 14px;
    background: #e7f7ed;
    color: #126a36;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
}

/* ============== Footer ============== */
.footer {
    background: var(--navy-deep);
    color: #cbd5e1;
    padding-top: 70px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}
.footer__col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
    font-family: var(--font-title);
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a { color: #cbd5e1; font-size: 14px; transition: color .2s; }
.footer__col a:hover { color: var(--red); }
.footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.footer__col p { font-size: 14px; color: #94a3b8; margin: 0; }
.footer__contact li { font-size: 14px; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 13px;
    color: #94a3b8;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============== Floating action buttons ============== */
.fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.fab__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 14px;
    border-radius: 999px;
    color: #fff;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.25);
    transition: transform .2s ease, box-shadow .2s ease;
}
.fab__btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 18px 40px rgba(0,0,0,0.3); }
.fab__btn--whatsapp { background: #25D366; }
.fab__btn--call { background: var(--red); }
.fab__btn svg { flex-shrink: 0; }
.fab__label { white-space: nowrap; }

/* ============== Reveal animations ============== */
.service-card,
.review,
.gallery__item,
.about__content,
.about__media {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.service-card.is-visible,
.review.is-visible,
.gallery__item.is-visible,
.about__content.is-visible,
.about__media.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .service-card, .review, .gallery__item, .about__content, .about__media {
        opacity: 1; transform: none; transition: none;
    }
}

/* ============== Responsive ============== */
@media (max-width: 980px) {
    .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 50px; }
    .about__media { padding: 0; max-width: 520px; margin: 0 auto; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 760px) {
    :root { --header-h: 70px; }
    .topbar__item--hide { display: none; }
    .topbar__inner { font-size: 12px; gap: 12px; }
    .topbar__left, .topbar__right { gap: 14px; }

    .header__cta { display: none; }
    .header__logo { width: 52px; height: 52px; }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--gray-soft);
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        transition: transform .3s ease;
        z-index: 95;
    }
    .nav.is-open { transform: translateY(0); }
    .nav__link { padding: 14px 16px; }
    .burger { display: flex; }

    .hero { min-height: auto; padding: 80px 0 70px; }
    .hero__trust { gap: 24px; }

    .services, .about, .gallery, .reviews, .contact { padding: 70px 0; }
    .section-head { margin-bottom: 40px; }

    .about__list { grid-template-columns: 1fr; }
    .about__experience {
        position: static;
        margin: 20px auto 0;
        width: fit-content;
    }
    .about__media { display: flex; flex-direction: column; align-items: center; }
    .about__img--accent {
        position: relative;
        width: 70%;
        margin-top: -50px;
        margin-left: auto;
    }

    .footer__inner { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
    .contact__form { padding: 26px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .fab { right: 14px; bottom: 14px; gap: 10px; }
    .fab__label { display: none; }
    .fab__btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 420px) {
    .topbar__left { display: none; }
    .topbar__right { width: 100%; justify-content: space-between; }
    .hero__title { font-size: 2.2rem; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
}

/* ============== Cookie Banner ============== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.is-visible {
    transform: translateY(0);
}
.cookie-banner__content {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner__text {
    flex: 1;
    min-width: 280px;
}
.cookie-banner__text strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}
.cookie-banner__text p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}
.cookie-banner__text a {
    color: #ffb3b3;
    text-decoration: underline;
}
.cookie-banner__text a:hover {
    color: #fff;
}
.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-banner__actions .btn {
    padding: 10px 24px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}

/* ============== RGPD Checkbox ============== */
.form-group--checkbox {
    margin-bottom: 20px;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-soft);
}
.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-soft);
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}
.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 6px;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg) scale(0);
    transition: transform 0.2s ease;
    margin-top: -2px;
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--red);
    border-color: var(--red);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: rotate(-45deg) scale(1);
}
.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.2);
}
.checkbox-text a {
    color: var(--red);
    text-decoration: underline;
}
.checkbox-text a:hover {
    color: var(--red-deep);
}
