:root {
    --primary-color: #de8d1f;
    --secondry-color: #edc083;
    --text-gray: #262626;
    --bg-light: #fdf6ed;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-gray);
    font-family: "Lato", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 94%;
    max-width: 1250px;
    margin: auto;
}

/* ---------------------------------- */
/* Buttons                            */
/* ---------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 40px;
    padding: 0.6rem 1.7rem;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
    white-space: nowrap;
}

.btn:active {
    transform: translateY(1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.4rem 1.4rem;
    font-size: 0.875rem;
}

.btn-outline:hover {
    background-color: rgba(212, 169, 74, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ffe8c7;
    color: var(--text-gray);
}

/* ---------------------------------- */
/* Header                             */
/* ---------------------------------- */

.site-header {
    border-bottom: 1px solid var(--secondry-color);
    position: fixed;
    width: 100%;
    background-color: var(--bg-light);
    z-index: 500;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.logo {
    width: 120px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.site-header .btn-primary {
    padding: 0.3rem 1rem;
    font-size: 0.875rem;
}

/* ---------------------------------- */
/* Hero                                */
/* ---------------------------------- */

.hero {
    padding-top: 9rem;
    padding-bottom: 5rem;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill {
    display: inline-block;
    font-size: 0.90rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.hero-title {
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-gray);
    margin: 0 0 1.2rem 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--text-gray);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 0 1.3rem 0;
}

.hero-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 10px;
}

.session-note {
    font-size: 0.85rem;
    opacity: 0.7;
    color: var(--text-gray);
    margin: 1rem 0 0 0;
}


/* ---------------------------------- */
/* Hero media                         */
/* ---------------------------------- */

.hero-media {
    display: flex;
}

.media-placeholder {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 12 / 6.5;
    background-color: var(--white);
    border: 2px solid var(--secondry-color);
    border-radius: 14px;
    overflow: hidden;
}

.media-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.stats {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0rem 1.6rem;
    gap: 0rem;
}

.stat-number {
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.7;
    letter-spacing: 0.5px;
    color: var(--text-gray);
}

.stat-devider {
    width: 1px;
    height: 70px;
    background: #8a8a8a49;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 800px) {
    .hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

}

@media (max-width: 560px) {

    .hero-cta-actions {
        flex-direction: column;
        gap: 0.85rem;
    }

}

@media (max-width: 500px) {

    .logo {
        width: 100px;
    }

    .btn-outline {
        padding: 0.5rem 1rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-devider {
        height: 60px;
    }

    .hero {
        padding-top: 6rem;
        padding-bottom: 1.75rem;
    }

    .hero-inner {
        gap: 1.75rem;
    }

    .stats {
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media (max-width: 400px) {
    .stat {
        padding: 0rem .3rem;
    }
}












/* ---------------------------------- */
/* Celebrities                        */
/* ---------------------------------- */

.celebrities {
    padding: 5rem 0 5rem;
    border-top: 1px solid var(--secondry-color);
}

.celebrities .container {
    text-align: center;
}

.section-title {
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.2;
    color: var(--text-gray);
    /* margin: 0 0 2.5rem 0; */
    margin: 0;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-gray);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
}

/* Marquee viewport — full width, clips the scrolling track */
.marquee {
    width: 100%;
    /* max-width: 1300px; */
    margin: auto;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.celeb-card {
    position: relative;
    flex: 0 0 auto;
    width: 200px;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--secondry-color);
    display: block;
}

.celeb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.celeb-card:hover img {
    transform: scale(1.06);
}

.celeb-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.75rem 1rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
}

.celeb-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--white);
}

.celeb-role {
    font-size: 0.75rem;
    color: var(--secondry-color);
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

/* Responsive */
@media (max-width: 800px) {
    .celebrities {
        padding: 3rem 0 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .celeb-card {
        width: 170px;
    }
}

@media (max-width: 500px) {
    .celebrities {
        padding: 2.5rem 0 3rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .celeb-card {
        width: 140px;
    }

    .marquee-track {
        gap: 0.85rem;
        animation-duration: 22s;
    }
}












/* ---------------------------------- */
/* Video section                      */
/* ---------------------------------- */

.video-section {
    padding: 4rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.video-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.video-title {
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.2;
    color: var(--text-gray);
    margin: 0;
}

.video-subtitle {
    font-size: 1.05rem;
    opacity: 0.8;
    line-height: 1.55;
    color: var(--text-gray);
    margin: 0;
    margin-top: 10px;
}

.video-thumb {
    position: relative;
    width: 100%;
    max-width: 950px;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background-color: #000;
    border: 1px solid var(--secondry-color);
    cursor: pointer;
    order: 2;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.5;
}

.video-thumb iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.video-play-btn svg {
    margin-left: 3px;
}

.video-thumb:hover .video-play-btn {
    background-color: var(--white);
    transform: translate(-50%, -50%) scale(1.06);
}

.video-thumb.is-playing .video-play-btn {
    display: none;
}

/* Responsive */
@media (max-width: 800px) {

    .video-section {
        padding: 3rem 0 3rem;
    }

    .video-title {
        font-size: 2rem;
        line-height: 1.2;
    }

}

@media (max-width: 500px) {
    .video-section {
        padding: 2.5rem 0 3rem;
    }

    .video-play-btn {
        width: 52px;
        height: 52px;
    }
}










/* ---------------------------------- */
/* Session topics                     */
/* ---------------------------------- */

.session-topics {
    padding: 4rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.session-topics-header {
    text-align: center;
    margin-bottom: 3rem;
}

.topics-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.topic-card {
    max-width: 616px;
    transition: transform 0.15s ease;
    border-bottom: 1px solid #1a1a1a3a;
    padding-bottom: 1.5rem;
    display: flex;
    gap: 2rem;
}

.topic-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.topic-number {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.topic-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-gray);
    margin: 0 0 0.4rem 0;
}

.topic-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-gray);
    opacity: 0.75;
    margin: 0;
}

.session-topics-cta {
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
    .session-topics {
        padding: 3rem 0 3rem;
    }
}

@media (max-width: 575px) {

    .session-topics {
        padding: 2.5rem 0 3rem;
    }
}










/* ---------------------------------- */
/* Funding / marketing support        */
/* ---------------------------------- */

.funding-section {
    padding: 4rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.section-eyebrow {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.funding-section .section-title {
    font-size: 3.5rem;
}

.funding-section .section-subtitle {
    opacity: 0.8;
    font-size: 1.1rem;
}

.funding-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: auto;
    margin-top: 2.5rem;
    max-width: 900px;
}

.funding-card {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: 560px;
    background-color: var(--white);
    border: 1px solid var(--secondry-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.funding-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.funding-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.funding-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-gray);
    margin: 0 0 0.75rem 0;
}

.funding-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    opacity: 0.8;
    margin: 0;
}

/* Responsive */


@media (max-width: 900px) {
    .funding-section {
        padding: 3rem 0 3rem;
    }

    .funding-section .section-title {
        font-size: 2rem;
    }

}

@media (max-width: 560px) {
    .funding-section {
        padding: 2.5rem 0 3rem;
    }

    .funding-card {
        flex: 1 1 100%;
        padding: 1.5rem;
    }
}











/* ---------------------------------- */
/* Technology section                 */
/* ---------------------------------- */

.tech-section {
    padding: 4rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.tech-section .section-subtitle {
    opacity: 0.8;
    font-size: 1.1rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: auto;
    margin-top: -2.5rem;
    max-width: 1000px;
}

.tech-card {
    background-color: var(--white);
    border: 1px solid var(--secondry-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.tech-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.tech-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-gray);
    margin: 0 0 0.5rem 0;
}

.tech-card-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-gray);
    opacity: 0.9;
    margin: 0;
}

/* Owner CRM highlighted panel */
.crm-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--secondry-color);
    border-radius: 16px;
    margin: auto;
    padding: 2.25rem;
    margin-top: 1.25rem;
    max-width: 1000px;
}

.crm-panel-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-gray);
    margin: 0 0 0.75rem 0;
}

.crm-panel-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.crm-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-light);
    border-radius: 10px;
    border: 1px solid #de8f1f63;
    padding: 0.8rem 1.25rem;
}

.crm-stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.crm-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-gray);
}

.crm-stat-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    opacity: 0.85;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 1000px) {
    .tech-section {
        padding: 3rem 0 3rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {

    .crm-panel {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 1.75rem;
    }
}

@media (max-width: 560px) {
    .tech-section {
        padding: 2.5rem 0 3rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .crm-panel-title {
        font-size: 1.3rem;
    }
}











/* ---------------------------------- */
/* Meet your team                     */
/* ---------------------------------- */

.team-section {
    padding: 4rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.team-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
}

.team-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--secondry-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.team-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-title {
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.3;
    color: var(--text-gray);
    margin: 0;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    opacity: 0.85;
    max-width: 50ch;
    margin: 0 0 1.5rem 0;
}

.team-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.badge-pill {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05px;
}

.badge-pill2 {
    opacity: 0.8;
}



/* Responsive */
@media (max-width: 800px) {
    .team-section {
        padding: 3rem 0 3rem;
    }

    .team-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .team-photo {
        max-width: 100%;
        margin: auto;
    }

    .team-content {
        align-items: center;
        text-align: center;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-desc {
        max-width: 100%;
        margin: 0 0 1.5rem 0;
    }

    .team-badges {
        justify-content: center;
    }

}

@media (max-width: 560px) {
    .team-section {
        padding: 2.5rem 0 3rem;
    }
}










/* ---------------------------------- */
/* Partner testimonials               */
/* ---------------------------------- */

.testimonials-section {
    padding: 4rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: auto;
    max-width: 1000px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.25rem);
    max-width: calc(33.333% - 1.25rem);
    background-color: var(--white);
    border: 1px solid var(--secondry-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.5;
    opacity: 0.9;
    color: var(--text-gray);
    margin: 0 0 1.25rem 0;
}

.testimonial-meta {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05px;
    color: var(--primary-color);
    opacity: 0.85;
}

/* ---------------------------------- */
/* Video testimonials carousel        */
/* ---------------------------------- */

/* .vt-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: auto;
    margin-top: 2.5rem;
    max-width: 1000px;
}
.video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    background-color: #1a1a1a;
    text-decoration: none;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.35) 100%);
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--secondry-color);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 2;
    transition:
        background-color 0.15s ease,
        transform 0.15s ease;
}

.video-card:hover .video-card-play {
    background-color: var(--white);
    transform: translate(-50%, -50%) scale(1.08);
}

.video-card-meta {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
} */


/* ---------------------------------- */
/* Video testimonials carousel        */
/* ---------------------------------- */

.vt-carousel {
    position: relative;
    margin: auto;
    margin-top: 2.5rem;
    padding: 0 56px;
    max-width: 1100px;
}

.vt-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--secondry-color);
    background-color: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.vt-arrow-left {
    left: 0;
}

.vt-arrow-right {
    right: 0;
}

.vt-arrow:hover:not(:disabled) {
    border-color: var(--primary-color);
}

.vt-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.vt-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vt-viewport::-webkit-scrollbar {
    display: none;
}

.vt-track {
    display: flex;
    gap: 1.25rem;
}

.video-card {
    position: relative;
    flex: 0 0 calc(25% - 0.9375rem);
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    scroll-snap-align: start;
    display: block;
    background-color: #000000;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    display: block;
    transition: transform 0.4s ease;
    opacity: 0.5;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--secondry-color);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 2;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.video-card:hover .video-card-play {
    background-color: var(--white);
    transform: translate(-50%, -50%) scale(1.08);
}

.video-card-meta {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

/* Responsive: 4 -> 3 -> 2 -> 1.2 cards visible */
@media (max-width: 1000px) {
    .video-card {
        flex: 0 0 calc(33.333% - 0.85rem);
    }
}

@media (max-width: 875px) {
    .testimonials-section {
        padding: 3rem 0 3rem;
    }

    .testimonial-card {
        flex: 1 1 calc(100% - 1.25rem);
        max-width: calc(100% - 1.25rem);
    }
}


@media (max-width: 700px) {
    .video-card {
        flex: 0 0 calc(50% - 0.65rem);
    }

    .vt-arrow-left {
        left: 0.5rem;
    }

    .vt-arrow-right {
        right: 0.5rem;
    }

    .vt-carousel {
        padding: 0 48px;
    }

    .vt-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }


}


@media (max-width: 560px) {
    .testimonials-section {
        padding: 2.5rem 0 3rem;
    }

    .testimonial-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}



@media (max-width: 460px) {
    .video-card {
        flex: 0 0 78%;
    }

    .vt-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
}



/* @media (max-width: 875px) {

    .testimonials-section {
        padding: 3rem 0 3rem;
    }

    .testimonial-card {
        flex: 1 1 calc(100% - 1.25rem);
        max-width: calc(100% - 1.25rem);
    }

    .vt-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */



/* @media (max-width: 560px) {
    .testimonials-section {
        padding: 2.5rem 0 3rem;
    }

    .testimonial-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
} */


/* @media (max-width: 440px) {

    .vt-video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

} */




/* ---------------------------------- */
/* Video modal                        */
/* ---------------------------------- */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.video-modal.is-open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.video-modal-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    z-index: 1;
}

.video-modal-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

.video-modal-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: var(--white);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
}















/* ---------------------------------- */
/* Cities section                     */
/* ---------------------------------- */

.cities-section {
    padding: 4rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: auto;
    margin-top: 2rem;
    max-width: 1000px;
}

.city-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-gray);
    background-color: var(--white);
    border: 1px solid var(--secondry-color);
    border-radius: 999px;
    padding: 0.6rem 1.25rem;
    transition: all 0.15s ease;
}

.city-pill:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    background-color: var(--primary-color);
    color: var(--white);
}

.city-pill-cta {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
}

.city-pill-cta:hover {
    background-color: var(--secondry-color);
    border-color: var(--secondry-color);
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 560px) {
    .cities-section {
        padding: 2.5rem 0 3rem;
    }

    .cities-grid {
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .city-pill {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}












/* ---------------------------------- */
/* Pricing section                    */
/* ---------------------------------- */

.pricing-section {
    padding: 4rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: auto;
    margin-top: 2.5rem;
    max-width: 1000px;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 260px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--white);
    border: 1px solid var(--secondry-color);
    border-radius: 16px;
    padding: 1.3rem 1.5rem;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.pricing-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-gray);
    margin: 0 0 0.25rem 0;
}

.pricing-tagline {
    font-size: 0.9375rem;
    color: var(--text-gray);
    opacity: 0.75;
    margin: 0 0 1.5rem 0;
}

.pricing-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-gray);
    line-height: 1.1;
}

.pricing-amount-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-gray);
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    opacity: 0.7;
    width: 100%;
}

.pricing-features li {
    font-size: 0.9375rem;
    color: var(--text-gray);
    padding-left: 1.25rem;
    position: relative;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
    padding: 0.6rem 1.4rem;
}


.pricing-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    opacity: 0.6;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-section {
        padding: 3rem 0 3rem;
    }

    .pricing-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

}

@media (max-width: 560px) {
    .pricing-section {
        padding: 2.5rem 0 3rem;
    }

    .pricing-card {
        flex: 1 1 100%;
        max-width: 360px;
    }

    .pricing-amount {
        font-size: 2.1rem;
    }
}












/* ---------------------------------- */
/* Reserve section                    */
/* ---------------------------------- */

.reserve-section {
    padding: 3.5rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.reserve-container {
    max-width: 500px;
}

.reserve-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.reserve-title {
    font-weight: 600;
    font-size: 2.4rem;
    color: var(--text-gray);
    margin: 0 0 0.75rem 0;
}

.reserve-subtitle {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-gray);
    opacity: 0.75;
    margin: 0 0 0.5rem 0;
}

.reserve-countdown {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-gray);
    opacity: 0.55;
    margin-top: 0.5rem;
}

.form-section-label:first-child {
    margin-top: 0;
}

.form-row {
    display: flex;
    gap: 0.85rem;
}

.form-row .form-field {
    flex: 1;
}

.form-field {
    width: 100%;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    color: var(--text-gray);
    background-color: var(--white);
    border: 1px solid #de8f1f63;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    transition: border-color 0.15s ease, background-color 0.15s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23353535' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 90px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.55;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
}

.reserve-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    border-radius: 12px;
}

.reserve-fine-print {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    opacity: 0.6;
    margin: 0.2rem 0 0 0;
}

.reserve-whatsapp {
    display: block;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0rem;
}

.reserve-whatsapp:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 560px) {
    .reserve-section {
        padding: 2.5rem 0 3rem;
    }

    .reserve-title {
        font-size: 1.9rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.85rem;
    }
}












/* ---------------------------------- */
/* FAQ section                        */
/* ---------------------------------- */

.faq-section {
    padding: 3.5rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.faq-container {
    max-width: 700px;
}

.faq-title {
    font-weight: 600;
    font-size: 2.2rem;
    color: var(--text-gray);
    text-align: center;
    margin: 0 0 2rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--secondry-color);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-gray);
    padding: 1.25rem 0;
}

.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-gray);
    opacity: 0.8;
    margin: 0 0 1.5rem 0;
}

/* Responsive */
@media (max-width: 560px) {
    .faq-section {
        padding: 2.5rem 0 3rem;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 0.9375rem;
        padding: 1rem 0;
    }
}












/* ---------------------------------- */
/* Closing CTA + footer               */
/* ---------------------------------- */

.closing-cta-section {
    padding: 4rem 0 4rem;
    border-top: 1px solid var(--secondry-color);
}

.closing-cta-container {
    max-width: 700px;
    text-align: center;
    margin-bottom: 4rem;
}

.closing-cta-title {
    font-weight: 800;
    font-size: 2.85rem;
    line-height: 1.15;
    color: var(--text-gray);
    margin: 0 0 1rem 0;
}

.closing-cta-subtitle {
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--text-gray);
    opacity: 0.75;
    margin: 0 0 2rem 0;
}

.closing-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.closing-cta-whatsapp {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-color);
}

.closing-cta-whatsapp:hover {
    text-decoration: underline;
}

.closing-footer {
    border-top: 1px solid var(--secondry-color);
    padding-top: 2rem;
}

.closing-footer p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-gray);
    opacity: 0.55;
    margin: 0;
}

.closing-footer p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 560px) {
    .closing-cta-section {
        padding: 3rem 0 2.5rem;
    }

    .closing-cta-title {
        font-size: 2rem;
    }

    .closing-cta-subtitle {
        font-size: 1rem;
    }

    .closing-cta-actions {
        flex-direction: column;
        gap: 0.85rem;
    }

    .closing-cta-actions .btn-primary {
        width: 100%;
    }
}











/* ---------------------------------- */
/* Sticky bottom bar                  */
/* ---------------------------------- */

.sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    background-color: var(--white);
    border-top: 1px solid var(--secondry-color);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.sticky-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.6rem 0;
}

.sticky-bar-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.sticky-bar-text strong {
    color: var(--text-gray);
    font-weight: 700;
}

.sticky-bar-btn {
    padding: 0.4rem 1.4rem;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 560px) {
    .sticky-bar-inner {
        gap: 0.75rem;
        padding: 0.7rem 0.5rem;
    }

    .sticky-bar-text {
        font-size: 0.8125rem;
    }

    .sticky-bar-text strong {
        display: block;
    }
}

@media (max-width: 500px) {
    .sticky-bar .btn-primary {
        width: auto;
    }

}









/* ---------------------------------- */
/* Clee WhatsApp widget               */
/* ---------------------------------- */

.clee-widget {
    position: fixed;
    right: 1.2rem;
    bottom: 5rem;
    z-index: 900;

    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

}

.clee-launcher {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.clee-bounce {
    display: block;
    width: 100%;
    height: 100%;
    animation: clee-bounce 10s ease-in-out infinite;
    margin-left: -6px;
    margin-top: -26px;
}

.clee-wiggle {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    transform-origin: 50% 100%;
    animation: clee-wiggle 3.4s ease-in-out infinite;
}

@keyframes clee-bounce {

    /* Phase 1 (0–45%): whole doll bounces up and down */
    0% {
        transform: translateY(0);
    }

    12% {
        transform: translateY(-10px);
    }

    24% {
        transform: translateY(0);
    }

    36% {
        transform: translateY(-5px);
    }

    45%,
    100% {
        transform: translateY(0);
    }
}

@keyframes clee-wiggle {

    /* Phase 2 (45–90%): top swings/vibrates left-right, rooted at the base */
    0%,
    45% {
        transform: rotate(0deg);
    }

    52% {
        transform: rotate(-7deg);
    }

    59% {
        transform: rotate(6deg);
    }

    66% {
        transform: rotate(-5deg);
    }

    73% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-2deg);
    }

    87%,
    100% {
        transform: rotate(0deg);
    }
}

.clee-widget.is-open .clee-bounce,
.clee-widget.is-open .clee-wiggle {
    animation: none;
}

.clee-online-dot {
    position: absolute;
    top: 4px;
    right: 8px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #25d366;
    border: 2px solid var(--white);
}

@keyframes clee-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(-3deg);
    }
}


/* Chat panel */
.clee-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 1rem);
    width: 340px;
    background-color: var(--white);
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.clee-widget.is-open .clee-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.clee-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--secondry-color);
}

.clee-panel-identity {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.clee-avatar {
    width: 30px;
    height: auto;
    object-fit: cover;
}

.clee-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-gray);
}

.clee-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    opacity: 0.6;
}

.clee-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    border: 1px solid var(--primary-color);
    background-color: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.7rem;
}

.clee-panel-body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.clee-message {
    background-color: var(--bg-light);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.clee-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.clee-chip {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-gray);
    background-color: var(--white);
    border: 1px solid var(--secondry-color);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.clee-chip:hover {
    border-color: var(--primary-color);
}

.clee-input-row {
    display: flex;
    gap: 0.5rem;
}

.clee-input {
    flex: 1;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    color: var(--text-gray);
    background-color: var(--bg-light);
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    padding: 0.7rem 1rem;
}

.clee-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
}

.clee-send {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 999px;
}

.clee-whatsapp-cta {
    display: block;
    text-align: center;
    background-color: #25d366;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.95rem;
}

.clee-whatsapp-cta:hover {
    background-color: #1fb855;
}

/* Responsive */

@media (max-width: 370px) {
    .clee-input-row {
        flex-direction: column;
        margin-top: 10px;
    }
}





.clee-text {
    position: absolute;
    bottom: 84px;
    right: 0px;
    width: 190px;
    background: #fff;
    border: 1px solid #de8d1f;
    border-radius: 30px;
    padding: 6px 10px;
    font-size: 12px;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1a1a1ab0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.clee-text i {
    font-size: 14px;
    cursor: pointer;
}

.clee-text-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}






















:root {
    --ink: #f5f5f7;
    --ink-2: #b0a99e;
    --ink-3: #86868b;
    --brand: #DB8107;
    --bg: #0b0b0d;
}

.stage {
    position: relative;
    height: 2000px;
    margin-top: -150px;
}

.pin {
    position: sticky;
    top: 0;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
}

.phone {
    will-change: transform;
    flex: none;
}

.phone.left {
    height: 340px;
    margin-right: -13px;
}

.phone.center {
    height: 420px;
    position: relative;
    z-index: 2;
}

.phone.right {
    height: 340px;
    margin-left: -13px;
}

.frame {
    height: 100%;
    padding: 6px;
    border-radius: 26px;
    background: linear-gradient(150deg, #4a4a4e, #1c1c1e);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.phone.center .frame {
    padding: 7px;
    border-radius: 32px;
    background: linear-gradient(150deg, #5a5a5e, #1c1c1e);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.screen {
    height: 100%;
    aspect-ratio: 9/19.5;
    border-radius: 21px;
    background: var(--bg);
    color: var(--ink);
    padding: 16px 12px;
    overflow: hidden;
}

.phone.center .screen {
    border-radius: 26px;
    padding: 18px 14px;
}

.label {
    font-size: 8px;
    color: var(--ink-3);
    margin-bottom: 10px;
}

.heading {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.phone.center .heading {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 7px;
    padding: 7px 8px;
}

.card+.card {
    margin-top: 6px;
}

.card.active {
    background: rgba(219, 129, 7, 0.16);
    border: 1px solid rgba(219, 129, 7, 0.35);
}

.card .title {
    font-size: 8px;
    font-weight: 600;
}

.card.active .title {
    color: var(--brand);
}

.card .sub {
    font-size: 7px;
    color: var(--ink-3);
}

.card.active .sub {
    color: var(--ink-2);
}

.field {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
}

.field .k {
    font-size: 8px;
    color: var(--ink-3);
    margin-bottom: 3px;
}

.field .v {
    font-size: 9px;
    font-weight: 600;
}

.cta {
    background: var(--brand);
    color: #000;
    border-radius: 999px;
    padding: 9px;
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    margin: 12px 0 14px;
}

.step {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-bottom: 7px;
}

.dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
    flex: none;
}

.dot.off {
    background: #333;
}

.step span {
    font-size: 8px;
}

.step.off span {
    color: var(--ink-3);
}

.stat {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 7px;
    padding: 8px;
    margin-bottom: 6px;
}

.stat .num {
    font-size: 13px;
    font-weight: 700;
}

.stat .lbl {
    font-size: 7px;
    color: var(--ink-3);
}

.staffrow {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    margin-bottom: 5px;
}

.staffrow .on {
    color: var(--brand);
}

.staffrow .off {
    color: var(--ink-3);
}



















/* =========================================
   UNIVERSAL SCROLL REVEAL ANIMATION
========================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* When section enters viewport */
.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* =========================================
   OPTIONAL: CHILD ELEMENT STAGGER
========================================= */
.scroll-reveal.reveal-stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.reveal-stagger.reveal-active>* {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger timing */
.scroll-reveal.reveal-stagger>*:nth-child(1) {
    transition-delay: 0.05s;
}

.scroll-reveal.reveal-stagger>*:nth-child(2) {
    transition-delay: 0.15s;
}

.scroll-reveal.reveal-stagger>*:nth-child(3) {
    transition-delay: 0.25s;
}

.scroll-reveal.reveal-stagger>*:nth-child(4) {
    transition-delay: 0.35s;
}

.scroll-reveal.reveal-stagger>*:nth-child(5) {
    transition-delay: 0.45s;
}

.scroll-reveal.reveal-stagger>*:nth-child(6) {
    transition-delay: 0.55s;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .scroll-reveal {
        transform: translateY(40px) scale(0.99);
    }

}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .scroll-reveal,
    .scroll-reveal.reveal-stagger>* {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
















/* OTP Modal */
.otp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(38, 38, 38, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 999;
}

.otp-overlay.active {
    opacity: 1;
    visibility: visible;
}

.otp-modal {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: var(--white);
    border-radius: 16px;
    padding: 2.25rem 1.75rem 1.75rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(38, 38, 38, 0.25);
    transform: translateY(10px);
    transition: transform 0.2s ease;
}

.otp-overlay.active .otp-modal {
    transform: translateY(0);
}

.otp-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-gray);
    opacity: 0.5;
    cursor: pointer;
}

.otp-close:hover {
    opacity: 0.9;
}

.otp-title {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--text-gray);
    margin: 0 0 0.5rem 0;
}

.otp-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    opacity: 0.75;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.otp-box {
    width: 44px;
    height: 54px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-gray);
    background: var(--bg-light);
    border: 1px solid var(--secondry-color);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.otp-box:focus {
    border-color: var(--primary-color);
    background: var(--white);
}

.otp-error {
    font-size: 0.85rem;
    color: #d64545;
    min-height: 1.1rem;
    margin: 0 0 0.5rem 0;
    display: none;
}

.otp-error.visible {
    display: block;
}

.otp-timer {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.25rem 0;
}

.otp-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    margin-top: 10px;
}

.otp-resend {
    display: block;
    width: 100%;
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.5;
    margin-top: 1rem;
    cursor: not-allowed;
}

.otp-resend:not(:disabled) {
    opacity: 1;
    cursor: pointer;
}

.otp-resend:not(:disabled):hover {
    text-decoration: underline;
}

/* Thank You page */

.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    text-align: center;
}

.thankyou-container {
    max-width: 480px;
}

.thankyou-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-title {
    font-weight: 600;
    font-size: 2.2rem;
    color: var(--text-gray);
    margin: 0 0 0.85rem 0;
}

.thankyou-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-gray);
    opacity: 0.75;
    margin: 0 0 0.75rem 0;
}

.thankyou-meta {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0 0 1.75rem 0;
}

@media (max-width: 400px) {
    .otp-inputs {
        gap: 0.2rem;
    }

    .otp-box {
        width: 36px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 6px;
    }
}