@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
    --top-hero-offset: 96px;
    --brand: #fd5a5a;
    --brand-deep: #c93d4a;
    --brand-muted: #d94f57;
    --brand-soft: rgba(176,23,73,0.12);
    --brand-ring: rgba(176,23,73,0.22);
    --content-gap: clamp(44px, 7vw, 84px);
}

html {
    scroll-padding-top: var(--top-hero-offset);
    text-align: justify;
    scroll-behavior: smooth;
}

body {
    background-color: black;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.5rem;
}

a {
    text-decoration: none;
}

a:focus,
a:active,
button:focus,
button:active,
.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible,
.btn-primary:active:focus,
.btn-primary:first-child:active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:focus-visible,
.btn-secondary:active:focus,
.btn-secondary:first-child:active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--brand-ring) !important;
}

.btn-hero:active,
.btn-custom:active,
.tile-arrow:active,
.modal-close:active {
    transform: none !important;
}

.top-hero {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    transition: transform 260ms ease, opacity 260ms ease;
    min-height: 72px;
    will-change: transform, opacity;
    background: rgba(10,10,10,0.8);
}

    .top-hero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--brand-muted) 18%, var(--brand) 50%, var(--brand-muted) 82%, transparent);
        opacity: 0.64;
        pointer-events: none;
    }

    .top-hero .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .top-hero .hero-title {
        font-size: 17px;
        font-weight: 600;
        color: white;
        display: flex;
        align-items: center;
    }

    .top-hero .navbar-brand {
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
    }

        .top-hero .navbar-brand:focus,
        .top-hero .navbar-brand:focus-visible,
        .top-hero .navbar-brand:active {
            outline: none !important;
            box-shadow: none !important;
        }

    .top-hero .hero-logo {
        width: clamp(150px, 15vw, 220px);
        height: auto;
        max-height: 50px;
        border-radius: 0;
        object-fit: contain;
        transform: none;
    }

        .top-hero .hero-logo:hover {
            transform: none;
        }

    .top-hero .hero-actions {
        display: flex;
        gap: 8px;
        transition: opacity 220ms ease, transform 220ms ease;
    }

    .top-hero.hide-actions {
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
    }

        .top-hero.hide-actions .hero-actions {
            opacity: 0;
            transform: translateY(-8px);
            pointer-events: none;
        }

    .top-hero .hero-actions {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.btn-hero {
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.28) !important;
    background: rgba(255,255,255,0.08) !important;
    color: white !important;
    font-size: 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.16);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

    .btn-hero:focus {
        outline: none !important;
    }

    .btn-hero.btn-primary {
        color: white !important;
        background: rgba(255,255,255,0.08) !important;
        padding: 8px 16px;
    }

    .btn-hero.btn-secondary {
        color: white !important;
        background: rgba(255,255,255,0.08) !important;
        padding: 6px 14px;
        border: 1px solid rgba(255,255,255,0.28) !important;
    }

    .btn-hero:hover {
        background: rgba(255,255,255,0.14) !important;
        border-color: var(--brand-muted) !important;
        color: var(--brand) !important;
        box-shadow: 0 0 0 1px var(--brand-ring), 0 8px 22px rgba(0,0,0,0.16);
        opacity: 1;
    }

    .btn-hero.is-active {
        color: white !important;
        border-color: rgba(176,23,73,0.72) !important;
        background: rgba(176,23,73,0.18) !important;
        box-shadow: inset 0 -2px 0 var(--brand-muted), 0 8px 22px rgba(0,0,0,0.16);
    }

.main-container {
    padding-top: var(--top-hero-offset);
}

.text-section {
    max-width: 80%;
    justify-self: center;
    position: relative;
}

.main-container .first {
    margin-bottom: 12vh;
    margin-top: 12vh;
}

.main-container #company {
    margin-bottom: clamp(88px, 12vw, 150px);
}

.section {
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    scroll-margin-top: calc(var(--top-hero-offset) + 8px);
    padding-left: clamp(18px, 4vw, 56px);
    padding-right: clamp(18px, 4vw, 56px);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width:768px) {
    .top-hero {
        padding: 10px 12px;
        min-height: 94px;
    }

        .top-hero .container {
            flex-direction: column;
            gap: 10px;
        }

        .top-hero .hero-logo {
            width: 168px;
            max-height: 40px;
        }

        .top-hero .hero-actions {
            width: 100%;
            justify-content: center;
            gap: 8px;
        }

    .btn-hero,
    .btn-hero.btn-primary,
    .btn-hero.btn-secondary {
        justify-content: center;
        min-height: 36px;
        padding: 8px 12px;
        font-size: 12px;
        line-height: 1.1;
        white-space: normal;
        text-align: center;
        flex: 1 1 0;
        max-width: 168px;
    }

    .main-container #company {
        margin-bottom: 5vh;
        margin-top: 5vh;
    }

    .section {
        padding-left: 0;
        padding-right: 0;
    }
}

    .btn-primary, .btn-secondary {
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.22);
        cursor: pointer;
        background: rgba(255,255,255,0.08);
        color: white;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.16);
        font-weight: 700;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    }

    .btn-primary {
        background: rgba(255,255,255,0.08);
        color: white;
    }

    .btn-secondary {
        background: rgba(255,255,255,0.08);
        color: white;
        border: 1px solid rgba(255,255,255,0.22);
    }

        .btn-primary:hover,
        .btn-secondary:hover {
            background: rgba(255,255,255,0.14);
            border-color: var(--brand-muted);
            color: var(--brand);
            box-shadow: 0 0 0 1px var(--brand-ring), 0 8px 22px rgba(0,0,0,0.16);
            opacity: 1;
        }

    .tiles-slider {
        position: relative;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        align-items: center;
        gap: clamp(10px, 2vw, 18px);
        margin-block: 0;
    }

    .tiles-viewport {
        overflow: hidden;
        width: 100%;
        min-width: 0;
    }

    .tiles-inner {
        display: flex;
        transition: transform 0.5s ease;
        will-change: transform;
    }

    .tile-slide {
        min-width: 100%;
        display: flex;
        height: 560px;
        border-radius: 8px;
        overflow: hidden;
    }

    .tile-image {
        width: 50%;
        height: 100%;
        display: flex;
    }

        .tile-image img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            backface-visibility: hidden;
        }

    .tile-text {
        width: 50%;
        padding: clamp(24px, 4vw, 34px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .tile-arrow {
        background: rgba(255,255,255,0.1);
        color: white;
        border: 1px solid rgba(255,255,255,0.28);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.18);
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

        .tile-arrow:hover {
            background: rgba(255,255,255,0.16);
            border-color: var(--brand-muted);
            color: var(--brand);
            box-shadow: 0 0 0 1px var(--brand-ring), 0 8px 22px rgba(0,0,0,0.18);
        }

    .tile-prev {
        position: static;
        z-index: 10;
    }

    .tile-next {
        position: static;
        z-index: 10;
    }

    .hero-section {
        position: relative;
        width: 100%;
        min-height: 88vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.72) );
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-section {
        position: relative;
        width: 100%;
        min-height: 88vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-logo {
        height: 64px;
        border-radius: 50%;
        object-fit: cover;
        display: inline-block;
        overflow: hidden;
        transform: scale(1.06);
    }

        .hero-logo:hover {
            transform: scale(1.12);
        }

    .hero-overlay {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.46), rgba(0,0,0,0.68));
    }

    .hero-content.container {
        position: relative;
        z-index: 5;
        text-align: center;
        max-width: 900px;
        padding: 32px;
        color: white;
    }

    .hero-content h1 {
        font-size: 44px;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 18px;
        margin-bottom: 18px;
        color: rgba(255,255,255,0.9);
        max-width: 640px;
    }

    .hero-cta a {
        margin: 0 8px;
    }

    .top-hero.hide-actions .hero-title img.hero-logo {
        box-shadow: none;
        border: none;
    }

    .top-hero.hide-actions {
        background: transparent;
        border-bottom: none;
    }

        .top-hero.hide-actions::after {
            opacity: 0;
        }

    .btn-custom {
        background: rgba(255,255,255,0.08);
        color: white;
        padding: 12px 22px;
        border-radius: 999px;
        font-weight: 700;
        border: 1px solid rgba(255,255,255,0.22);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.16);
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

        .btn-custom:hover {
            background: rgba(255,255,255,0.14);
            border-color: var(--brand-muted);
            color: var(--brand);
            box-shadow: 0 0 0 1px var(--brand-ring), 0 8px 22px rgba(0,0,0,0.16);
        }

    .hero-cta .btn-custom,
    .hero-cta .btn-secondary {
        background: rgba(255,255,255,0.08);
        color: white;
        border: 1px solid rgba(255,255,255,0.58);
        padding: 12px 22px;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.16);
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

        .hero-cta .btn-custom:hover,
        .hero-cta .btn-secondary:hover {
            background: rgba(255,255,255,0.16);
            border-color: var(--brand-muted);
            color: var(--brand);
            box-shadow: 0 0 0 1px var(--brand-ring), 0 10px 28px rgba(0,0,0,0.18);
        }

    @media (max-width:768px) {
        .hero-logo-on-hero {
            top: 8px;
        }

        .hero-content h1 {
            font-size: 24px;
        }

        .hero-content.container {
            padding: 24px;
        }

        .home-intro-wrap {
            padding: 28px 0 36px;
        }

        .home-intro {
            padding: 22px 18px;
        }

            .home-intro h2 {
                font-size: 22px;
            }
    }

    .hero-cta a {
        margin: 0 8px;
    }

    .hero-cta {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-logo-on-hero {
        position: relative;
        margin-bottom: 8px;
        opacity: 0.9;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .home-intro-wrap {
        padding: clamp(38px, 6vw, 56px) 0 clamp(44px, 7vw, 64px);
    }

    .home-intro {
        padding: clamp(26px, 4vw, 38px);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

        .home-intro::before,
        .home-intro::after {
            content: "";
            position: absolute;
            width: 128px;
            height: 128px;
            border-radius: 50%;
            opacity: 0.22;
            pointer-events: none;
            background-image: radial-gradient(var(--brand-muted) 2px, transparent 2px);
            background-size: 18px 18px;
            mask-image: radial-gradient(circle, #000 62%, transparent 64%);
            -webkit-mask-image: radial-gradient(circle, #000 62%, transparent 64%);
        }

        .home-intro::before {
            left: 8%;
            top: 12px;
        }

        .home-intro::after {
            right: 8%;
            bottom: 12px;
        }

    .home-intro-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
        color: var(--brand-muted);
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: 12px;
    }

    .home-intro h2 {
        width: 80%;
        margin: 0 auto 18px;
        font-size: clamp(23px, 3vw, 28px);
        line-height: 1.25;
    }

    em {
        color: var(--brand);
        font-style: normal;
    }

    .home-intro p {
        width: 80%;
        margin: 0 auto 16px;
        color: #d7d7d7;
        line-height: 1.7;
        text-align: center;
    }

        .home-intro p:last-child {
            margin-bottom: 0;
        }

    .footer-custom {
        color: #f1f1f1;
        padding: 34px 0 24px;
        font-size: 15px;
        text-align: left;
    }

    .footer-wrapper {
        display: grid;
        grid-template-columns: minmax(260px, 380px) 1fr;
        gap: clamp(30px, 4vw, 54px);
        align-items: start;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        width: min(100%, 300px);
        margin-bottom: 18px;
    }

    .footer-socials {
        display: flex;
        align-items: center;
        gap: 14px;
        justify-content: center;
        margin-bottom: 12px;
    }

        .footer-socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            transition: 0.2s ease;
        }

            .footer-socials a:hover {
                opacity: 0.82;
            }

        .footer-socials img {
            width: 38px;
            height: 38px;
            opacity: 0.96;
            object-fit: contain;
            transition: 0.2s;
        }

            .footer-socials img:hover {
                opacity: 1;
            }

    .footer-copy {
        font-size: 10px;
        color: rgba(255,255,255,0.72);
        text-align: center;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
    }

    .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr 1.25fr;
        gap: clamp(24px, 3.5vw, 46px);
    }

    .footer-col h4,
    .footer-col h5 {
        color: #fff;
        font-size: 23px;
        line-height: 1.18;
        margin-bottom: 18px;
        font-weight: 600;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

        .footer-col ul li {
            color: rgba(255,255,255,0.86);
            cursor: pointer;
            font-size: 17px;
            line-height: 1.42;
            margin-bottom: 4px;
        }

            .footer-col ul li:hover {
                color: #fff;
            }

    .footer-col p {
        color: rgba(255,255,255,0.86);
        line-height: 1.32;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
    }

    .footer-legal {
        display: flex;
        justify-content: flex-end;
        gap: clamp(22px, 3vw, 38px);
        font-size: 15px;
        color: rgba(255,255,255,0.84);
        padding-top: 24px;
    }

        .footer-legal a {
            color: rgba(255,255,255,0.84);
            text-decoration: none;
            transition: color 0.2s ease;
        }

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

    @media (max-width: 900px) {
        .footer-wrapper {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

        .footer-custom {
            padding: 30px 0 26px;
        }

        .footer-columns {
            grid-template-columns: 1fr;
            gap: 22px;
        }

        .footer-legal {
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-col p {
            text-align: center;
        }
    }

    @media (max-width: 768px) {
        .tiles-slider {
            grid-template-columns: 1fr 1fr;
            align-items: stretch;
            gap: 12px;
            margin-block: 0;
        }

        .tiles-viewport {
            grid-column: 1 / -1;
            grid-row: 1;
        }

        .tile-prev {
            grid-column: 1;
            grid-row: 2;
            justify-self: end;
        }

        .tile-next {
            grid-column: 2;
            grid-row: 2;
            justify-self: start;
        }

        .tile-slide {
            flex-direction: column;
            min-height: 0;
            height: auto;
        }

        .tile-image {
            width: 100%;
            height: 240px;
            order: 1;
        }

        .tile-text {
            width: 100%;
            padding: 20px;
            order: 2;
        }
    }

    @media (max-width: 768px) {

        .tile-text h3 {
            font-size: 18px;
        }

        .tile-text p {
            font-size: 14px;
            line-height: 1.4;
        }

        .tile-text h3 {
            align-self: center;
        }
    }

    .tile-text p {
        overflow: visible;
    }

    @media (max-width: 768px) {

        .tile-arrow {
            width: 42px;
            height: 42px;
            font-size: 16px;
        }
    }

    .tiles-inner {
        gap: 0;
    }







    .modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.72);
        backdrop-filter: blur(14px);
        z-index: 2000;
        align-items: center;
        justify-content: center;
        padding: 24px;
        animation: fadeIn 0.25s ease;
    }

    .modal-box {
        background: #000000;
        width: 100%;
        max-width: 980px;
        height: min(760px, calc(100vh - 48px));
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        padding: 22px;
        animation: scaleIn 0.3s ease;
        position: relative;
        box-shadow: 0 24px 80px rgba(0,0,0,0.42);
        overflow: hidden;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.96) translateY(10px);
        }

        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .modal-close {
        position: absolute;
        top: 14px;
        right: 14px;
        font-size: 24px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.28);
        color: #ffffff;
        cursor: pointer;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        line-height: 1;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.18);
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

        .modal-close:hover {
            background: rgba(255,255,255,0.16);
            border-color: var(--brand-muted);
            color: var(--brand);
            box-shadow: 0 0 0 1px var(--brand-ring), 0 8px 22px rgba(0,0,0,0.18);
        }

    .modal-box h3 {
        margin: 2px 48px 18px;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
    }


    .calendly-inline-widget > iframe {
        background: #000000 !important;
        color-scheme: light;
        border: 0 !important;
    }


    .tile-modal-body,
    .calendar-box {
        margin: 0;
        padding: 0;
    }

    .tile-modal-body {
        flex: 1;
        min-height: 0;
        overflow-y: hidden;
        overflow-x: hidden;
        padding: 0;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        background: #000000;
    }





    .calendar-box {
        flex: 1;
        height: 100%;
        overflow: hidden;
        border-radius: 8px;
        background: #000000;
    }

    @media (max-width: 768px) {
        .modal-box {
            height: calc(100vh - 28px);
            padding: 16px;
        }

            .modal-box h3 {
                font-size: 18px;
                margin-right: 46px;
                margin-left: 46px;
            }

        .calendar-box {
            height: 500px;
        }
    }


    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: transparent;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.15);
        border-radius: 10px;
        transition: 0.2s;
    }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(255,255,255,0.3);
        }


    * {
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.2) transparent;
    }

    .calendly-inline-widget,
    .calendly-inline-widget iframe {
        background: #000000 !important;
        background-color: #000000 !important;
        color-scheme: light;
        margin: 0 !important;
        padding: 0 !important;
        height: 100% !important;
        min-height: unset !important;
        display: block;
    }


    @media (max-width: 768px) {

        .tile-arrow {
            z-index: 20;
        }
    }

    @media (max-width: 768px) {

        .hero-cta {
            flex-direction: column;
            align-items: center;
        }

            .hero-cta a {
                width: 100%;
                max-width: 260px;
                text-align: center;
            }
    }

    .section-header {
        justify-self: center;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .newsletter-section {
        max-width: 1040px;
    }

    .newsletter-intro {
        max-width: 760px;
        margin-bottom: 20px;
    }

        .newsletter-intro h3 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .newsletter-intro h4 {
            font-size: 20px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .newsletter-intro p {
            color: rgba(255,255,255,0.72);
            margin-bottom: 0;
        }

    .newsletter-options {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(16px, 3vw, 24px);
        margin: 24px 0 18px;
    }

    .newsletter-card {
        min-height: 100%;
        padding: 24px 24px 22px;
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 8px;
        background: rgba(255,255,255,0.04);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

        .newsletter-card::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--brand-muted), var(--brand), var(--brand-muted), transparent);
            opacity: 0.62;
        }

        .newsletter-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .newsletter-card p {
            color: #bfbfbf;
            line-height: 1.6;
            margin-bottom: 20px;
        }

    .newsletter-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        margin: auto auto 0;
    }

    @media (max-width: 768px) {
        .newsletter-options {
            grid-template-columns: 1fr;
        }

        .newsletter-card {
            padding: 18px;
        }
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-col ul li a {
            color: rgba(255,255,255,0.86);
            text-decoration: none;
            transition: color 0.2s ease;
            font-size: inherit;
        }

            .footer-col ul li a:hover {
                color: var(--brand);
            }

    .circles-section {
        position: relative;
        overflow: hidden;
    }

    .side-circles {
        position: absolute;
        z-index: 0;
        pointer-events: none;
        opacity: 0.42;
        filter: saturate(0.75) brightness(0.72);
    }

    .side-circles-left {
        left: calc((100vw - 100%) / -2 + 8px);
        top: 50%;
        transform: translateY(-50%);
        width: 120px;
    }

    .side-circles-right {
        right: calc((100vw - 100%) / -2 + 8px);
        top: 50%;
        transform: translateY(-50%);
        width: 120px;
    }

    .circles-section > *:not(.side-circles) {
        position: relative;
        z-index: 1;
    }

    @media (max-width: 768px) {
        .side-circles-left, .side-circles-right {
            display: none;
        }
    }
