/* --- Background Fallback Images --- */
#bg-fallback-gallery {
    position: fixed;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
    transition: opacity 1s ease;
}
#bg-fallback-gallery.is-fading-out {
    opacity: 0;
}
#bg-fallback-gallery picture {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.bg-fallback-img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: blur(26px);
    transform: scale(1.05);
    transition: opacity 1.2s ease;
    will-change: opacity, filter, transform;
}
.bg-fallback-img.visible {
    opacity: 0.35;
}
.bg-fallback-img.loaded {
    animation: bgFallbackSharpen 1.8s ease forwards;
}
@keyframes bgFallbackSharpen {
    from {
        filter: blur(26px);
        transform: scale(1.05);
    }
    to {
        filter: blur(0);
        transform: scale(1);
    }
}
/* --- Contact Icon Hover Effects --- */
.contact-channels a {
    transition:
        transform 0.22s cubic-bezier(0.4, 1.6, 0.4, 1),
        box-shadow 0.22s cubic-bezier(0.4, 1.6, 0.4, 1),
        filter 0.22s cubic-bezier(0.4, 1.6, 0.4, 1);
    will-change: transform, box-shadow, filter;
}

.contact-channels a:hover,
.contact-channels a:focus-visible {
    transform: scale(1.18) rotate(-3deg);
    box-shadow:
        0 6px 24px 0 rgba(0, 0, 0, 0.22),
        0 1.5px 8px 0 rgba(0, 0, 0, 0.12);
    filter: brightness(1.15) saturate(1.2);
    z-index: 2;
}
/* Navbar logo bounce-in animation */
@keyframes navLogoBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    60% {
        opacity: 1;
        transform: scale(1.15);
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.nav-logo.bounce-in {
    animation: navLogoBounceIn 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* =========================
   DroneWorks_v2 Main Styles
   Separation of Concerns (SoC)
   ========================= */

/* 1. Fonts & Variables */
@font-face {
    font-family: 'Acme Gothic Extrawide';
    src:
        url('../fonts/AcmeGothic-ExtrawideRegular.woff2') format('woff2'),
        url('../fonts/AcmeGothic-ExtrawideRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #4a8fdb;
    --primary-light: #e6f0ff;
    --dark-color: #333;
    --white-color: #fff;
    --background-light: #f9f9f9;
}

/* 2. Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Acme Gothic Extrawide', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}
[hidden] {
    display: none !important;
}
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s;
}
a:hover {
    color: var(--primary-color);
}
ul {
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}
body.nav-open,
body.modal-open {
    overflow: hidden;
}
.skip-link {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    background: #fff;
    color: var(--dark-color);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
    z-index: 2000;
}
.skip-link:focus {
    transform: translateY(0);
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    pointer-events: none;
}
.scroll-progress__bar {
    height: 100%;
    width: 100%;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: linear-gradient(90deg, #4a8fdb, #8b5cf6, #22c55e);
    will-change: transform;
}

/* 3. Layout & Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: visible;
}

section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
}
section::before,
section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 2;
}
section::before {
    top: 0;
}
section::after {
    bottom: 0;
}

/* 4. Background Video & Overlay */
.bg-video {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.bg-video.is-visible {
    opacity: 1;
}
.example-preview {
    width: 100%;
    display: block;
    background: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
/* 5. Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0);
    transition: all 0.3s;
    z-index: 1000;
}
.navbar.sticky {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s;
    display: block;
}
.navbar.sticky .nav-logo {
    height: 35px;
}
.logo {
    padding-left: 20px;
}
.logo a {
    font-size: 20.4px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s;
    border-radius: 10px;
    margin-right: 15px;
    padding: 0 5px;
}
.nav-menu li {
    margin: 10px;
}
.nav-menu a {
    color: #333;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}
.nav-menu:hover {
    background: rgba(255, 255, 255, 0.85);
}
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s;
}
.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: none;
}
.nav-menu a:hover::after {
    width: 100%;
}
.nav-menu a.is-active {
    color: var(--primary-color);
    text-shadow: none;
}
.nav-menu a.is-active::after {
    width: 100%;
}

/* Card hover polish (desktop only) */
@media (hover: hover) and (pointer: fine) {
    .tile {
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.35);
        background:
            linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box,
            conic-gradient(from var(--dw-angle, 0deg), #4a8fdb, #8b5cf6, #22c55e, #4a8fdb)
                border-box;
        border-radius: 18px;
        transform: perspective(900px) rotateX(var(--dw-tilt-x, 0deg))
            rotateY(var(--dw-tilt-y, 0deg)) translateZ(0);
        transition:
            transform 180ms ease,
            box-shadow 180ms ease,
            border-color 180ms ease;
        will-change: transform;
    }

    .tile::after {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        pointer-events: none;
        background: radial-gradient(
            240px circle at var(--dw-mx, 50%) var(--dw-my, 50%),
            rgba(74, 143, 219, 0.32),
            rgba(139, 92, 246, 0.16),
            transparent 60%
        );
        opacity: 0;
        transition: opacity 180ms ease;
        mix-blend-mode: screen;
    }

    .tile:hover,
    .tile:focus-within {
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.55);
    }

    .tile:hover::after,
    .tile:focus-within::after {
        opacity: 1;
    }

    .tile.is-tilting:hover {
        transform: perspective(900px) rotateX(var(--dw-tilt-x, 0deg))
            rotateY(var(--dw-tilt-y, 0deg)) translateY(-2px) translateZ(0);
    }

    .tile.is-tilting:hover {
        animation: dwBorderSpin 2.2s linear infinite;
    }

    @keyframes dwBorderSpin {
        from {
            --dw-angle: 0deg;
        }
        to {
            --dw-angle: 360deg;
        }
    }
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1006;
    margin-right: 15px;
}
.menu-toggle:focus-visible {
    outline: 3px solid rgba(74, 143, 219, 0.6);
    outline-offset: 6px;
    border-radius: 6px;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* 6. Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    width: 100%;
    overflow: hidden;
}
.hero-panel {
    max-width: 860px;
    margin: 0 auto;
    padding: 34px 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(12, 26, 45, 0.22);
    backdrop-filter: blur(18px);
}
.logo-img {
    max-width: 350px;
    height: auto;
}
.hero-kicker {
    margin: 10px 0 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #15395c;
}
.hero .hero-tagline {
    position: relative;
    z-index: 1;
    max-width: 15ch;
    margin: 0 auto 18px;
    color: #0d1e30;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.45);
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 1.05;
    font-weight: 700;
    text-align: center;
}
.hero .hero-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #17324e;
    font-size: 1.04rem;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.55);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 28px 0 22px;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease;
}
.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}
.cta-button--primary {
    background: #15395c;
    color: #fff;
    box-shadow: 0 16px 34px rgba(21, 57, 92, 0.28);
}
.cta-button--primary:hover,
.cta-button--primary:focus-visible {
    color: #fff;
    background: #102b44;
}
.cta-button--secondary {
    background: rgba(255, 255, 255, 0.24);
    color: #15395c;
    border-color: rgba(21, 57, 92, 0.24);
}
.cta-button--secondary:hover,
.cta-button--secondary:focus-visible {
    color: #102b44;
    background: rgba(255, 255, 255, 0.44);
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
}
.trust-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #17324e;
    font-size: 0.87rem;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: none;
}
.trust-pill::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #15395c;
    transform: translateY(-50%);
}

/* 7. Section Cards (Shared) */
.section-card {
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    box-shadow:
        0 18px 44px rgba(12, 26, 45, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 44px;
    margin-bottom: 50px;
    transition:
        box-shadow 0.3s,
        transform 0.3s;
    overflow: hidden;
    position: relative;
    z-index: 5;
    backdrop-filter: blur(14px);
}
.section-card h2 {
    position: relative;
    display: block;
    margin-bottom: 18px;
    color: #0d1e30;
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.55);
}
.section-card h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #15395c, rgba(21, 57, 92, 0.2));
    transform: scaleX(0.72);
    transform-origin: left;
    transition: transform 0.3s;
}
.section-card:hover h2:after {
    transform: scaleX(0.8);
}
.section-lead {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #1f344b;
}
.section-cta {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

/* 8. Examples Section */
.examples {
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}
.example-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}
.example-card-footer {
    margin-top: auto;
    padding: 14px 20px;
    background: linear-gradient(180deg, rgba(240, 248, 255, 0.95), rgba(227, 239, 252, 0.98));
    border-top: 1px solid rgba(21, 57, 92, 0.12);
}
.example-card-summary {
    margin: 0;
    padding: 14px 20px 0;
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #2b3b4a;
}
.example-card-price {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #15395c;
}
.cta-link {
    display: block;
    margin-top: 14px;
    padding: 10px 18px;
    background-color: var(--primary-color, #15395c);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
    text-align: center;
}
.example.tile:hover .cta-link,
.example.tile:focus-visible .cta-link {
    background-color: #102b44;
    transform: translateY(-1px);
}
.section-note {
    margin-top: 40px;
    padding: 18px 20px;
    background: rgba(245, 245, 245, 0.92);
    border-left: 4px solid #15395c;
    border-radius: 14px;
}
.section-note p {
    margin: 0;
    font-size: 0.85rem;
}
.section-note p + p {
    margin-top: 8px;
}

/* 10. About Section */
.about {
    width: 100%;
    overflow-x: hidden;
    text-align: center;
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}
.about-card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.about-image {
    flex: 0 0 auto;
    text-align: left;
    float: left;
    margin-right: 24px;
    margin-bottom: 8px;
}
.about-image img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    display: block;
}
.about-text {
    flex: 1;
    min-width: 250px;
    margin: 0;
    padding: 22px 24px;
    background: rgba(245, 245, 245, 0.92);
    border-left: 4px solid #15395c;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.about-text strong {
    font-style: normal;
}

/* helper for emphasized inline text inside about */
.bold-and-red {
    color: #d9534f;
    font-weight: 700;
}

/* Responsive tweaks for about section */
@media screen and (max-width: 900px) {
    .about-card {
        justify-content: center;
    }
    .about-image {
        flex: 0 0 100px;
        margin-right: 16px;
    }
    .about-text {
        padding: 16px;
    }
}

/* Scoped styles for the about intro excerpt (only affects markup inside .about-text) */
.about-text .about-intro-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}
.about-text .about-lead p {
    margin: 0;
    font-size: 0.98rem;
    color: #2b3b4a;
    line-height: 1.6;
    max-width: 72ch;
}
.about-text .about-subheading {
    margin-top: 12px;
    margin-bottom: 0px;
    color: #15395c;
    font-weight: 700;
    font-size: 1.02rem;
}
.about-text p {
    margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
    .about-content {
        gap: 20px;
    }
    .about-card {
        flex-direction: column;
        align-items: center;
    }
    .about-image {
        margin-right: 0;
    }
    .about-text {
        width: 100%;
        border-left: none;
        border-top: 4px solid var(--primary-color);
    }
}

/* 11. Contact Section */
.contact {
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    background: rgba(245, 245, 245, 0.92);
    padding: 30px;
    border-radius: 18px;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.contact-primary {
    grid-column: 1 / -1;
    text-align: left;
    padding-bottom: 4px;
}
.contact-eyebrow {
    margin: 0 0 8px;
    color: #15395c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.contact-primary h3 {
    margin-bottom: 10px;
    color: #0d1e30;
    font-size: 1.65rem;
    text-shadow: none;
}
.info-item {
    text-align: left;
    padding: 14px 16px;
    border-left: 3px solid #15395c;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    transition:
        transform 0.2s,
        border-left-width 0.2s,
        background-color 0.2s,
        box-shadow 0.2s;
}
.info-item h3 {
    color: #15395c;
    font-size: 1.02rem;
    margin-bottom: 10px;
}
.info-item p {
    margin: 0;
    font-size: 0.85rem;
}
.info-item--link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.info-item--link:hover,
.info-item--link:focus-visible {
    color: inherit;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 10px 22px rgba(12, 26, 45, 0.12);
    transform: translateY(-1px);
    outline: none;
}
.info-item--link:hover h3,
.info-item--link:focus-visible h3,
.info-item--link:hover p,
.info-item--link:focus-visible p {
    color: #0d1e30;
}
.contact-note {
    text-align: left;
    width: 100%;
    max-width: 680px;
    margin: 0;
    text-shadow: none;
    font-size: 1rem;
    color: #2b3b4a;
}
.contact-channels-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-channels-label {
    margin: 0 0 14px;
    color: #17324e;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.contact-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    align-items: center;
    margin: 0;
    max-width: 360px;
}
.contact-channel {
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
    font-size: 1.6rem;
}
.contact-channel:hover,
.contact-channel:focus-visible {
    color: #fff;
}
.contact-channel:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}
.contact-channel--whatsapp {
    background: #25d366;
}
.contact-channel--messenger {
    background: #0084ff;
}
.contact-channel--instagram {
    background: #e1306c;
}
.contact-channel--sms {
    background: #4a8fdb;
}
.contact-channel--facebook {
    background: #1877f3;
}
.contact-channel--youtube {
    background: #ff0000;
}

/* 12. Footer */
footer {
    color: #fff;
    padding: 30px 0;
    width: 100%;
    overflow-x: hidden;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.copyright {
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}
.footer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.footer-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font: inherit;
    cursor: pointer;
}
.footer-action:hover,
.footer-action:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}

.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 950;
}
.cookie-consent__card {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(17, 23, 33, 0.94);
    color: #fff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
}
.cookie-consent__body {
    flex: 1 1 420px;
}
.cookie-consent__body h2 {
    margin-bottom: 8px;
    color: #fff;
    text-shadow: none;
}
.cookie-consent__body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
}
.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cookie-consent__button {
    min-width: 140px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.cookie-consent__button--primary {
    background: #4a8fdb;
    color: #fff;
}
.cookie-consent__button--secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}
.cookie-consent__button:focus-visible,
.cookie-consent__button:hover {
    outline: none;
    filter: brightness(1.05);
}

/* 13. Utilities & Transitions */
.about-text,
.info-item,
.section-card h2,
.hero .hero-tagline,
.section-note {
    transition:
        background-color 0.3s,
        transform 0.2s;
}

/* ScrollReveal: hint for smoother transform/opacity animations */
[data-sr-id] {
    will-change: transform, opacity;
}

/* 14. Media Queries (grouped by breakpoint) */
@media (max-width: 900px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1005;
        padding: 5px 15px;
        border-radius: 0;

        margin-right: 0 !important;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu li {
        margin: 1.5rem 0;
    }
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 120px;
    }
    .hero-panel {
        padding: 28px 22px;
        border-radius: 24px;
    }
    .hero .hero-tagline {
        font-size: clamp(1.85rem, 7vw, 3rem);
    }
    .hero .hero-intro {
        font-size: 0.95rem;
        max-width: 620px;
    }
    .logo-img {
        max-width: 250px;
    }
    .hero-actions {
        margin: 24px 0 18px;
    }
    .cta-button {
        width: 100%;
    }
    .hero-trust {
        justify-content: flex-start;
    }
    .trust-pill {
        width: 100%;
        justify-content: flex-start;
    }
    .about-content,
    .contact-container {
        flex-direction: column;
    }
    .about-card {
        flex-direction: column;
        gap: 20px;
    }
    .about-text {
        width: 100%;
    }
    .about-image {
        float: none;
        margin: 0 0 0 0;
        text-align: center;
    }
    .about-image img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
    }
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    .section-card {
        padding: 30px 22px;
    }
    .section-card h2 {
        font-size: 1.5rem;
    }
    .example-card-summary {
        padding: 12px 15px 0;
    }
    .example-card-footer {
        padding: 12px 15px;
    }
    .example-card-price {
        font-size: 1rem;
    }
    .section-note p {
        font-size: 0.95rem;
    }
    .contact-primary h3 {
        font-size: 1.4rem;
    }
    .footer-content {
        gap: 12px;
    }
    .footer-actions {
        margin-left: 0;
        width: 100%;
    }
    .cookie-consent {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }
    .cookie-consent__card {
        padding: 18px;
    }
    .cookie-consent__actions {
        width: 100%;
    }
    .cookie-consent__button {
        flex: 1 1 180px;
    }
}
@media (max-width: 699px) {
    .contact-info {
        padding: 20px 15px;
        max-width: 100%;
        width: calc(100% - 30px);
        display: grid;
        grid-template-columns: 1fr;
    }
    .info-item {
        grid-column: 1;
        grid-row: auto;
        margin-bottom: 20px;
    }
    .info-item:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    .logo-img {
        max-width: 200px;
    }
    .hero-panel {
        padding: 24px 16px;
    }
    .hero .hero-tagline {
        font-size: 1.9rem;
    }
    .hero .hero-intro {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .example-container {
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }
    .example-card-summary {
        font-size: 0.88rem;
    }
    .example-card-footer {
        padding: 10px 15px;
    }
    .example-card-price {
        font-size: 0.95rem;
    }
    .section-card {
        padding: 24px 16px;
    }
    .section-card h2 {
        font-size: 1.2rem;
    }
    .section-note p {
        font-size: 0.9rem;
    }
    .contact-channel {
        width: 44px;
        height: 44px;
        font-size: 1.45rem;
    }
}

/* =====================================
   Logo Strip (Modal Footer Showcase)
   ===================================== */
.logo-strip {
    --logo-height: 64px; /* Base common height */
    display: flex;
    gap: 1rem;
    justify-content: space-between; /* Spread across full width */
    align-items: center;
    flex-wrap: nowrap; /* Keep in one row on wide screens */
    padding: 0.75rem 0.5rem;
    width: 100%;
}
/* Each logo link takes equal horizontal space and centers its image */
.logo-strip > a {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.logo-strip img {
    height: var(--logo-height);
    width: auto; /* Maintain aspect ratio */
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
    cursor: pointer; /* Indicate clickability */
}
.logo-strip img:hover,
.logo-strip img:focus-visible {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
@media (max-width: 768px) {
    .logo-strip {
        --logo-height: 56px;
        gap: 0.75rem;
    }
}
@media (max-width: 480px) {
    .logo-strip {
        --logo-height: 48px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .logo-strip > a {
        flex: 0 0 auto;
    }
}
