@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');

@font-face {
    font-family: 'Urbanchrome Normal';
    src: url('../fonts/Urbanchrome Normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-black: #000000;
    --bg-dark: #161616;
    --bg-card: #1E1E20;
    --bg-light: #FCFCFC;
    --text-gray-light: #86868B;
    --text-gray: #6B6B6B;
    --text-gray-dark: #6D6D6D;
    --text-white: #FDFBF1;
    --text-light: #FCFCFC;
    --border-light: #212121;
    --border-dark: #2B2B2B;
    --border-subtle: #343434;
    --accent: #BCE1DB;
}


* {
    box-sizing: border-box;
    transition: all 0.3s ease;
}

body {
    background-color: var(--bg-black);
    color: var(--text-gray-light);
    font-family: 'Zalando Sans', sans-serif;
}

a {
    color: var(--text-gray);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

.marquee-container,
.header-tagline {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 600;
    font-size: 0.8em;
}

.logo-img {
    max-width: 225px;
    margin-bottom: 1.5rem;
}

header {
    padding: 40px 20px;
}


.header-tagline {
    color: var(--text-gray-dark);
    letter-spacing: 0.2em;
}

.main-section-title,
.main-section-title-2 {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-weight: 600;
}


.gradient-text {
    background: linear-gradient(to right, #BCE1DB, #658EA5);
}

.gradient-text-2 {
    background: linear-gradient(to right, #E2E4FF, #839FEF);
}

.gradient-text-3 {
    background: linear-gradient(to right, #F9D8E3, #F87DB3);
}

.gradient-text-4 {
    background: linear-gradient(to right, #C5FBFF, #5E9BE5);
}

.gradient-text-5 {
    background: linear-gradient(to right, #EFE1F0, #D9A2F7);
}

.gradient-text-6 {
    background: linear-gradient(to right, #EBFCE9, #DCEEC6);
}

.gradient-text-7 {
    background: linear-gradient(to right, #C9BAA7, #D86260);
}

.gradient-text-multi {
    background: linear-gradient(90deg, #3B8AF8, #BE61F3, #F45328);
}

.gradient-text-multi,
.gradient-text,
.gradient-text-2,
.gradient-text-3,
.gradient-text-4,
.gradient-text-5,
.gradient-text-6,
.gradient-text-7 {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-section {
    position: relative;
    width: 100%;
    padding-top: 45%;
    margin-bottom: 40px;
}

.banner-section img {
    position: absolute;
    inset: 0;
    border-radius: clamp(2rem, 5vw, 5rem);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.banner-title {
    color: var(--text-white);
    font-size: clamp(1.8rem, 6vw, 4.5rem);
    line-height: 1;
    font-family: 'Urbanchrome Normal', sans-serif;
}

.banner-subtitle {
    color: var(--bg-black);
    font-size: clamp(0.5rem, 1vw, 1rem);
    letter-spacing: 0.5em;
    font-family: 'Urbanchrome Normal', sans-serif;
}

.accordion-button {
    background-color: #2B2B2B;
    color: #FCFCFC;
    font-weight: 500;
    text-align: center;
    display: block;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #FCFCFC;
    color: #000000;
    border: 0;
    box-shadow: none;
}

.accordion-item {
    border: none;
    background-color: transparent;
    border-radius: 18px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-body {
    background-color: #FCFCFC;
    color: #000000;
}

.custom-carousel-container {
    position: relative;
    overflow: hidden;
    cursor: grab;
    margin: 0 -2000px;
    padding-left: 2000px;
}

.custom-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: 360px;
}

.card {
    background-color: var(--bg-black);
    border: none;
    border-radius: 30px;
    padding: 6em 2em;
    height: 100%;
    width: 360px;
}

.card .card-subtitle {
    color: var(--text-light);
    font-weight: 900;
    margin-bottom: 1rem;
}

.social-icon {
    color: var(--text-gray-light);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent);
}

.footer-link {
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
}

.carousel-arrow-btn {
    background-color: var(--bg-card);
    border: none;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 0.5rem;
}

.carousel-arrow-btn:hover:not(:disabled) {
    background-color: var(--border-dark);
}

.carousel-arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-controls {
    position: absolute;
    display: flex;
    right: 1rem;
    margin-top: 1em;
    z-index: 10;
}

.join-button {
    display: inline-block;
    padding: 0.7em 3em;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 18px;
    font-weight: 600;
    font-size: 1em;
    position: relative;
    background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.join-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(90deg, #3B8AF8, #BE61F3, #F45328);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.join-button:hover {
    background: linear-gradient(90deg, #3B8AF8, #BE61F3, #F45328);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-subtle);
}

.marquee-text {
    display: inline-block;
    animation: marquee 30s linear infinite;
    color: var(--text-light);
    font-size: 1.25em;
    letter-spacing: 0.1em;
}

.marquee-text span {
    padding: 0.6em;
    border-right: 1px solid var(--border-subtle);
}

.marquee-text span img {
    height: 18px;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}


.main-section-title {
    font-size: 1.9rem;
}

.main-section-title-2 {
    font-size: 1.5rem;
}

.diagnose-section {
    background-color: var(--bg-dark);
}

.diagnose-title {
    font-size: 2rem;
    font-weight: 600;
    padding: 30px;
}

.think {
    background-color: var(--bg-black);
    border-radius: 50px;
    padding: 30px;
}

.performance-section {
    background-color: var(--bg-black);
    padding: 2em 0;
}

.performance-subtitle {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
}

.features-section {
    background-color: var(--bg-dark);
    padding: 2em 0 4em 0;
}

.features-section-overflow {
    overflow: hidden;
}

.features-title {
    color: var(--text-light);
    font-size: 1.75rem;
    font-weight: 600;
}

.footer-section {
    background-color: var(--bg-black);
    padding: 4rem 0;
}

.footer-section-border {
    border-bottom: 1px solid var(--border-light);
}

.faq-title {
    color: var(--text-gray);
    font-size: 2rem;
    font-weight: 800;
}

.footer-contact {
    color: var(--text-gray-light);
    font-weight: 200;
    font-size: 1.5em;
}

.footer-phone {
    font-weight: 600;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.footer-logo {
    max-width: 190px;
    margin-bottom: 2rem;
}

.policy-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.policy-list {
    color: var(--text-gray-light);
    padding-left: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.5rem;
}



.whatsapp-button {
    position: fixed;
    inset: auto 30px 30px auto;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
    color: #ffffff;
}

.text-light-inline {
    color: var(--text-light);
}

.role-item-trigger {
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-light);
    padding: 18px;
    margin: 0 -18px;
    border-radius: 30px;
    cursor: pointer;
    background-color: var(--bg-card);
}

.trigger-title {
    font-weight: 500;
    color: var(--text-light);
}

.active .role-item-trigger {
    display: none;
}

.role-item {
    font-size: 18px;
    display: inline-block;
    border-radius: 30px;
    padding: 18px;
    margin-bottom: 10px;
}

.role-item.active {
    background-color: var(--bg-card);
}

.role-item-content {
    opacity: 0;
    display: none;
}

.role-item-content.active {
    opacity: 1;
    display: inline;
}


.line-height-double {
    line-height: 2;
    margin: 0;
}

.policy-border-left {
    border-left: 1px solid #101010;
}

.policy-border-both {
    border-left: 1px solid #101010;
    border-right: 1px solid #101010;
}


.garage {
    border-bottom: 1px solid #161616;
}


@media (min-width: 576px) {}


@media (min-width: 768px) {}


@media (min-width: 992px) {

    .header-tagline {
        font-size: 1em;
    }


    .features-section {
        padding: 4rem 0;
    }


    .diagnose-section {
        padding: 2em 0;
    }

    .performance-section {
        padding: 4em 0;
    }


    .banner-title {
        font-size: clamp(2rem, 6vw, 4.5rem);
    }

    .main-section-title {
        font-size: 2.5rem;
    }

    .banner-section {
        margin-bottom: 80px;
    }

    .logo-img {
        max-width: 360px;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        max-width: 300px;
        margin-bottom: 1rem;
    }

    header {
        padding: 80px 20px;
    }

    .garage {
        border: none;
        border-right: 1px solid#161616;
    }
}


@media (min-width: 1200px) {}

@media (min-width: 1400px) {}