@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
    --top-hero-offset: 96px;
    --brand: #fd5a5a;
    --brand-muted: #d94f57;
    --brand-ring: rgba(176, 23, 73, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.5rem;
    overflow-x: clip;
}

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: 10px 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: 92px;
    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;
    max-width: 1320px;
    padding-left: clamp(36px, 5vw, 86px);
    padding-right: clamp(24px, 3vw, 48px);
}

.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(92px, 6.2vw, 116px);
    height: auto;
    max-height: 36px;
    border-radius: 0;
    object-fit: contain;
    transform: none;
}

.top-hero .hero-logo:hover {
    transform: none;
}

.top-hero .hero-actions {
    display: flex;
    gap: 8px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    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;
}

.btn-hero {
    padding: 12px 20px;
    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: 16px;
    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: 12px 20px;
}

.btn-hero.btn-secondary {
    color: white !important;
    background: rgba(255, 255, 255, 0.08) !important;
    padding: 12px 20px;
    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);
    overflow-x: clip;
}

.text-section {
    width: calc(100% - clamp(32px, 6vw, 88px));
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.text-section p {
    text-align: left;
}

.text-section .text-center.m-5 {
    max-width: 760px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.main-container .first {
    margin-bottom: 12vh;
    margin-top: 12vh;
}

.main-container #company {
    margin-bottom: clamp(88px, 12vw, 150px);
}

.section {
    scroll-margin-top: calc(var(--top-hero-offset) - 10px);
    padding-left: clamp(18px, 4vw, 56px);
    padding-right: clamp(18px, 4vw, 56px);
}

@media (max-width:768px) {
    .top-hero {
        padding: 10px 12px;
        min-height: 94px;
    }

    .top-hero .container {
        flex-direction: column;
        gap: 10px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .top-hero .hero-logo {
        width: 106px;
        max-height: 34px;
    }

    .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;
    }

    .text-section {
        width: calc(100% - 32px);
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .text-section .text-center.m-5 {
        margin: 28px auto !important;
    }

    .text-section h2,
    .text-section h3,
    .text-section p {
        width: 100%;
    }
}

.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;
    min-height: 560px;
    border-radius: 8px;
    overflow: hidden;
}

.tile-image {
    width: 50%;
    height: 560px;
    display: flex;
    flex: 0 0 50%;
}

.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;
    text-align: left;
}

.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.46), rgba(0, 0, 0, 0.68));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: clamp(118px, 14vw, 170px);
    height: auto;
    max-height: 58px;
    border-radius: 0;
    object-fit: contain;
    display: inline-block;
    overflow: hidden;
    transform: none;
}

.hero-logo:hover {
    transform: none;
}

.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;
}

.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;
        width: min(42vw, 140px);
        max-height: 54px;
    }

    .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: 10px;
    opacity: 0.96;
}

.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 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%, 210px);
    max-height: 78px;
    object-fit: contain;
    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;
    }
}

.tile-text p {
    overflow: visible;
    text-align: left;
}

@media (max-width: 1180px) {
    .tiles-slider {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 10px;
    }

    .tile-slide {
        min-height: 0;
        height: auto;
    }

    .tile-text {
        justify-content: flex-start;
        padding: 26px;
    }

    .tile-text h3 {
        font-size: 22px;
        line-height: 1.18;
    }

    .tile-text .section-header {
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.35;
    }

    .tile-text p {
        font-size: 14px;
        line-height: 1.55;
    }
}

@media (max-width: 980px) and (min-width: 769px) {
    .tiles-slider {
        grid-template-columns: minmax(0, 1fr);
        width: min(720px, calc(100% - 32px));
        margin-left: auto;
        margin-right: auto;
    }

    .tiles-viewport {
        grid-column: 1;
        grid-row: 1;
        border-radius: 8px;
    }

    .tile-slide {
        flex-direction: column;
    }

    .tile-image {
        width: 100%;
        height: 360px;
        flex-basis: auto;
        order: 1;
    }

    .tile-text {
        width: 100%;
        order: 2;
    }

    .tile-prev,
    .tile-next {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        justify-self: start;
        margin-left: 12px;
    }

    .tile-next {
        justify-self: end;
        margin-left: 0;
        margin-right: 12px;
    }
}

.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(100dvh - 18px);
        min-height: 620px;
        padding: 16px;
    }

    .modal-box h3 {
        font-size: 18px;
        margin-right: 46px;
        margin-left: 46px;
    }

    .calendar-box {
        height: 100%;
        min-height: 560px;
    }
}


::-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) {

    .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;
    text-align: left;
}

.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;
}

.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);
}

.footer-col ul li a:focus,
.footer-col ul li a:focus-visible,
.footer-col ul li a:active {
    outline: none !important;
    box-shadow: none !important;
}

.footer-legal a:focus,
.footer-legal a:focus-visible,
.footer-legal a:active,
.footer-socials a:focus,
.footer-socials a:focus-visible,
.footer-socials a:active {
    outline: none !important;
    box-shadow: none !important;
}

.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;
}

@media (max-width: 768px) {

    .side-circles-left,
    .side-circles-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding-top: calc(var(--top-hero-offset) + 8px);
    }

    .main-container .section:not(.text-section) {
        width: calc(100% - 24px);
        margin-left: auto;
        margin-right: auto;
    }

    .tiles-slider {
        grid-template-columns: 1fr;
        justify-content: stretch;
        align-items: stretch;
        gap: 0;
        margin: 0 auto 36px;
    }

    .tiles-viewport {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.035);
        box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
    }

    .tile-slide {
        flex-direction: column;
        min-height: 0;
        height: auto;
        border-radius: 0;
        background: transparent;
    }

    .tile-image {
        width: 100%;
        height: clamp(220px, 58vw, 320px);
        flex-basis: auto;
        order: 1;
    }

    .tile-image img {
        border-radius: 0;
    }

    .tile-text {
        width: 100%;
        min-height: 0;
        padding: 22px 18px 24px;
        gap: 10px;
        justify-content: flex-start;
        order: 2;
    }

    .tile-text h3 {
        align-self: flex-start;
        margin-bottom: 4px;
        font-size: 21px;
        line-height: 1.18;
    }

    .tile-text .section-header {
        width: 100%;
        margin-bottom: 4px;
        font-size: 14px;
        line-height: 1.38;
        text-align: left;
        color: rgba(255, 255, 255, 0.88);
    }

    .tile-text p {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.58;
        color: rgba(255, 255, 255, 0.76);
    }

    .tile-text .btn-custom {
        align-self: stretch;
        justify-content: center;
        text-align: center;
        margin-top: auto;
    }

    .tile-prev,
    .tile-next {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        align-self: start;
        margin-top: calc(clamp(220px, 58vw, 320px) - 54px);
    }

    .tile-prev {
        margin-left: 12px;
    }

    .tile-next {
        justify-self: end;
        margin-right: 12px;
    }

    .tile-arrow {
        width: 38px;
        height: 38px;
        background: rgba(0, 0, 0, 0.24);
        border-color: rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.72);
        box-shadow: none;
        backdrop-filter: blur(8px);
    }

    .tile-arrow:hover {
        background: rgba(0, 0, 0, 0.36);
        border-color: rgba(217, 79, 87, 0.5);
        color: rgba(255, 255, 255, 0.92);
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        width: calc(100% - 24px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .newsletter-intro {
        margin-bottom: 18px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
    }

    .newsletter-intro h3 {
        margin-bottom: 10px;
        font-size: 25px;
        line-height: 1.16;
    }

    .newsletter-intro h4 {
        font-size: 17px;
        line-height: 1.35;
    }

    .newsletter-section>p {
        font-size: 14px;
        line-height: 1.62;
        color: rgba(255, 255, 255, 0.76);
    }

    .newsletter-options {
        gap: 14px;
        margin-top: 18px;
        border: 0;
        border-radius: 0;
        overflow: visible;
        background: transparent;
    }

    .newsletter-card {
        padding: 22px 18px 20px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026));
        box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
    }

    .newsletter-card+.newsletter-card {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .newsletter-card::before {
        width: auto;
        height: 2px;
        inset: 0 0 auto 0;
        background: linear-gradient(90deg, transparent, var(--brand-muted), var(--brand), var(--brand-muted), transparent);
        opacity: 0.62;
    }

    .newsletter-card h3 {
        padding-left: 0;
        font-size: 19px;
        line-height: 1.24;
    }

    .newsletter-card p {
        padding-left: 0;
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.56;
        color: rgba(255, 255, 255, 0.74);
    }

    .newsletter-link {
        width: 100%;
        min-height: 44px;
        margin-left: 0;
        text-align: center;
        background: rgba(255, 255, 255, 0.075);
    }
}
