/* ==========================================================================
   RESET & SYSTEM VARIABLE ARCHITECTURE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #004D4D;
    --dark-blue: #004D4D;
    --light-bg: #fdfbfe;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --accent-gray: #f5f5f7;
    --star-gold: #ffb400;
    --transition-speed: 0.3s;
    --border-width: 2px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden; /* Hard restriction to prevent horizontal scroll bars entirely */
    line-height: 1.6;
    width: 100%;
}
/* ==========================================================================
   SPARC UNIQUE SPECIALITIES MODULE (INFINITE SINGLE ROW STREAM ENGINE)
   ========================================================================== */
.sparc-spec-section {
    padding: 60px 0;
    background-color: #fafafa;
    width: 100%;
    overflow: hidden; /* Global structural safety mask */
}

.sparc-spec-container {
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 32px; /* Standardized master container left & right layout lines */
    width: 100%;
}

.sparc-spec-title-block {
    text-align: center;
    margin-bottom: 45px;
}

.sparc-spec-pre {
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sparc-spec-heading {
    font-size: 28px;
    color: var(--text-dark, #1a1a1a);
    margin-top: 6px;
    font-weight: 700;
}

/* 
   THE HORIZONTAL CONTAINMENT LOCK MASK (AS PER image_4220bf.png)
   FIXED: Changed width from 100vw/left-breakouts to 100% and flipped 
   overflow to hidden. Cards now clip precisely on your 1400px alignment borders.
*/
.sparc-spec-carousel-wrapper {
    width: 100%;
    overflow: hidden; /* FIXED: Traps running cards from spilling out to monitor display edges */
    border-radius: 16px; /* Smooth corner mask to neatly hide cards coming into view */
    position: relative;
}

/* --- The Unidirectional Infinite Translation Flex Track --- */
.sparc-spec-grid {
    display: flex;
    flex-wrap: nowrap; /* Locked horizontal path across all viewports */
    gap: 20px; 
    width: max-content;
    padding: 20px 0;
    animation: sparcSpecCrawlLoop 35s linear infinite;
}

.sparc-spec-grid:hover {
    animation-play-state: paused; /* Freeze animation loop smoothly upon mouseover */
}

/* Unique Core Parallelogram Card Element */
.sparc-spec-card {
    background: #004D4D;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    text-decoration: none; 
    cursor: pointer;        
    transition: transform var(--transition-speed, 0.3s) ease, box-shadow var(--transition-speed, 0.3s) ease;
    
    flex: 0 0 264px; 
    width: 264px;
    padding-bottom: 0; 
    clip-path: polygon(30px 0%, 100% 0%, calc(100% - 30px) 100%, 0% 100%); 
}

.sparc-spec-card::after {
    content: '';
    position: absolute;
    top: var(--border-width, 2px);
    left: var(--border-width, 2px);
    right: var(--border-width, 2px);
    bottom: var(--border-width, 2px);
    background: var(--white, #ffffff);
    z-index: 1;
    clip-path: polygon(calc(30px - var(--border-width, 2px)) 0%, 100% 0%, calc(100% - (30px - var(--border-width, 2px))) 100%, 0% 100%);
    pointer-events: none;
}

.sparc-spec-card::before {
    content: '';
    position: absolute;
    top: var(--border-width, 2px);
    left: var(--border-width, 2px);
    bottom: var(--border-width, 2px);
    width: 35px;
    background: #004D4D;
    z-index: 2;
    clip-path: polygon(calc(30px - var(--border-width, 2px)) 0%, 35px 0%, 5px 100%, 0% 100%);
    pointer-events: none;
}

.sparc-spec-image-window {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
    z-index: 3;
    clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.sparc-spec-image-window img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed, 0.3s) ease;
}

.sparc-spec-text-box {
    padding: 30px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    position: relative;
    z-index: 4;
    min-height: 240px;
    background-color: #004D4D;
}

.sparc-spec-text-box h3 {
    margin: 0 auto 14px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
}

.sparc-spec-text-box p {
    margin: 0 auto;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    text-align: left;
    min-height: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
    word-break: break-word;
}

.sparc-spec-action-arrow {
    margin-top: auto;
    background: none;
    border: none;
    color: #ffffff; 
    font-size: 18px;
    font-weight: bold;
    transition: transform var(--transition-speed, 0.3s) ease;
    display: inline-block;
    line-height: 1;
}

/* Spec Card Hover Effects */
.sparc-spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(92, 29, 92, 0.16);
}
.sparc-spec-card:hover .sparc-spec-image-window img {
    transform: scale(1.05);
}
.sparc-spec-card:hover .sparc-spec-action-arrow {
    transform: translateX(5px); 
}

/* Perfect Loop Animation Matrix */
@keyframes sparcSpecCrawlLoop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-50% - 10px), 0, 0); } 
}
/* ==========================================================================
   SPARC UNIQUE WHY CHOOSE US MODULE (EXTENDED FULL IMAGE VARIATION)
   ========================================================================== */
.sparc-why-section {
    padding: 20px 0;
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.sparc-why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sparc-why-text-column {
    flex: 0 0 38%; /* Confines text side safely to let image capture more horizontal plane */
    max-width: 38%;
    padding-right: 20px;
}

.sparc-why-preheading {
    display: block;
    font-size: 13px; 
    font-weight: 700;
    color: var(--primary-purple, #004d4d); 
    letter-spacing: 1.5px; 
    text-transform: uppercase;
    margin-bottom: 6px;
}

.sparc-why-mainheading {
    font-size: 28px; 
    font-weight: 700;
    color: var(--primary-purple, #004d4d);
    margin-bottom: 25px;
    line-height: 1.3;
}

.sparc-why-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.sparc-why-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 14px; 
}

.sparc-why-icon-wrap {
    color: var(--primary-purple, #004d4d);
    font-size: 18px;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.sparc-why-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: #444444;
}

.sparc-why-btn {
    display: inline-flex;
    align-items: center;
    background-color: #004D4D;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px; 
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sparc-why-btn-arrow {
    margin-left: 10px;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.sparc-why-btn:hover {
    background-color: #004D4D;
    transform: translateY(-1px);
}

.sparc-why-btn:hover .sparc-why-btn-arrow {
    transform: translateX(4px);
}

.sparc-why-image-column {
    flex: 0 0 58%; 
    max-width: 58%;
    height: 440px; 
    position: relative;
    overflow: hidden;
    /* Keeps the clean sweeping curved mask frame scaling beautifully */
    border-radius: 450px 0 0 150px / 100% 0 0 45%; 
}

.sparc-why-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forces the photo to fill the layout shape without squeezing */
    object-position: center;
}

/* ==========================================================================
   SPARC UNIQUE PARTNERSHIP LOGO MODULE (UPDATED WITH PURPLE BACKDROP)[cite: 1]
   ========================================================================== */
.partnership-section { 
    padding: 60px 0;
    margin: auto;
    text-align: center;
    overflow: hidden; 
    position: relative;
    background-color: #004d4d;
}

.partnership-section h2 {
    font-size: 28px;
    color: #ffffff; 
    margin-bottom: 35px;
    font-weight: 700;
}

/* Scrolling track canvas window bounds[cite: 2] */
.scrolling-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Seamless infinite crawl block track layout[cite: 2] */
.partners {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px; 
    width: max-content; 
    animation: sparcPartnerCrawl 40s linear infinite; 
}

/* Individual partner background frame metrics[cite: 2] */
.partner {
    width: 200px;  
    height: 120px; 
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--white); 
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition-speed, 0.3s) ease;
}

/* Infinite loop animation matrix calculations[cite: 2] */
@keyframes sparcPartnerCrawl {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

.scrolling-wrapper:hover .partners {
    animation-play-state: paused;
}

.partner:hover {
    transform: scale(1.04);
}

/* Micro resource image allocations based on DOM child indexes[cite: 2] */
.partner:nth-child(5n+1) { background-image: url('/images/sparsh.png'); }
.partner:nth-child(5n+2) { background-image: url('/images/pinnacle.png'); }
.partner:nth-child(5n+3) { background-image: url('/images/citius.jpg'); }
.partner:nth-child(5n+4) { background-image: url('/images/icici.jpg'); }
.partner:nth-child(5n+5) { background-image: url('/images/seva.png'); }

/* ==========================================================================
   SPARC BRAND FAQs MODULE (FLUID COLUMN ARCHITECTURE)
   ========================================================================== */
.sparc-brand-faq-section {
    padding: 20px 0;
    background-color: transparent;
    width: 100%;
}

.sparc-faq-title-block {
    text-align: center;
    margin-bottom: 45px;
}

.sparc-faq-preheading {
    color: var(--primary-blue); 
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sparc-faq-main-title {
    font-size: 32px;
    color: var(--primary-blue);
    margin-top: 6px;
    font-weight: 700;
}

/* THE COLUMN FIX: Replaced grid structure with a row-free multi-column engine */
.sparc-faq-column-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    
    column-count: 2; /* Forces items into exactly 2 clean independent vertical columns */
    column-gap: 20px; /* Space between the left and right column lanes */
    width: 100%;
}

/* Crisp White Minimalist Accordion Cards */
.sparc-faq-item {
    background-color: #ffffff;
    border: 2px solid #eaeaea; 
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    margin-bottom: 16px; 
    
    break-inside: avoid; 
    display: inline-block; 
    width: 100%; 
    height: auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover State */
.sparc-faq-item:hover {
    transform: translateY(-1px);
    border-color: var(--primary-purple, #004D4D); 
    box-shadow: 0 6px 18px rgba(92, 29, 92, 0.06);
}

.sparc-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.sparc-faq-header h4 {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #000; 
    max-width: 90%;
    margin: 0;
}

.sparc-faq-toggle-icon {
    font-size: 14px;
    color: var(--primary-blue);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Dynamic CSS Slide Transition Wrapper Layout */
.sparc-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sparc-faq-body p {
    font-size: 13.5px;
    color: var(--text-dark, #1a1a1a);
    line-height: 1.6;
    padding: 14px 16px; 
    margin-top: 14px;
    border-radius: 8px;
    background-color: #faf6fa; 
    border-left: 3px solid var(--primary-blue);
}

/* Active Open Design Configuration Overrides */
.sparc-faq-item.open {
    border-color: var(--primary-blue); 
    box-shadow: 0 8px 22px rgba(92, 29, 92, 0.08);
}

.sparc-faq-item.open .sparc-faq-body {
    max-height: 300px; 
}

.sparc-faq-item.open .sparc-faq-toggle-icon {
    transform: rotate(45deg); 
    color: #ff5252; 
}

/* ==========================================================================
   SPARC UNIQUE TESTIMONIALS MODULE (INFINITE LOOP CAROUSEL ENGINE)
   ========================================================================== */
.sparc-testi-section {
    padding: 60px 0;
    background-color: #ffffff;
    width: 100%;
    overflow: hidden; 
}

.sparc-testi-container {
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 32px;  
    width: 100%;
}

.sparc-testi-title-block {
    text-align: center;
    margin-bottom: 50px;
}

.sparc-testi-preheading {
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sparc-testi-mainheading {
    font-size: 28px;
    color: var(--text-dark);
    margin-top: 6px;
    font-weight: 700;
}

.sparc-testi-carousel-wrapper {
    width: 100%;
    overflow: hidden; 
    border-radius: 16px; 
}

.sparc-testi-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px; 
    width: max-content;
    padding: 20px 0;
    animation: sparcInfiniteCrawlLoop 30s linear infinite;
}

.sparc-testi-grid:hover {
    animation-play-state: paused;
}

.sparc-testi-card {
    background: var(--primary-blue);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 40px rgba(92, 29, 92, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 0 0 380px;
    width: 380px;
}

.sparc-testi-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(92, 29, 92, 0.2);
}

.sparc-testi-quote-mark {
    font-size: 56px;
    font-family: serif;
    color: #ffffff;
    line-height: 1;
    height: 30px;
    opacity: 0.15;
    margin-bottom: 8px;
}

.sparc-testi-feedback {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.9); 
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.sparc-testi-user-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
}

.sparc-testi-user-meta h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff; 
    margin-bottom: 3px;
}

.sparc-testi-stars-row {
    color: #ffb400; 
    font-size: 11px;
    display: flex;
    gap: 2px;
}

@keyframes sparcInfiniteCrawlLoop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-50% - 15px), 0, 0); }
}

/* ==========================================================================
   SPARC HOME PAGE CALL TO ACTION MODULE
   ========================================================================== */
.sparc-home-cta-banner {
    width: 100%;
    padding: 30px 0;
    background-color: var(--white);
    overflow: hidden;
}

.sparc-home-cta-banner .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.sparc-home-cta-container.sparc-home-cta-no-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    background: var(--primary-blue);
    border-radius: 16px; 
    padding: 50px 45px;  
    box-shadow: 0 12px 40px rgba(92, 29, 92, 0.15);
}

.sparc-home-cta-text-group {
    max-width: 65%;
}

.sparc-home-cta-title {
    font-size: 32px; 
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.25;
}

.sparc-home-cta-description {
    font-size: 15.5px;
    color: #ffffff; 
    line-height: 1.55;
    font-weight: 400;
}

.sparc-home-cta-actions {
    flex-shrink: 0;
    margin-left: 30px;
}

.sparc-home-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.sparc-home-cta-arrow {
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.sparc-home-cta-button:hover {
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}

.sparc-home-cta-button:hover .sparc-home-cta-arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   UNIFIED RESPONSIVE GRID ENGINE & MEDIA BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .sparc-why-text-column {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 24px;
    }
    .sparc-why-image-column {
        flex: 0 0 50%;
        max-width: 50%;
        height: 380px;
    }
    .sparc-testi-container { padding: 0 24px; }
    .sparc-testi-card { flex: 0 0 320px; width: 320px; padding: 35px 24px; }
    
    /* Smooth fluid horizontal width scalers for intermediate viewports */
    .sparc-spec-card {
        flex: 0 0 240px;
        width: 240px;
    }
}

@media (max-width: 992px) {
    .sparc-faq-column-container {
        column-count: 1; /* Automatically merges down into a single elegant mobile column */
        gap: 12px;
    }
    .sparc-home-cta-container.sparc-home-cta-no-image {
        padding: 45px 35px;
    }
    .sparc-home-cta-title {
        font-size: 28px;
    }
}

@media (max-width: 850px) {
    .sparc-proc-timeline-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
        padding-left: 20px;
    }
    
    .sparc-proc-timeline-wrapper::before {
        top: 20px;
        bottom: 20px;
        left: 58px;
        width: 1px;
        height: auto;
    }
    
    .sparc-proc-timeline-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
    }
    
    .sparc-proc-icon-circle {
        margin-bottom: 0;
        flex-shrink: 0;
        z-index: 2;
    }
    
    .sparc-proc-timeline-item :nth-child(2) {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .sparc-proc-step-desc {
        max-width: 100%;
        text-align: left;
    }

    .sparc-why-container {
        flex-direction: column;
        gap: 40px;
    }
    .sparc-why-text-column, .sparc-why-image-column {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }
    .sparc-why-image-column {
        height: 320px;
        border-radius: 24px; 
    }
}

@media (max-width: 768px) {
    .sparc-spec-container, 
    .sparc-why-container, 
    .sparc-proc-container, 
    .sparc-home-cta-banner .container,
    .sparc-faq-column-container,
    .scrolling-wrapper,
    .sparc-testi-container {
        padding: 0 16px; /* Globally aligned structural padding boundaries across all viewports */
    }

    .sparc-home-cta-container.sparc-home-cta-no-image {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 40px 24px;
    }

    .sparc-home-cta-text-group { max-width: 100%; }
    .sparc-home-cta-title { font-size: 24px; }
    .sparc-home-cta-actions { margin-left: 0; width: 100%; }
    .sparc-home-cta-button { width: 100%; justify-content: center; }
    
    .sparc-testi-card {
        flex: 0 0 290px;
        width: 290px;
        padding: 30px 20px;
    }
    .sparc-testi-mainheading { font-size: 24px; }
    
    /* Tailored layout width specs for small tablet viewports */
    .sparc-spec-card {
        flex: 0 0 220px;
        width: 220px;
    }
}

@media (max-width: 600px) {
    /* Retain small layout constraints inside mobile partner tracks[cite: 2] */
    .partner {
        width: 150px; 
        height: 100px; 
    }
}

/* --- ULTRA-CLEAN HORIZONTAL MOBILE SCROLL TRIGGER MATCHING PARTNERS --- */
@media (max-width: 530px) {
    /* 
       FIXED: Stripped away "flex-direction: column" which was causing the 
       layout stacking degradation visible in image_4c09e7.png.
    */
    .sparc-spec-grid {
        flex-wrap: nowrap !important; /* Forces cards to stay perfectly inline */
        gap: 16px;
    }
    
    .sparc-spec-card {
        /* Scales card footprints proportionally into clean inline mobile blocks */
        flex: 0 0 210px !important;
        width: 210px !important;
        
        /* Retains premium geometric cuts without squeezing card elements */
        clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
    }

    .sparc-spec-card::after {
        clip-path: polygon(calc(20px - var(--border-width, 2px)) 0%, 100% 0%, calc(100% - (20px - var(--border-width, 2px))) 100%, 0% 100%);
    }

    .sparc-spec-card::before {
        width: 25px;
        clip-path: polygon(calc(20px - var(--border-width, 2px)) 0%, 25px 0%, 5px 100%, 0% 100%);
    }

    .sparc-spec-image-window {
        clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%);
        height: 120px;
    }

    .sparc-spec-text-box {
        padding: 20px 14px 16px 20px;
        min-height: 200px;
    }
    
    .sparc-spec-text-box h3 { 
        font-size: 13.5px; 
        min-height: 36px;
        margin-bottom: 8px;
    }
    .sparc-spec-text-box p { font-size: 12px; }
    
    /* FAQ Mobile Overrides */
    .sparc-faq-item { padding: 16px 20px; margin-bottom: 12px; }
    .sparc-faq-header h4 { font-size: 14px; }
}

@media (max-width: 440px) {
    .sparc-why-mainheading, .sparc-proc-mainheading, .sparc-testi-mainheading {
        font-size: 22px;
    }
    .sparc-why-image-column {
        height: 240px;
    }
}