/* -------------------------------------------------------------------------- */
/* 1. CONFIGURATION                                                           */
/* -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --clr-primary: rgba(36, 190, 204, 1);
    --clr-navy: #061C1E;
    --clr-bg-light: #F8FFFE;
    --clr-bg-accent: #E6FAFC;
    --clr-teal-soft: #BEEBEF;
    --clr-white: #ffffff;
    --clr-text-main: #2D3748;
    --clr-text-muted: #4A5568;
    --clr-accent: #FF6B35;

    /* Typography */
    --font-base: 'Inter', sans-serif;

    /* Fluid type */
    --fs-h1: clamp(2rem, 5vw + 1rem, 4.5rem);
    --fs-h2: clamp(1.6rem, 3vw + 0.5rem, 2.75rem);
    --fs-h3: 1.25rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;

    /* Spacing */
    --section-py: clamp(60px, 8vw, 100px);
    --container: 1200px;
    --gap-grid: clamp(1.5rem, 3vw, 3rem);

    /* UI */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------------------- */
/* 2. RESET                                                                   */
/* -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: var(--fs-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* -------------------------------------------------------------------------- */
/* 3. TYPOGRAPHY                                                              */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-base);
    color: var(--clr-navy);
    font-weight: 700;
}

h1 { font-size: var(--fs-h1); line-height: 1.1; }
h2 { font-size: var(--fs-h2); line-height: 1.2; }
h3 { font-size: var(--fs-h3); }

/* -------------------------------------------------------------------------- */
/* 4. UTILITIES                                                               */
/* -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

.text-gradient {
    background: linear-gradient(90deg, #24BECC 0%, #3a757a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.text-body { font-size: var(--fs-body); color: var(--clr-text-muted); }
.highlight { color: var(--clr-accent); }
.text-center { text-align: center; }

/* -------------------------------------------------------------------------- */
/* 5. MOTION                                                                  */
/* -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: var(--transition);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero__media img {
    animation: float 6s ease-in-out infinite;
}

/* -------------------------------------------------------------------------- */
/* 6. BUTTONS                                                                 */
/* -------------------------------------------------------------------------- */
.btn {
    min-width: 120px; 
    padding: 14px 24px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-family: var(--font-base);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(36, 190, 204, 0.2);
}

.btn--gradient { background: linear-gradient(135deg, var(--clr-primary), var(--clr-navy)); color: #fff; }
.btn--gradient-fill { background: var(--clr-primary); color: #fff; }
.btn--pill { border: 2px solid var(--clr-primary); color: var(--clr-navy); background: transparent; }
.btn--white-fill { background: #fff; color: var(--clr-primary); }
.btn--pill-white { border: 2px solid #fff; color: #fff; background: transparent; }

.btn--full { 
    width: 100%; 
    display: block; 
    text-align: center; 
    box-sizing: border-box; 
}

@media (max-width: 480px) {
    .btn {
        min-width: 0 !important; 
        max-width: none !important; 
        width: fit-content !important; 
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        margin-inline: auto; 
    }
}

/* -------------------------------------------------------------------------- */
/* 7. CARDS (shared base)                                                     */
/* -------------------------------------------------------------------------- */
.service-card,
.plan-card,
.stat-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.service-card:hover,
.plan-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(36, 190, 204, 0.15);
    border-color: var(--clr-primary);
}

/* -------------------------------------------------------------------------- */
/* 8. HEADER                                                                  */
/* -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-banner {
    order: -1; 
    width: 100%;
    height: auto; 
    min-height: 40px; 
    display: block;
    margin: 0;
    padding: 0;
    object-fit: cover;
}

.site-header__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px;
}

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 10;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--clr-navy);
        height: 2px;
        width: 24px;
        position: relative;
        transition: 0.3s;
    }

    .nav-toggle-label span::before { content: ''; position: absolute; top: -8px; }
    .nav-toggle-label span::after  { content: ''; position: absolute; bottom: -8px; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    #nav-toggle:checked ~ .main-nav { display: flex; }
}

/* -------------------------------------------------------------------------- */
/* 9. HERO (DESKTOP/MD SIDE-BY-SIDE FIX)                                      */
/* -------------------------------------------------------------------------- */
.hero { 
    padding: 180px 0 0px !important; 
    background-size: cover; 
    background-position: center; 
    position: relative;
    z-index: 1;
    overflow: visible;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 0.8fr; 
    gap: 3rem;
    align-items: center;
    max-width: var(--container);
    margin-inline: auto;
}

.hero__content {
    text-align: left;
}

.hero__inner p, 
.hero__inner .text-body {
    margin-bottom: 40px !important; 
    max-width: 540px;
    line-height: 1.6;
}

.nav-action-group,
.hero__actions { 
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 48px !important; 
}

.hero__media {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-bottom: -2px;
}

.hero__media img {
    width: 100%; 
    max-width: 800px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

/* -------------------------------------------------------------------------- */
/* 9.1 RESPONSIVE ADJUSTMENTS (MD & MOBILE)                                   */
/* -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero__inner { gap: 2rem; }
}

@media (max-width: 900px) {
    .hero__inner { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }

    .hero__content { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
    }

    .hero__inner p, 
    .hero__inner .text-body { 
        margin-inline: auto; 
    }

    .hero__title {
        padding-inline: 15px; 
        line-height: 1.3; 
    }

    .hero__title br {
        display: none; 
    }

    .hero__media { 
        margin-top: 2rem !important; 
        padding: 0 15px;
    }

    .hero__media img {
        max-width: 100%;
        width: 85%; 
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.2rem; 
    }
    
    .nav-action-group,
    .hero__actions { 
        margin-top: 24px !important; 
        gap: 12px; 
    }

    .hero__media img {
        width: 95%; 
    }
}/* -------------------------------------------------------------------------- */
/* 10. STATS (BALANCED SPACING & CENTERED VIDEO)                             */
/* -------------------------------------------------------------------------- */
.stats {
    padding: 60px 0 !important; 
    margin-top: -60px !important;
    background: #fff;
    width: 100%;
    position: relative;
}

.stats__container {
    max-width: var(--container);
    margin: 0 auto;
    /* 2. Space at the left/right edges */
    padding-inline: 25px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem; /* Space between the video and the stats numbers below it */
}

.stats__video {
    width: 100%;
    height: 450px; 
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    background: #000;
    margin: 0 auto; 
}

.video-file, 
.stats__video iframe {
    width: 100%;
    height: 100%;
    /* 5. Fills the 450px box without leaving any white space inside */
    object-fit: cover; 
    display: block;
    border: none;
}

/* 6. Tighten the space for the "Our Services" title below */
.services {
    padding-top: 40px !important;
}

/* -------------------------------------------------------------------------- */
/* MOBILE ADJUSTMENT                                                          */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .stats {
        /* 1. Pull the section UP to overlap the Hero */
        margin-top: -4px !important; 
        padding-top: 0 !important; 
        
        /* 3. Keep some bottom padding for the space before Services */
        padding-bottom: 40px !important; 
        
        background: transparent; /* Allows it to blend into the Hero background */
        position: relative;
        z-index: 10;
    }

    .stats__video {
        /* 4. Keep your 300px height for mobile */
        height: 300px; 
        border-radius: 16px; /* Slightly smaller radius looks better on mobile */
        width: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .stats__container {
        /* 5. Space at the edges of the phone screen */
        padding-inline: 15px; 
        gap: 1.5rem; /* Tightened gap for mobile */
    }
}
/* -------------------------------------------------------------------------- */
/* 11. FEATURES                                                               */
/* -------------------------------------------------------------------------- */
.feature { padding: var(--section-py) 0; }

.feature__reveal {
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 40px; /*the new change from 120 to 40*/
    padding-bottom: 40px; /*the new change from 120 to 40*/
}

.feature__title {
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
    line-height: 1.2;
}

.section-header { margin-bottom: 0.9rem !important; }

.feature__content { top: 0; margin-top: 2px; }

.feature__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}



@media (min-width: 900px) {
    .feature__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .feature__reveal {
        background-size: 100% 100%; 
        padding-top: 180px; 
        padding-bottom: 180px; 
    }
}
/* -------------------------------------------------------------------------- */
/* 12. SERVICES (FULL CENTERING & TIGHT PC SPACING)                           */
/* -------------------------------------------------------------------------- */

.services { 
    padding: var(--section-py) 0; 
}

/* 1. Centering the Header & Description Text */
.services .section-header {
    text-align: center; 
    max-width: 850px; 
    margin-inline: auto; 
    margin-bottom: 4rem; 
}

.services .section-header h2 {
    margin-bottom: 1rem;
}

.services .section-header .text-body {
    text-align: center;
    margin-inline: auto;
    line-height: 1.7;
    color: var(--clr-text-muted);
}


.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 3rem 0.5rem; 
    text-align: center;
    max-width: 950px; 
    margin-inline: auto; 
}

.services .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 5px;
}

/* 3. The Service Circles & Stroke */
.service-card__media {
    width: 120px; 
    height: 120px;
    border-radius: 50%; 
    overflow: hidden; 
    margin-bottom: 1.25rem; 
    border: 3px solid var(--clr-primary); 
    padding: 0 !important; 
    background: transparent !important; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-card__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    display: block;
}

.services .service-card:hover .service-card__media {
    transform: scale(1.05);
}

.service-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-navy);
    line-height: 1.2;
    max-width: 180px; 
    margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/* MOBILE & TABLET FIX (2-COLUMN TIGHT)                                       */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 2.5rem 0.25rem !important; 
        max-width: 340px; 
        margin-inline: auto; 
    }

    .service-card__media {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }

    .service-card__title {
        font-size: 0.85rem;
        max-width: 140px; 
    }
}
/* -------------------------------------------------------------------------- */
/* 13. CLASSICAL DEMOS                                                        */
/* -------------------------------------------------------------------------- */
.classical-demos {
    padding: var(--section-py, 80px) 0;
    background: #f8f9fa;
    overflow: hidden;
}

.classical-demos .demos__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-grid, 2rem);
    align-items: center;
    width: 100%;
    max-width: 100vw; 
    overflow-x: hidden;
}


.demos__intro{
    display: flex;
    justify-items: center;
    align-items: center;

}


.demos__intro, 
.demos__content {
    min-width: 0; 
    max-width: 100%;
    width: 100%;
}

@media (min-width: 901px) {
    .classical-demos .demos__inner {
        grid-template-columns: repeat(12, 1fr);
        overflow-x: visible; 
    }
    .demos__intro  { grid-column: span 6; }
    .demos__content { grid-column: span 6; }
}

@media (min-width: 901px) and (max-width: 1024px) {
    .demos__intro  { grid-column: span 7; }
    .demos__content { grid-column: span 5; }
}

.demos__intro img {
    width: 70%;
    max-width: 400px; 
    height: auto;
    display: block;
    object-fit: contain; 
    border-radius: var(--radius-lg, 24px);
    margin-inline: auto;
  
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.1 6, 1, 0.3, 1);
}



.classical-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 540px) {
    .classical-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.classical-demos .header-left { max-width: 420px; }

.classical-demos .section-title {
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);
    margin-bottom: 0.25rem;
}

.classical-demos .header-right {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.classical-demos .nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(6, 28, 30, 0.1);
    background: #fff;
    color: var(--clr-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.classical-demos .nav-btn:hover {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

.carousel-track-wrap {
    width: 100%;
    overflow-x: auto; 
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; 
    padding-bottom: 20px;
    scrollbar-width: none; 
}

.carousel-track-wrap::-webkit-scrollbar { display: none; }

.carousel-track {
    display: flex;
    gap: 16px;
    padding: 0 10px; 
    transition: transform 0.5s ease;
    will-change: transform;
}

.classical-demos .card {
    flex: 0 0 100%; 
    scroll-snap-align: center; 
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 540px) {
    .classical-demos .card { 
        flex: 0 0 calc(50% - 8px); 
        scroll-snap-align: start; 
    }
}

.card-img-wrap {
    width: 100%;
    flex-grow: 1; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    background: #fafafa;
    overflow: hidden;
    padding: 10px; 
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 280px; 
    object-fit: contain; 
    display: block;
    transition: transform 0.3s ease;
}

.classical-demos .card:hover .card-img-wrap img { transform: scale(1.03); }

.card-footer {
    margin-top: auto;
    padding: 14px;
    display: flex;
    justify-content: center;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.demo-btn {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    background: var(--clr-primary);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.demo-btn:hover { opacity: 0.85; transform: scale(1.03); }

.progress {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.dot.active {
    background: var(--clr-primary);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 480px) {
    .classical-demos .nav-btn { width: 38px; height: 38px; font-size: 1rem; }
}

/* -------------------------------------------------------------------------- */
/* 14. PRICING                                                                */
/* -------------------------------------------------------------------------- */
.pricing {
    padding: var(--section-py) 0;
    background: var(--clr-bg-accent);
    overflow-x: hidden;
}

.pricing__grid {
    display: flex;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pricing__grid::-webkit-scrollbar{ display: none; }

@media (min-width: 600px)  { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { 
    .pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow-x: visible; padding: 0; }
    .plan-card { flex: none; width: 100%; } 
}
@media (min-width: 1280px) { .pricing__grid { grid-template-columns: repeat(4, 1fr); } }

.plan-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.plan-card--teal { background: var(--clr-teal-soft); }

.plan-card__price {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 600;
    margin: 1rem 0;
}

.plan-card__price span {
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 400;
    opacity: 0.7;
}

.plan-card__features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.plan-card__features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.7rem;
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.plan-card__features li::before {
    content: '•';
    color: var(--clr-primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .header-right, .progress { display: none; }
}

/* -------------------------------------------------------------------------- */
/* 15. INTEGRATIONS                                                           */
/* -------------------------------------------------------------------------- */
.integrations {
    padding: var(--section-py) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.integrations__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.logo-grayscale {
    height: 40px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-grayscale:hover { opacity: 1; }

.blob {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.blob--1 {
    left: -50px;
    top: 20%;
    width: 200px;
    height: 200px;
    background: rgba(36, 190, 204, 0.1);
    filter: blur(40px);
}

/* -------------------------------------------------------------------------- */
/* 16. CTA                                                                    */
/* -------------------------------------------------------------------------- */
.cta {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--clr-primary), var(--clr-navy));
    color: #fff;
    text-align: center;
}

.cta__title { color: #fff; margin-bottom: 1rem; }

.cta__text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 2rem;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* -------------------------------------------------------------------------- */
/* 17. FAQ                                                                    */
/* -------------------------------------------------------------------------- */
.faq { padding: var(--section-py) 0; background: #fff; }

.faq__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin-inline: auto;
}

@media (min-width: 768px) {
    .faq__list { grid-template-columns: 1fr 1fr; align-items: start; }
}

.faq__item {
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq__item[open] {
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-soft);
}

.faq__question {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: '+'; font-size: 1.5rem; color: var(--clr-primary); flex-shrink: 0; }
details[open] .faq__question::after { content: '−'; }

.faq__answer {
    margin-top: 1rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* 18. FOOTER                                                                 */
/* -------------------------------------------------------------------------- */
.site-footer {
    background: #1A1A2E;
    color: #fff;
    padding: 80px 0 20px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .site-footer__grid { grid-template-columns: 2fr 1fr 2fr; gap: 4rem; }
}

.site-footer__about p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.site-footer__links h3,
.site-footer__contact h3 { color: #f8f9fa; margin-bottom: 1rem; }

.site-footer__links ul li { margin-bottom: 0.5rem; }

.site-footer__links a {
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}

.site-footer__links a:hover { opacity: 1; color: var(--clr-primary); }

.site-footer__contact input,
.site-footer__contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-base);
    font-size: var(--fs-small);
    outline: none;
    transition: border-color 0.3s;
}

.site-footer__contact input:focus,
.site-footer__contact textarea:focus {
    border-color: var(--clr-primary);
}

.site-footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* -------------------------------------------------------------------------- */
/* 19. GLOBAL MOBILE CENTERING (ALL SECTIONS)                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    /* Center text in all main section headers and content blocks */
    .section-header, 
    .section-title, 
    .feature__content,
    .classical-header,
    .classical-demos .header-left,
    .pricing-header,
    .hero__content {
        text-align: center !important;
        margin-inline: auto !important;
        align-items: center !important;
    }

    /* Center paragraph text inside these containers */
    .section-header .text-body,
    .feature__content .text-body,
    .classical-demos .header-left .text-body,
    .hero__inner p,
    .hero__inner .text-body {
        text-align: center !important;
        margin-inline: auto !important;
    }

    /* Force flex containers to stack vertically and center items */
    .feature__content,
    .classical-header,
    .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Center buttons within these sections */
    .feature__content .btn,
    .classical-header .btn {
        margin-inline: auto;
    }
}


/* Center the headers for Pricing and FAQ on Desktop */
.pricing .section-header,
.faq .section-header {
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 3rem; /* Adds nice breathing room below the text */
}

/* -------------------------------------------------------------------------- */
/* 22. WHATSAPP FLOAT BUTTON                                                  */
/* -------------------------------------------------------------------------- */
.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 10000;
}

.whatsapp-float {
    position: static;
    width: 60px;
    height: 60px;
    bottom: unset;
    right: unset;
    background-color: #25D366; /* WhatsApp Green */
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.3);
    z-index: unset; /* Stays above your Hero image and Video */
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

/* The "Chat with Us" label */
.whatsapp-label {
    background-color: #25D366;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Only override the positioning — nothing else changes */
#open-chat {
    position: static !important;
    right: unset !important;
    bottom: unset !important;
}

/* Hover effect */
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
    color: #fff;
}

/* Pulse animation to catch the user's eye */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustment for small phones */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}