:root {
    --brand-red: #d61d27;
    --brand-gold: #f8ac07;
    --brand-blue: #0553b1;
    --brand-green: #589936;
    --brand-navy: #012653;
    --brand-teal: #07909d;
    --brand-cream: #f7f4ec;
    --brand-white: #ffffff;
    --ink-soft: #214768;
    --shadow-xl: 0 28px 80px rgba(1, 38, 83, 0.18);
    --shadow-md: 0 18px 40px rgba(1, 38, 83, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--brand-navy);
    font-family: "Trebuchet MS", "Lucida Sans Unicode", sans-serif;
    background:
        radial-gradient(circle at 12% 18%, rgba(214, 29, 39, 0.10), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(248, 172, 7, 0.18), transparent 20%),
        radial-gradient(circle at 15% 82%, rgba(5, 83, 177, 0.12), transparent 28%),
        radial-gradient(circle at 82% 84%, rgba(88, 153, 54, 0.14), transparent 23%),
        linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    overflow: clip;
}

.section-shell {
    position: relative;
    padding: 118px 0;
}

.page-home .section-shell:first-of-type {
    padding-top: 164px;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(1, 38, 83, 0.10);
    box-shadow: 0 10px 24px rgba(1, 38, 83, 0.08);
}

.hero-video {
    width: 100%;
    height: clamp(260px, 32vw, 380px);
    object-fit: cover;
    border-radius: 24px;
    background: #012653;
}

.section-title,
.hero-title,
.modal-title,
.service-card h2,
.info-tile h2,
.contact-card strong,
.system-core h3 {
    font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-title,
.section-title.large {
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    line-height: 0.94;
    max-width: 10ch;
    margin: 22px 0 18px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 0.96;
    margin: 20px 0 14px;
}

.hero-copy,
.section-copy,
.modal-copy,
.footer-copy,
.info-tile p,
.service-card p,
.contact-card a,
.contact-card span,
.contact-card strong,
.accordion-body,
.legal-copy p,
.system-core p,
.system-detail-card p {
    color: var(--ink-soft);
}

.hero-copy,
.section-copy {
    font-size: 1.05rem;
    max-width: 36rem;
    margin: 0;
}

.section-copy.wide {
    max-width: 44rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-badges,
.hygiene-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-badges span,
.hygiene-tags span {
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(1, 38, 83, 0.08);
    font-size: 0.92rem;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-brand {
    color: var(--brand-white);
    border: 0;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
    box-shadow: 0 18px 30px rgba(5, 83, 177, 0.25);
}

.btn-brand:hover,
.btn-brand:focus-visible {
    color: var(--brand-white);
    box-shadow: 0 20px 36px rgba(5, 83, 177, 0.32);
}

.btn-ghost {
    color: var(--brand-navy);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(1, 38, 83, 0.12);
}

.btn-outline-light {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--brand-white);
    background: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    color: var(--brand-navy);
    background: var(--brand-white);
}

.site-navbar {
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(14px);
    transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-navbar.is-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(1, 38, 83, 0.10);
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-copy,
.footer-brand span {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong,
.footer-brand strong {
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.brand-copy small,
.footer-brand small {
    margin-top: 5px;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.site-navbar__desktop {
    gap: 1.25rem;
}

.site-navbar__mobile-actions {
    flex-shrink: 0;
}

.nav-call {
    padding-inline: 1rem;
    min-height: 46px;
}

.nav-link {
    padding: 0.8rem 1rem !important;
    color: var(--brand-navy);
    font-weight: 700;
    position: relative;
}

.site-navbar__desktop .nav-link.active::after,
.site-navbar__desktop .nav-link:hover::after,
.site-navbar__desktop .nav-link:focus-visible::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.45rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-gold), var(--brand-green), var(--brand-blue));
}

.nav-toggle {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(1, 38, 83, 0.1);
    box-shadow: 0 12px 30px rgba(1, 38, 83, 0.12);
}

.navbar-toggler-icon {
    width: 1.7rem;
    height: 1.7rem;
    background-image:
        linear-gradient(var(--brand-navy), var(--brand-navy)),
        linear-gradient(var(--brand-navy), var(--brand-navy)),
        linear-gradient(var(--brand-navy), var(--brand-navy));
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: center 5px, center 12px, center 19px;
}

.nav-drawer {
    width: min(90vw, 420px) !important;
    color: var(--brand-navy);
    background:
        radial-gradient(circle at 12% 12%, rgba(248, 172, 7, 0.16), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(214, 29, 39, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.98));
    border-left: 1px solid rgba(1, 38, 83, 0.08);
}

.nav-drawer .offcanvas-header {
    padding: 1.35rem 1.35rem 1rem;
}

.nav-drawer .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 0 1.35rem 1.5rem;
}

.nav-drawer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.nav-drawer-brand p,
.nav-drawer-intro p,
.nav-drawer-contact-card small {
    margin: 0;
    color: var(--ink-soft);
}

.nav-drawer-intro {
    padding: 0.35rem 0 1.2rem;
}

.nav-drawer-links {
    gap: 0.6rem;
}

.nav-drawer-links .nav-link {
    padding: 1rem 1.1rem !important;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(1, 38, 83, 0.08);
    box-shadow: 0 14px 28px rgba(1, 38, 83, 0.06);
    transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.nav-drawer-links .nav-link:hover,
.nav-drawer-links .nav-link:focus-visible,
.nav-drawer-links .nav-link.active {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 32px rgba(1, 38, 83, 0.1);
}

.nav-drawer-links .nav-link::after {
    display: none;
}

.nav-drawer-contact {
    display: grid;
    gap: 12px;
    margin-top: 1.35rem;
}

.nav-drawer-contact-card {
    display: grid;
    gap: 4px;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(1, 38, 83, 0.05);
    border: 1px solid rgba(1, 38, 83, 0.08);
}

.nav-drawer-contact-card strong {
    font-size: 1rem;
}

.nav-drawer-actions {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding-top: 1.4rem;
}

.media-card,
.system-panel,
.certificate-shell,
.info-tile,
.service-card,
.contact-card,
.legal-copy,
.cta-ribbon,
.offer-modal-shell,
.gallery-modal-shell {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(1, 38, 83, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.media-card {
    position: relative;
    overflow: hidden;
    padding: 18px;
}

.media-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    pointer-events: none;
}

.media-poster {
    width: 100%;
    border-radius: 24px;
    height: clamp(260px, 32vw, 380px);
    object-fit: cover;
}

.media-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 40px rgba(1, 38, 83, 0.18);
}

.media-play span {
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--brand-navy);
}

.media-note {
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(1, 38, 83, 0.05);
    font-size: 0.92rem;
    font-weight: 700;
}

.system-panel {
    padding: 26px;
}

.cloth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cloth-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 148px;
    padding: 20px;
    text-align: left;
    border: 0;
    border-radius: var(--radius-lg);
    color: var(--brand-white);
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(1, 38, 83, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cloth-card:hover,
.cloth-card:focus-visible,
.cloth-card.is-active {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(1, 38, 83, 0.18);
}

.cloth-card strong {
    font-size: 1.3rem;
}

.cloth-card small {
    font-size: 0.95rem;
    opacity: 0.95;
}

.cloth-tone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.cloth-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.cloth-card::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 92px;
    height: 92px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.14);
    transform: rotate(24deg);
}

.cloth-red {
    background: linear-gradient(145deg, #ef3d46, var(--brand-red));
}

.cloth-gold {
    background: linear-gradient(145deg, #ffc434, var(--brand-gold));
}

.cloth-blue {
    background: linear-gradient(145deg, #1b6cdf, var(--brand-blue));
}

.cloth-green {
    background: linear-gradient(145deg, #78c74e, var(--brand-green));
}

.system-stage {
    --system-accent: var(--brand-red);
    position: relative;
    display: grid;
    place-items: center;
    min-height: 310px;
    margin-bottom: 18px;
    border-radius: 28px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0%, rgba(243, 247, 251, 0.96) 48%, rgba(231, 240, 248, 0.82) 100%);
    overflow: hidden;
}

.system-orbit,
.system-orbit::before,
.system-orbit::after {
    position: absolute;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--system-accent) 38%, white);
}

.system-orbit {
    width: 220px;
    height: 220px;
    opacity: 0.55;
}

.system-orbit::before,
.system-orbit::after {
    content: "";
    inset: -18px;
}

.system-orbit::after {
    inset: 24px;
}

.system-core {
    position: relative;
    z-index: 2;
    width: min(100%, 360px);
    padding: 34px 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(1, 38, 83, 0.08);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.system-core span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--system-accent) 14%, white);
    color: var(--brand-navy);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.system-core h3 {
    margin: 18px 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.system-detail-card {
    display: block;
    height: 100%;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(1, 38, 83, 0.06), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(1, 38, 83, 0.08);
}

.system-detail-card span {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.system-detail-card strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.05;
}

.bucket-visual {
    display: flex;
    gap: 16px;
    margin: 10px 0 18px;
}

.bucket {
    position: relative;
    flex: 1;
    min-height: 122px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    border: 4px solid rgba(1, 38, 83, 0.12);
    background: rgba(255, 255, 255, 0.72);
}

.bucket strong {
    position: relative;
    z-index: 2;
    font-size: 0.92rem;
}

.bucket-water {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
}

.bucket-water.clean {
    background: linear-gradient(180deg, rgba(7, 144, 157, 0.22), rgba(7, 144, 157, 0.7));
}

.bucket-water.dirty {
    background: linear-gradient(180deg, rgba(214, 29, 39, 0.24), rgba(1, 38, 83, 0.62));
}

.cleaner-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cleaner-card:hover,
.cleaner-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(1, 38, 83, 0.14);
}

.certificate-shell {
    padding: 24px;
}

.certificate-frame {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.26s ease;
}

.certificate-frame:hover,
.certificate-frame:focus-visible {
    transform: scale(1.015);
}

.certificate-image {
    width: 100%;
    border-radius: 24px;
    height: clamp(280px, 42vw, 520px);
    object-fit: cover;
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(1, 38, 83, 0.22);
}

.carousel-indicators .active {
    background-color: var(--brand-navy);
}

.zoom-hint {
    margin-top: 14px;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.inner-hero,
.content-section,
.legal-section {
    padding-top: 154px;
}

.content-section {
    padding-top: 38px;
}

.info-tile,
.service-card,
.contact-card {
    height: 100%;
    padding: 28px;
}

.info-tile span {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
    color: var(--brand-white);
    font-weight: 800;
}

.info-tile h2,
.service-card h2 {
    margin: 22px 0 12px;
    font-size: 1.7rem;
}

.contact-card span {
    display: block;
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
    font-size: 1.24rem;
    line-height: 1.2;
}

.cta-ribbon {
    margin-top: 36px;
    padding: 24px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cta-ribbon strong {
    font-size: 1.15rem;
}

.faq-accordion .accordion-item {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
    padding: 1.35rem 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
    background: rgba(255, 255, 255, 0.92);
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-white);
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
}

.faq-accordion .accordion-body {
    padding: 1.25rem 1.5rem 1.4rem;
}

.legal-copy {
    padding: 34px;
}

.legal-copy h2 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 1.22rem;
    font-weight: 800;
}

.legal-note {
    margin-top: 10px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(248, 172, 7, 0.10);
    border: 1px solid rgba(248, 172, 7, 0.22);
}

.site-footer {
    position: relative;
    margin-top: 44px;
    padding: 48px 0 28px;
    color: var(--brand-white);
    background:
        linear-gradient(145deg, rgba(1, 38, 83, 0.96), rgba(5, 83, 177, 0.96)),
        linear-gradient(180deg, var(--brand-navy), var(--brand-blue));
}

.footer-copy {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.footer-title {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.social-links,
.footer-links,
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.footer-links,
.footer-contact {
    flex-direction: column;
    gap: 12px;
}

.social-links a,
.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.88);
    word-break: break-word;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.72);
}

.footer-link-button {
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    font-weight: 700;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
    color: var(--brand-white);
}

.offer-modal-shell,
.gallery-modal-shell {
    background:
        radial-gradient(circle at 10% 10%, rgba(248, 172, 7, 0.12), transparent 26%),
        radial-gradient(circle at 92% 12%, rgba(214, 29, 39, 0.10), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 251, 0.98));
}

.cookie-settings-shell .btn-outline-light {
    color: var(--brand-navy);
    border-color: rgba(1, 38, 83, 0.14);
    background: rgba(255, 255, 255, 0.74);
}

.cookie-settings-shell .btn-outline-light:hover,
.cookie-settings-shell .btn-outline-light:focus-visible {
    color: var(--brand-white);
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
    border-color: transparent;
}

.gallery-modal-shell {
    color: var(--brand-white);
    background:
        radial-gradient(circle at 10% 10%, rgba(248, 172, 7, 0.18), transparent 24%),
        radial-gradient(circle at 92% 12%, rgba(214, 29, 39, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(1, 38, 83, 0.98), rgba(5, 83, 177, 0.98));
}

.form-control,
.form-select {
    min-height: 54px;
    border-radius: 18px;
    border-color: rgba(1, 38, 83, 0.14);
    background: rgba(255, 255, 255, 0.82);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(5, 83, 177, 0.38);
    box-shadow: 0 0 0 0.18rem rgba(5, 83, 177, 0.14);
}

.form-label,
.form-note {
    font-weight: 700;
}

.form-error {
    min-height: 1.3rem;
    margin-top: 0.45rem;
    color: #7c1520;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-check span {
    color: var(--ink-soft);
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.submit-loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: rgba(255, 255, 255, 1);
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-left: 12px;
}

.ajax-form button[disabled] {
    cursor: wait;
}

.alert-success {
    border: 0;
    background: rgba(88, 153, 54, 0.12);
    color: #255013;
}

.alert-danger {
    border: 0;
    background: rgba(214, 29, 39, 0.10);
    color: #7c1520;
}

.cookie-consent {
    position: fixed;
    inset: auto 0 18px;
    z-index: 1080;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.cookie-consent__card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    padding: 1.4rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 10%, rgba(248, 172, 7, 0.14), transparent 24%),
        radial-gradient(circle at 92% 12%, rgba(214, 29, 39, 0.1), transparent 22%),
        rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(1, 38, 83, 0.08);
    box-shadow: 0 24px 58px rgba(1, 38, 83, 0.2);
}

.cookie-consent__chip {
    margin-bottom: 1rem;
}

.cookie-consent__copy {
    max-width: 48rem;
}

.cookie-consent__copy h2 {
    margin: 0 0 0.6rem;
    font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    letter-spacing: -0.03em;
}

.cookie-consent__copy p,
.cookie-consent__copy a,
.cookie-settings-note,
.consent-option__copy p {
    color: var(--ink-soft);
}

.cookie-consent__copy p {
    margin: 0;
    max-width: 60ch;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.consent-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 1.1rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(1, 38, 83, 0.08);
}

.consent-option--locked {
    background: rgba(1, 38, 83, 0.06);
}

.consent-option__copy {
    max-width: 36rem;
}

.consent-option__copy strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.consent-option__copy p {
    margin-bottom: 0;
}

.cookie-settings-note {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(1, 38, 83, 0.05);
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1060;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1rem 0.8rem 0.8rem;
    color: var(--brand-navy);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 38, 83, 0.08);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(1, 38, 83, 0.22);
    transition: transform 0.24s ease, box-shadow 0.24s ease, bottom 0.24s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(1, 38, 83, 0.26);
}

.floating-whatsapp__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.08));
    border-radius: 50%;
}

.floating-whatsapp__icon svg {
    width: 28px;
    height: 28px;
}

.floating-whatsapp__copy {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
}

.floating-whatsapp__copy small {
    color: var(--ink-soft);
}

body.has-cookie-banner .floating-whatsapp {
    bottom: calc(24px + var(--cookie-banner-offset, 0px));
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

body.modal-open .floating-whatsapp {
    opacity: 0;
    pointer-events: none;
}

body.has-drawer-open .floating-whatsapp {
    opacity: 0;
    pointer-events: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991.98px) {
    .site-navbar {
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(14px);
        box-shadow: 0 12px 30px rgba(1, 38, 83, 0.08);
    }

    .brand-copy small {
        display: none;
    }

    .hero-title,
    .section-title.large {
        max-width: none;
    }

    .system-stage {
        min-height: 260px;
    }

    .inner-hero,
    .legal-section {
        padding-top: 138px;
    }

    .cookie-consent__card {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .section-shell {
        padding: 96px 0;
    }

    .page-home .section-shell:first-of-type,
    .inner-hero,
    .legal-section {
        padding-top: 132px;
    }

    .cloth-grid {
        grid-template-columns: 1fr;
    }

    .bucket-visual,
    .cta-ribbon,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .media-play {
        width: 78px;
        height: 78px;
    }

    .media-poster {
        height: 240px;
    }

    .certificate-image {
        height: 280px;
    }

    .legal-copy,
    .system-panel,
    .certificate-shell {
        padding: 22px;
    }

    .consent-option {
        flex-direction: column;
    }

    .floating-whatsapp {
        right: 18px;
        left: auto;
        bottom: 18px;
        padding-right: 0.85rem;
    }

    .floating-whatsapp__copy {
        display: none;
    }

    body.has-cookie-banner .floating-whatsapp {
        bottom: calc(18px + var(--cookie-banner-offset, 0px));
    }
}

@media (max-width: 575.98px) {
    .media-card,
    .info-tile,
    .service-card,
    .contact-card,
    .legal-copy,
    .cta-ribbon {
        padding: 20px;
    }

    .hero-actions .btn,
    .cta-ribbon .btn,
    .hero-actions a,
    .hero-actions button {
        width: 100%;
    }

    .social-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .system-core {
        padding: 28px 20px;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .nav-call {
        display: none;
    }

    .nav-toggle {
        width: 48px;
        height: 48px;
    }

    .cookie-consent {
        inset: auto 0 12px;
    }

    .cookie-consent__card {
        padding: 1.1rem;
        border-radius: 24px;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

    .cookie-consent__actions .btn {
        width: 100%;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 0.72rem;
    }

    body.has-cookie-banner .floating-whatsapp {
        bottom: calc(14px + var(--cookie-banner-offset, 0px));
    }
}

@media (max-width: 768px) {
    .bucket-visual {
        flex-direction: row;
        flex-wrap: nowrap;
    }
}
