/* ========================================
   HOMEPAGE STYLES
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0a0a0a 100%);
    min-height: 100vh;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 246, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(76, 41, 181, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* .hero-text {
    max-width: 600px;
} */

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-shadow: 0 0 15px #00f6ff, 0 0 30px #8b5cf6, 0 0 40px #8b5cf6;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px #00f6ff, 0 0 30px #8b5cf6, 0 0 40px #8b5cf6;
    }
    to {
        text-shadow: 0 0 20px #00f6ff, 0 0 40px #8b5cf6, 0 0 60px #8b5cf6;
    }
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.highlight-label {
    background: linear-gradient(135deg, #00f6ff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    position: relative;
}

.highlight-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00f6ff 0%, #4C29B5 100%);
    opacity: 0.1;
    border-radius: 4px;
    z-index: -1;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 10px 18px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #00f6ff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 246, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-outline:hover {
    background: #00f6ff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 246, 255, 0.4);
}

.btn-outline:hover::before {
    left: 100%;
}

.hero-trust {
    margin-top: 2rem;
}

.trust-line {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-tagline {
    color: #00f6ff;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ========================================
   VIDEO CONTAINER
   ======================================== */

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.video-box {
    width: 530px;
    height: 320px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #00f6ff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 246, 255, 0.6);
}

.video-content {
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(76, 41, 181, 0.3) 100%);
}

.play-button {
    font-size: 3rem;
    color: #00f6ff;
    text-shadow: 0 0 20px #00f6ff;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.video-footer {
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.9rem;
    padding: 0 1rem;
    text-align: center;
    line-height: 1.4;
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* ========================================
   BUSINESS TYPES
   ======================================== */

/* .business-types {
    text-align: center;
}

.business-types-label {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.animated-text {
    height: 2rem;
    overflow: hidden;
    position: relative;
}

.text-word {
    display: block;
    height: 100%;
    animation: rotate 12s linear infinite 0s;
    padding: 0 0.5rem;
    color: #00f6ff;
    font-weight: 600;
    font-size: 1.1rem;
}

.text-word:nth-child(2) {
    animation-delay: 2.4s;
}

.text-word:nth-child(3) {
    animation-delay: 4.8s;
}

.text-word:nth-child(4) {
    animation-delay: 7.2s;
}

.text-word:nth-child(5) {
    animation-delay: 9.6s;
}

@keyframes rotate {
    0%, 20% {
        transform: translateY(0);
    }
    25%, 45% {
        transform: translateY(-2rem);
    }
    50%, 70% {
        transform: translateY(-4rem);
    }
    75%, 95% {
        transform: translateY(-6rem);
    }
    100% {
        transform: translateY(-8rem);
    }
} */

.business-types {
    text-align: center;
}

.business-types-label {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* This div acts as a viewport, hiding the overflow */
.animated-text-container {
    height: 2rem; /* This should be the height of a single text word */
    line-height: 2rem; /* Helps vertically align the text */
    overflow: hidden;
}

/* This list contains all the words and is the element we animate */
.animated-text-list {
    /* -- HOW TO ADD MORE WORDS --
      1. Add the new <span> in the HTML file.
      2. Update the --word-count value below to the new total number of UNIQUE words.
    */
    --word-count: 5;
    --word-height: 2rem;
    --time-per-word: 3s;

    /* The animation duration and steps are calculated automatically */
    animation: slide-up calc(var(--word-count) * var(--time-per-word)) steps(var(--word-count)) infinite;
}

.text-word {
    display: block;
    height: var(--word-height);
    padding: 0 0.5rem;
    color: #00f6ff;
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes slide-up {
    100% {
        /* This transform is also calculated automatically */
        transform: translateY(calc(var(--word-count) * var(--word-height) * -1));
    }
}




/* ========================================
    UPDATED HERO SECTION FEATURES & LABELS
   ======================================== */

/* Removing the old subtitle paragraph */
.hero-subtitle {
    display: none;
}

/* Container for the new subheading and labels */
.hero-features {
    margin: 1.5rem 0;
}

.hero-features-subtitle {
    font-size: 1.1rem;
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* DESKTOP VIEW: Flexbox for a single line */
.hero-labels-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem; /* Space between labels */
}

.feature-label {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E293B; /* Dark text for good contrast */
    transition: transform 0.2s ease;
}

.feature-label:hover {
    transform: translateY(-2px);
}

/* --- Different Bright Background Colors for Each Label --- */

.feature-label:nth-child(1) {
    background-color: #A7F3D0; /* Light Mint */
}
.feature-label:nth-child(2) {
    background-color: #BAE6FD; /* Light Blue */
}
.feature-label:nth-child(3) {
    background-color: #FBCFE8; /* Light Pink */
}
.feature-label:nth-child(4) {
    background-color: #FEF08A; /* Light Yellow */
}
.feature-label:nth-child(5) {
    background-color: #DDD6FE; /* Light Purple */
}
.feature-label:nth-child(6) {
    background-color: #FFDDB8; /* Light Orange */
}


/* === MOBILE RESPONSIVE STYLES === */
@media (max-width: 768px) {
    /* MOBILE VIEW: Grid for 3 labels per row */
    .hero-labels-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem; /* Smaller gap for mobile */
    }

    .feature-label {
        text-align: center; /* Center text inside labels */
        padding: 0.6rem 0.2rem; /* Adjust padding for grid */
        font-size: 0.8rem;
    }

    .hero-features-subtitle {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Smaller mobile screens */
     .hero-labels-container {
        grid-template-columns: repeat(2, 1fr); /* 2 labels per row for very small screens */
    }
}





/* ========================================
   PAIN SECTION
   ======================================== */

.pain-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0a0a0a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pain-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(76, 41, 181, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pain-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.pain-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.pain-section .section-subtitle {
    font-size: 1.25rem;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.pain-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.pain-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #ff0000;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pain-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.6), 0 20px 40px rgba(255, 0, 0, 0.3);
    border-color: #ff3333;
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.pain-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pain-subheading {
    font-size: 1.1rem;
    color: #CCCCCC;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 400;
}

.pain-note {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: noteGlow 2s ease-in-out infinite alternate;
}

@keyframes noteGlow {
    from {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
}

.pain-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.pain-hyperlink {
    display: inline-block;
    margin-top: 1.5rem;
    color: #00f6ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 246, 255, 0.5);
}

.pain-hyperlink:hover {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(0, 246, 255, 0.8);
    transform: translateX(5px);
}

/* ========================================
   FEATURES PREVIEW SECTION
   ======================================== */

.features-preview {
    padding: 5rem 0;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6C757D;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(76, 41, 181, 0.15);
    border-color: #4C29B5;
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6C757D;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

/* ========================================
   SUCCESS STORIES PREVIEW
   ======================================== */

.success-stories-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 41, 181, 0.15);
}

.story-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4C29B5;
    margin-bottom: 1rem;
}

.story-content p {
    color: #6C757D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.story-author {
    font-weight: 600;
    color: #2C3E50;
}

.story-role {
    font-size: 0.9rem;
    color: #6C757D;
}

.stories-cta {
    text-align: center;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4C29B5 0%, #6B3FD4 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.cta-actions .btn-outline:hover {
    background: #FFFFFF;
    color: #4C29B5;
}

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */

.breadcrumb-nav {
    background: #F8F9FA;
    border-bottom: 1px solid #E9ECEF;
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #6C757D;
    font-weight: 600;
}

.breadcrumb-item a {
    color: #4C29B5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #6B3FD4;
    text-decoration: underline;
}

.breadcrumb-item.active span {
    color: #6C757D;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .video-box {
        width: 350px;
        height: 220px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .pain-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .pain-section .section-title {
        font-size: 2.2rem;
    }
    
    /* Adjust container padding for tablets */
    .container {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .video-box {
        width: 300px;
        height: 180px;
    }
    
    .pain-section {
        padding: 3rem 0;
    }
    
    .pain-section .section-title {
        font-size: 2rem;
    }
    
    .pain-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .pain-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pain-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Adjust container padding for mobile */
    .container {
        padding: 0 3%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .video-box {
        width: 280px;
        height: 160px;
    }
    
    .pain-section .section-title {
        font-size: 1.75rem;
    }
    
    .pain-section .section-subtitle {
        font-size: 1rem;
    }
    
    .pain-card {
        padding: 1.25rem;
    }
    
    .pain-icon {
        font-size: 3rem;
    }
    
    .pain-heading {
        font-size: 1.3rem;
    }
    
    .pain-subheading {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .story-card {
        padding: 1.5rem;
    }
    
    .text-word {
        font-size: 1rem;
    }
    
    /* Adjust container padding for small mobile */
    .container {
        padding: 0 2%;
    }
}

/* ========================================
   SOLUTION SECTION
   ======================================== */

.solution-section {
    background: #FFFFFF;
    padding: 5rem 0;
}

.solution-header {
    text-align: center;
    margin-bottom: 3rem;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.solution-subtitle {
    font-size: 1.2rem;
    color: #6C757D;
    line-height: 1.7;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.solution-card {
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(76, 41, 181, 0.18);
    border-color: #DCDFF1;
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.solution-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.solution-text {
    color: #6C757D;
    line-height: 1.6;
}

.solution-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin: 1.25rem 0 2rem 0;
    color: #2C3E50;
    font-weight: 600;
}

.solution-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive: keep 2x2 cards on mobile as requested */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .solution-title {
        font-size: 2rem;
    }
    .solution-subtitle {
        font-size: 1.05rem;
    }
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .solution-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    .solution-heading {
        font-size: 1.1rem;
    }
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* ========================================
   PLANS SECTION (Dark)
   ======================================== */

.plans-section {
    background: #0b1220;
    background-image: radial-gradient(1200px 400px at 20% -10%, rgba(0, 246, 255, 0.08), transparent 60%),
                      radial-gradient(800px 300px at 90% 30%, rgba(76, 41, 181, 0.08), transparent 60%);
    color: #E9F1FF;
    padding: 5rem 0 4rem 0;
}

.plans-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plans-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #E9F1FF;
    margin-bottom: 0.5rem;
}

.plans-subtitle {
    color: #A8B3C7;
    margin-bottom: 1.5rem;
}

.plans-tabs {
    display: inline-flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px;
    backdrop-filter: blur(8px);
}

.plans-tab {
    appearance: none;
    border: none;
    background: transparent;
    color: #CFE4FF;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.plans-tab.active {
    background: linear-gradient(135deg, rgba(76, 41, 181, 0.35) 0%, rgba(0, 246, 255, 0.35) 100%);
    color: #fff;
}

.plans-views {
    margin-top: 1.5rem;
}

.plans-view { display: none; }
.plans-view.active { display: block; }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.plan-card {
    background: rgba(13, 20, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    padding: 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 246, 255, 0.25), rgba(76, 41, 181, 0.25));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 246, 255, 0.15), 0 10px 30px rgba(76, 41, 181, 0.15);
    border-color: rgba(0, 246, 255, 0.35);
}

.plan-badge {
    color: #CFE4FF;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.plan-badge .popular {
    background: #1f8b4c;
    color: #d9ffe8;
    border-radius: 999px;
    padding: 4px 10px;
    margin-left: 8px;
    font-size: 0.8rem;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.plan-features {
    list-style: none;
    margin: 0 0 0.75rem 0;
    padding: 0;
    color: #B9C6DA;
}

.plan-features li {
    margin: 0.45rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.plan-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #7FB6FF;
}

.plan-note {
    margin-top: 0.75rem;
    color: #E9F1FF;
    opacity: 0.95;
}

.plan-card.featured {
    background: rgba(18, 26, 44, 0.98);
    box-shadow: 0 20px 70px rgba(0, 255, 170, 0.08), 0 10px 30px rgba(0, 0, 0, 0.35);
}

.plans-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .plans-grid { grid-template-columns: 1fr; }
    .plans-tabs { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .plans-title { font-size: 2rem; }
    .plan-card { padding: 1.5rem; }
}


/* 
/* ========================================
    FESTIVE OFFER SECTION STYLES
    ======================================== */

    .festive-offer-section {
        padding: 5rem 0;
        background-color: #fff8e1; /* Warm cream background */
        background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cg fill-rule="evenodd"%3E%3Cg fill="%23ffc107" fill-opacity="0.1"%3E%3Cpath opacity=".5" d="M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z"/%3E%3Cpath d="M6 5V0h1v5h5v1H6v5H5V6H0V5h5z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
        border-top: 3px solid #FFC107;
        border-bottom: 3px solid #FFC107;
        position: relative;
        overflow: hidden;
    }
    
    .festive-offer-content {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    /* Left Side: Details */
    .festive-details-wrapper {
        background: #ffffff;
        padding: 2.5rem;
        border-radius: var(--border-radius-lg);
        border: 1px solid #FFD54F;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    
    .festive-title {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 0.75rem;
        color: #4A148C; /* Deep Purple */
        text-align: center;
    }
    
    .festive-subtitle {
        font-size: 1.2rem;
        color: #6a1b9a; /* Lighter Purple */
        text-align: center;
        margin-bottom: 2rem;
        font-weight: 500;
    }
    
    .festive-includes-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: 2rem;
        columns: 2;
        column-gap: 1.5rem;
    }
    
    .festive-includes-list li {
        font-size: 1rem;
        line-height: 1.8;
        color: #424242;
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 28px;
    }
    
    .festive-includes-list li::before {
        content: '✔';
        position: absolute;
        left: 0;
        top: 1px;
        color: #4CAF50; /* Festive Green */
        font-weight: 900;
        font-size: 1.1rem;
    }
    
    .festive-scarcity {
        background: #ffebee; /* Light Pink */
        border-left: 4px solid #e91e63; /* Magenta */
        border-radius: var(--border-radius-sm);
        padding: 0.75rem 1.25rem;
        font-weight: 600;
        color: #c2185b;
        text-align: center;
    }
    
    /* Right Side: Timer & CTA */
    .festive-timer-wrapper {
        text-align: center;
    }
    
    .festive-timer-heading {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #c2185b;
    }
    
    .festive-countdown-timer {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .festive-timer-unit {
        background: #ffffff;
        padding: 0.8rem 1rem;
        border-radius: var(--border-radius-md);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border: 1px solid #FFC107;
        min-width: 80px;
    }
    
    .festive-timer-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.1;
        color: #FF9933; /* Saffron */
    }
    
    .festive-timer-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #757575;
        letter-spacing: 1px;
    }
    
    .festive-quote {
        font-style: italic;
        font-size: 1.1rem;
        color: #4A148C;
        margin: 0 auto 2rem auto;
        max-width: 90%;
        position: relative;
        padding: 0.5rem 0;
    }
    
    .btn-festive {
        background: linear-gradient(135deg, #FF9933 0%, #E91E63 100%);
        color: #ffffff;
        border: none;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
        transition: all 0.3s ease;
    }
    
    .btn-festive:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 153, 51, 0.5);
    }
    
    .btn-festive.disabled {
        background: #BDBDBD; /* Grey out when disabled */
        cursor: not-allowed;
        box-shadow: none;
        transform: none;
    }
    
    .festive-expired-message {
        width: 100%;
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: #c2185b;
        padding: 1rem;
        background: #ffebee;
        border: 1px dashed #e91e63;
        border-radius: var(--border-radius-md);
    }


    /* ========================================
    GANESH CHATURTHI OFFER SECTION STYLES
    ======================================== */

 /* ========================================
    DIVINE GLOW GANESH CHATURTHI STYLES
    ======================================== */

.divine-offer-section {
    position: relative;
    padding: 5rem 0;
    background-color: #5D1227; /* Deep Maroon */
    overflow: hidden;
    color: #FFF8E1; /* Warm Cream */
}

.divine-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, #FFA857 0%, rgba(255, 168, 87, 0) 60%);
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

/* Header */
.divine-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.divine-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #FFD700, #FFA857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.divine-subtitle {
    font-size: 1.2rem;
    margin: 0.5rem 0 0;
    opacity: 0.9;
}

/* Central Mandala */
.divine-mandala-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divine-mandala-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.ibb.co/VMyhKws/mandala-bg.png') center/cover;
    animation: spin 60s linear infinite;
    opacity: 0.5;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.divine-ganesha-img {
    width: 80%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 25px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.offer-text-overlay {
    position: absolute;
    top: 20px;
    color: #fff;
    text-align: center;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.offer-text-overlay h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin:0;
}
.offer-text-overlay p {
    font-size: 2.2rem;
    font-weight: 700;
    margin:0;
    line-height: 1;
}

/* Countdown Timer */
.divine-timer-container {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}
.divine-timer-container h4 {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
    opacity: 0.8;
}
.divine-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.divine-timer-unit { text-align: center; }
.divine-timer-number {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    color: #FFD700;
}
.divine-timer-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Features Section */
.divine-features-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}
.divine-features-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.divine-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.divine-feature-card {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.divine-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(0,0,0,0.3);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.feature-card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}
.divine-feature-card p {
    margin: 0;
    font-weight: 500;
    color: #FFF8E1;
}

/* CTA */
.divine-cta-wrapper {
    text-align: center;
}
.divine-cta-button {
    background: linear-gradient(135deg, #FFD700, #FFA857);
    color: #5D1227;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}
.divine-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}
.divine-expired-message {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 600;
}


    /* ========================================
    GANESH CHATURTHI OFFER - FINAL (FLEXBOX REBUILD)
    ======================================== */

.g-offer-section {
    padding: 4rem 0;
    background-color: #FFFBF0;
    position: relative;
    overflow: hidden;
}

/* Header Styles */
.g-offer-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}
.g-title-wrapper { display: flex; align-items: center; gap: 1rem; }
.g-title-small { font-size: 1.2rem; font-weight: 600; color: #F9790E; letter-spacing: 2px; }
.g-title-large { font-size: 3rem; font-weight: 800; color: #8E240E; margin: 0; line-height: 1; }
.g-diya { font-size: 2.5rem; animation: g-diya-flicker 3s infinite; text-shadow: 0 0 5px #ffc107, 0 0 10px #ff9800, 0 0 20px #ff5722; }
@keyframes g-diya-flicker { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.9; transform: scale(1.02); } }
.g-garland { position: absolute; top: -30px; height: 200px; width: 40px; }
.g-garland.left { left: 10px; }
.g-garland.right { right: 10px; }
.g-garland-strand { width: 100%; height: 100%; background-image: url('data:image/png;base64,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'); background-repeat: repeat-y; background-size: contain; }

/* Main Content Layout - Using Flexbox for columns */
.g-offer-main-content {
    display: flex;
    gap: 1.5rem;
    align-items: stretch; /* Make columns equal height */
}
.g-offer-left-col {
    flex: 1 1 35%; /* Flex-grow, flex-shrink, flex-basis */
    display: flex; /* To make the child card fill the height */
}
.g-offer-right-col {
    flex: 1 1 65%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* Card Styles */
.g-card {
    width: 100%; /* Ensure cards fill their containers */
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border: 1px solid #FFEFE1;
    transition: all 0.3s ease;
}
.g-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 121, 14, 0.15);
    border-color: #F9790E;
}

/* Large Card */
.g-large-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(160deg, #FFFBF0 0%, #FFEFE1 100%);
}
.g-ganesha-image {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.2));
}
.g-large-card-content h3 { font-size: 1.5rem; color: #8E240E; margin: 0 0 1rem; }
.g-hot-trigger { background: #e91e63; color: white; padding: 0.5rem 1rem; border-radius: 20px; font-weight: 600; font-size: 0.9rem; animation: g-pulse-hot 2s infinite; }
@keyframes g-pulse-hot { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* Feature Cards */
.g-feature-card {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.g-feature-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.g-feature-card h5 { font-size: 0.95rem; color: #5f4d45; font-weight: 600; line-height: 1.3; margin: 0; }

/* Footer, Timer & Triggers */
.g-offer-footer { display: flex;  align-items: center; gap: 1.5rem; text-align: center; justify-content: center; margin-top: 30px; }
.g-hot-trigger { background: #e91e63; color: white; padding: 0.5rem 1rem; border-radius: 20px;     margin-top: 20px; font-weight: 600; font-size: 0.8rem; animation: g-pulse-hot 2s infinite; }
@keyframes g-pulse-hot { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.g-timer-container { display: flex; gap: 1rem; background: rgba(142, 36, 14, 0.1); 
    /* margin-top:20px ; */
    padding: 0.75rem 1rem; border-radius: 8px; }
.g-timer-unit { text-align: center; }
.g-timer-number { font-size: 1.8rem; font-weight: 700; color: #8E240E; line-height: 1; }
.g-timer-label { font-size: 0.7rem; text-transform: uppercase; color: #F9790E; }
.g-expired-message { color: #8E240E; font-size: 1.2rem; font-weight: 600; padding: 0.5rem; }
.g-cta-trigger { font-weight: 600; color: #8E240E; margin: 0 0 0.5rem; }
.g-disclaimer-trigger { font-size: 0.8rem; color: #a58e87; margin: 0.5rem 0 0; }
.g-cta-button { background: linear-gradient(135deg, #FF9933 0%, #E91E63 100%); color: #ffffff; border: none; font-weight: 700; box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4); transition: all 0.3s ease; }
.g-cta-button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(255, 153, 51, 0.5); }


/* ========================================
    TECHNOLOGIES & PLATFORMS SECTION
    ======================================== */

    .tech-section {
        padding: 4rem 0;
        background-color: #f8f9fa; /* Light grey background */
    }
    
    .tech-stack-wrapper {
        background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
        border-radius: 24px;
        padding: 1.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column; /* Stacks columns on mobile */
        gap: 1.5rem;
    }
    
    .tech-column {
        background-color: #FFFFFF;
        border: 1px solid #EFF3F7;
        border-radius: 16px;
        padding: 1.5rem;
    }
    
    .tech-column-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #059669; /* Teal/Green color */
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem; /* row-gap, column-gap */
        align-items: start;
    }
    
    .tech-item {
        text-align: center;
        transition: transform 0.2s ease-in-out;
    }
    
    .tech-item:hover {
        transform: translateY(-4px);
    }
    
    .tech-logo {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.75rem;
    }
    
    .tech-logo img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }
    
    .tech-name {
        font-size: 0.85rem;
        color: #64748b; /* Slate grey text */
        margin: 0;
    }
    
    /* Specific grid for the wider payment column */
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }
    .payment-grid .tech-logo {
        height: 35px; /* Smaller logos for payment gateways */
    }
    .payment-grid .tech-logo img {
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.2s ease-in-out;
    }
    .payment-grid .tech-item:hover .tech-logo img {
        filter: grayscale(0%);
        opacity: 1;
    }
    
    .tech-upcoming {
        text-align: center;
        margin-top: 2rem;
        margin-bottom: 0;
        color: #059669;
        font-weight: 500;
    }




    /* ========================================
    NICHE SLIDER SECTION STYLES
    ======================================== */

.niche-slider-section {
    padding: 4rem 0;
    background-color: #F8FAFC; /* Light, bright background */
}

.niche-slider-section .section-header {
    margin-bottom: 2.5rem;
}

/* Swiper and Card Styles */
.niche-swiper {
    padding-bottom: 3rem !important; /* Space for pagination */
}

.swiper-slide {
    height: auto; /* Allow slides to have natural height */
}

.niche-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
    padding: 1.5rem;
    height: 100%; /* Make card fill the slide height */
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.swiper-slide-active .niche-card {
    border-color: #8B5CF6;
    box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.1), 0 4px 6px -4px rgba(139, 92, 246, 0.1);
}

.niche-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.niche-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.niche-title-group h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}
.niche-title-group p {
    font-size: 0.9rem;
    color: #64748B;
    margin: 0;
}

.niche-card-divider {
    border: none;
    height: 1px;
    background-color: #E2E8F0;
    margin: 1rem 0;
}

.niche-card-body {
    flex-grow: 1; /* Pushes footer to the bottom */
}

.niche-card-section {
    margin-bottom: 1.25rem;
}
.niche-card-section:last-child {
    margin-bottom: 0;
}

.niche-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #5B21B6; /* Deep Purple */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.product-list p,
.market-text {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}
.product-list p .icon {
    margin-right: 0.25rem;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform-tags span {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}
.tag-pink { background-color: #FCE7F3; color: #DB2777; }
.tag-blue { background-color: #DBEAFE; color: #2563EB; }
.tag-green { background-color: #D1FAE5; color: #059669; }
.tag-orange { background-color: #FFEDD5; color: #EA580C; }
.tag-yellow { background-color: #FEF9C3; color: #CA8A04; }
.tag-red { background-color: #FEE2E2; color: #DC2626; }
.tag-purple { background-color: #EEDCFF; color: #8C52FF; }

.niche-card-footer {
    margin-top: auto; /* Pushes footer to bottom */
}

.launch-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
    margin-bottom: 1rem;
}

.niche-cta-button {
    width: 100%;
    background: linear-gradient(90deg, #8B5CF6, #6366F1);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}
.niche-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

/* Coming Soon / Disabled Styles */
.niche-card.is-disabled {
    opacity: 0.6;
    background-color: #F8FAFC;
}
.niche-cta-button.disabled {
    background: #94A3B8;
    cursor: not-allowed;
    pointer-events: none;
}
.niche-cta-button.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Swiper Pagination Styles */
.swiper-pagination-bullet {
    background-color: #CBD5E1;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: #8B5CF6;
}