/**
 * Lushanth Design System — Components Stylesheet
 * High-End Creative Agency UI Components
 */

/* ==========================================================================
   TYPOGRAPHY & SECTION HEADINGS
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--navy-800);
    line-height: 1.25;
    font-weight: 700;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.text-center {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(43, 77, 255, 0.15);
}

.section-badge.badge-white {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-cyan);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title.title-white {
    color: #FFFFFF;
}

.section-title .text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.7;
}

.section-desc.desc-white {
    color: #CED0DF;
}

.section-header.text-center .section-desc {
    margin: 0 auto;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #1a3de6);
    color: #FFFFFF;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b5cff, var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 77, 255, 0.45);
    color: #FFFFFF;
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--navy-800);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
    background: #FFFFFF;
    color: var(--navy-800);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13.5px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16.5px;
}

/* ==========================================================================
   HERO BANNER COMPONENT
   ========================================================================== */

.hero-section {
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
    padding: 200px 0 120px;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.35;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #FFFFFF !important;
}


.hero-desc {
    font-size: 19px;
    color: #CED0DF;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-media-wrapper {
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-image-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.floating-stat-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(4, 13, 67, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    animation: floatSlow 4s ease-in-out infinite alternate;
}

.stat-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-text strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
}

.stat-text span {
    font-size: 13px;
    color: var(--accent-cyan);
    font-weight: 500;
}

@keyframes floatSlow {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   HERO BANNER REDESIGN (DESK WORKSPACE & GLITTER SHINE)
   ========================================================================== */

.hero-banner-redesign {
    position: relative;
    background-color: #03081e;
    padding: 175px 0 60px;
    color: #FFFFFF;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
}

/* Dedicated background layer with native img to completely eliminate mobile scroll zoom */
.hero-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    pointer-events: none;
    z-index: 0;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
}

/* Ambient dark fade on the left to guarantee optimal readability while letting the tech setup on right shine */
.hero-banner-redesign::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(2, 6, 23, 0.96) 0%,
            rgba(2, 6, 23, 0.90) 35%,
            rgba(2, 6, 23, 0.55) 55%,
            rgba(2, 6, 23, 0.15) 75%,
            rgba(2, 6, 23, 0.0) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-banner-redesign::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 85% 85%, rgba(43, 77, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-banner-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 40px;
    align-items: center;
}

.hero-banner-content {
    max-width: 620px;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.eyebrow-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94A3B8;
    text-transform: uppercase;
    font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
}

.eyebrow-line {
    width: 38px;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF, transparent);
    border-radius: 2px;
    display: inline-block;
}

/* Main Title */
.hero-banner-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.14;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    color: #FFFFFF !important;
}

/* Glitter Animation Effect on "Tomorrow." */
.hero-glitter-wrapper {
    position: relative;
    display: inline-block;
}

.hero-glitter-text {
    display: inline-block;
    font-weight: 800;
    background: linear-gradient(110deg,
            #00D2FF 0%,
            #00F0FF 25%,
            #FFFFFF 46%,
            #FFFFFF 54%,
            #00F0FF 75%,
            #00D2FF 100%);
    background-size: 240% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.75)) drop-shadow(0 0 35px rgba(0, 229, 255, 0.35));
    animation: heroGlitterShine 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    will-change: background-position;
}

@keyframes heroGlitterShine {
    0% {
        background-position: 130% 0;
    }

    100% {
        background-position: -130% 0;
    }
}

/* Sparkling 4-point star glints */
.glitter-sparkle {
    position: absolute;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 0 6px #00F0FF, 0 0 14px #00F0FF, 0 0 25px rgba(255, 255, 255, 0.9);
}

.glitter-sparkle.sp-1 {
    top: -8px;
    right: 4px;
    animation: glitterTwinkle 2.4s ease-in-out infinite;
}

.glitter-sparkle.sp-2 {
    bottom: 6px;
    right: -20px;
    font-size: 10px;
    animation: glitterTwinkle 3s ease-in-out 0.9s infinite;
}

.glitter-sparkle.sp-3 {
    top: 10px;
    left: -14px;
    font-size: 11px;
    animation: glitterTwinkle 2.7s ease-in-out 1.5s infinite;
}

@keyframes glitterTwinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.2) rotate(0deg);
    }

    45%,
    55% {
        opacity: 1;
        transform: scale(1.25) rotate(90deg);
    }
}

/* Description */
.hero-banner-desc {
    font-size: 18px;
    color: #fffefd;
    margin-bottom: 32px;
    line-height: 1.68;
    max-width: 530px;
}

/* CTA Group */
.hero-banner-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-start {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2855FF 0%, #1738E6 100%);
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(40, 85, 255, 0.45);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
}

.btn-hero-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(40, 85, 255, 0.6);
    background: linear-gradient(135deg, #3864FF 0%, #2045F5 100%);
}

.btn-hero-start i {
    font-size: 17px;
    transition: transform 0.25s ease;
}

.btn-hero-start:hover i {
    transform: translateX(4px);
}

.btn-hero-story {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-hero-story:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

.btn-hero-story i {
    font-size: 20px;
    color: #FFFFFF;
    transition: transform 0.25s ease;
}

.btn-hero-story:hover i {
    transform: scale(1.15);
    color: #00E5FF;
}

/* 4 Metrics Strip */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.h-stat-icon {
    font-size: 24px;
    color: #00E5FF;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}

.h-stat-meta {
    display: flex;
    flex-direction: column;
}

.h-stat-val {
    font-size: 19px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -0.3px;
    font-family: var(--font-heading, 'Outfit', sans-serif);
}

.h-stat-lbl {
    font-size: 12px;
    font-weight: 500;
    color: #94A3B8;
    line-height: 1.2;
    margin-top: 2px;
}

/* Corporate Bar */
.hero-corporate-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.2px;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
}

.hero-bar-sep {
    color: rgba(255, 255, 255, 0.2);
}

/* Right Column: Interactive Overlay Badges */
.hero-banner-media {
    position: relative;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.hero-banner-media>* {
    pointer-events: auto;
}

/* Ideas into Impact card */
.hero-impact-card {
    align-self: flex-end;
    background: rgba(3, 10, 36, 0.7);
    border: 1px solid rgba(0, 229, 255, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(0, 229, 255, 0.12);
    animation: floatSlow 5s ease-in-out infinite alternate;
    max-width: 250px;
}

.impact-script {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #38BDF8;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
    transform: rotate(-3deg);
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.impact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 500;
    color: #E2E8F0;
}

.cyan-ring {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid #00E5FF;
    box-shadow: 0 0 8px #00E5FF;
    flex-shrink: 0;
}

/* Floating Pillars Badge */
.hero-floating-pill-badge {
    align-self: flex-end;
    background: rgba(4, 13, 48, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    margin-right: 15px;
}

.pill-dot {
    color: #00E5FF;
    font-size: 14px;
}

/* Cursive Tag */
.hero-script-tag {
    align-self: center;
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 0 14px rgba(0, 229, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    margin-top: 10px;
    transform: rotate(-2deg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-banner-title {
        font-size: 48px;
    }

    .hero-banner-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 25px;
    }

    .hero-stats-row {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-banner-redesign {
        height: 100svh;
        min-height: 100svh;
        padding: 110px 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-banner-bg {
        background-position: 75% center;
    }

    .hero-banner-redesign::before {
        background: linear-gradient(180deg,
            rgba(2, 6, 23, 0.92) 0%,
            rgba(2, 6, 23, 0.82) 45%,
            rgba(2, 6, 23, 0.94) 100%);
    }

    .hero-banner-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-banner-media {
        display: none;
    }

    .hero-banner-title {
        font-size: 38px;
        text-align: center;
    }

    .hero-banner-desc {
        color: #E2E8F0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-banner-cta {
        justify-content: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-corporate-bar {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-banner-redesign {
        height: 100svh;
        min-height: 100svh;
        padding: 80px 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-banner-img {
        object-position: 72% center;
    }

    .hero-banner-redesign::before {
        background: linear-gradient(180deg,
            rgba(2, 6, 23, 0.90) 0%,
            rgba(2, 6, 23, 0.76) 38%,
            rgba(2, 6, 23, 0.86) 72%,
            rgba(2, 6, 23, 0.96) 100%);
    }

    .hero-banner-container {
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
    }

    .hero-banner-content {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0 auto 10px;
        background: rgba(0, 229, 255, 0.08);
        border: 1px solid rgba(0, 229, 255, 0.28);
        border-radius: 20px;
        padding: 4px 14px;
    }

    .eyebrow-text {
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: #00E5FF;
        text-transform: uppercase;
    }

    .eyebrow-line {
        display: none;
    }

    .hero-banner-title {
        font-size: clamp(24px, 6.8vw, 29px);
        line-height: 1.16;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
        text-align: center;
        color: #FFFFFF !important;
    }

    .glitter-sparkle {
        display: none;
    }

    .hero-banner-desc {
        font-size: 13px;
        line-height: 1.5;
        margin: 0 auto 15px;
        max-width: 350px;
        color: #E2E8F0;
        text-align: center;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    }

    .hero-banner-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .btn-hero-start {
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 600;
        border-radius: 9px;
    }

    .btn-hero-story {
        padding: 9px 16px;
        font-size: 13px;
        font-weight: 600;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .btn-hero-story i {
        font-size: 16px;
    }

    .hero-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 10px;
        max-width: 380px;
        margin: 0 auto 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stat-col {
        background: rgba(3, 10, 36, 0.78);
        border: 1px solid rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 10px;
        padding: 8px 10px;
        display: flex;
        align-items: center;
        gap: 9px;
        text-align: left;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    }

    .h-stat-icon {
        font-size: 18px;
        color: #00E5FF;
        flex-shrink: 0;
    }

    .h-stat-val {
        font-size: 14.5px;
        font-weight: 800;
        color: #FFFFFF;
        line-height: 1.15;
    }

    .h-stat-lbl {
        font-size: 10px;
        color: #94A3B8;
        line-height: 1.2;
    }

    .hero-corporate-bar {
        justify-content: center;
        text-align: center;
        margin-top: 0;
        font-size: 9px;
        letter-spacing: 1.4px;
        color: rgba(255, 255, 255, 0.4);
    }
}

@media (max-width: 380px) {
    .hero-banner-title {
        font-size: 23px;
    }

    .hero-banner-desc {
        font-size: 12px;
        max-width: 300px;
    }

    .hero-stats-row {
        gap: 6px;
    }

    .hero-stat-col {
        padding: 6px 8px;
        gap: 7px;
    }

    .h-stat-val {
        font-size: 13px;
    }

    .btn-hero-start,
    .btn-hero-story {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ==========================================================================
   FLAGSHIP PRODUCTS SHOWCASE (PRO LEVEL CREATIVE DESIGN)
   ========================================================================== */

.products-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(43, 77, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
    position: relative;
}

.products-section .container {
    max-width: 1760px;
}

.product-pricing-header {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.pro-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 1200px) and (min-width: 769px) {
    .pro-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

.pro-product-card {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid var(--border-light);
    box-shadow: 0 16px 46px rgba(3, 8, 30, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.pro-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(43, 77, 255, 0.14);
    border-color: rgba(43, 77, 255, 0.35);
}

.pro-product-thumb {
    position: relative;
    height: 94px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(3, 8, 30, 0.94), rgba(43, 77, 255, 0.8)),
        var(--navy-950);
}

.pro-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.14;
    mix-blend-mode: screen;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-product-card:hover .pro-product-thumb img {
    transform: scale(1.08);
}

.pro-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 8, 30, 0.72), rgba(3, 8, 30, 0.16));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
}

.pro-badge-floating {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-product-icon-floating {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.pro-product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.pro-product-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    line-height: 1.18;
    flex-wrap: wrap;
}

.pro-product-desc {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.58;
    margin-bottom: 18px;
    min-height: 86px;
}

.pro-features-list {
    margin-bottom: 18px;
}

.pro-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.2px;
    color: var(--text-main);
    margin-bottom: 9px;
    line-height: 1.35;
}

.pro-features-list li i {
    color: #10B981;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pro-tech-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.pro-tag {
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 11.2px;
    font-weight: 600;
    padding: 8px 9px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    line-height: 1.25;
}

.pro-tag:first-child {
    grid-column: 1 / -1;
    background: #071047;
    color: #FFFFFF;
    border-color: #071047;
    font-size: 12px;
}

.pro-tag:first-child strong {
    font-size: 18px;
}

.pro-product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.pro-product-actions .btn {
    flex: 1 1 0;
    justify-content: center;
    min-height: 44px;
    padding: 11px 12px;
    font-size: 12.5px;
    white-space: nowrap;
}

.products-hub-page .products-section {
    padding: 90px 0 100px;
    background:
        linear-gradient(180deg, #f8fbff 0%, #ffffff 44%, #f3f7ff 100%);
}

.products-hub-page .products-section .container {
    width: min(96%, 1780px);
    max-width: 1780px;
}

.products-hub-page .product-pricing-header {
    margin-bottom: 34px;
}

.products-hub-page .pro-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.products-hub-page .pro-product-card {
    border-radius: 10px;
    border: 1px solid rgba(11, 22, 70, 0.12);
    box-shadow: 0 14px 35px rgba(10, 28, 74, 0.07);
    overflow: visible;
}

.products-hub-page .pro-product-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 10px 0 0 10px;
    background: linear-gradient(180deg, var(--primary), var(--accent-cyan));
}

.products-hub-page .pro-product-card:hover {
    transform: translateY(-4px);
}

.products-hub-page .pro-product-thumb {
    display: none;
}

.products-hub-page .pro-product-body {
    padding: 22px 20px 20px 24px;
}

.products-hub-page .pro-product-title {
    margin-bottom: 12px;
    min-height: 58px;
}

.products-hub-page .pro-product-title span {
    display: block;
    max-width: 100%;
}

.products-hub-page .pro-product-title small {
    border-radius: 6px !important;
    padding: 5px 8px !important;
    font-size: 11px !important;
}

.products-hub-page .pro-product-desc {
    min-height: 66px;
    margin-bottom: 14px;
    font-size: 13px;
}

.products-hub-page .pro-features-list {
    margin-bottom: 14px;
    min-height: 92px;
}

.products-hub-page .pro-features-list li {
    margin-bottom: 7px;
    font-size: 12.8px;
}

.products-hub-page .pro-tech-tags {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 16px;
    padding-top: 14px;
}

.products-hub-page .pro-tag {
    border-radius: 7px;
    padding: 8px 10px;
}

.products-hub-page .pro-tag:nth-child(n+3) {
    display: none;
}

.products-hub-page .pro-tag:first-child strong {
    display: block;
    margin-top: 2px;
    font-size: 22px;
}

.products-hub-page .pro-product-actions {
    gap: 8px;
}

.products-hub-page .pro-product-actions .btn {
    min-height: 42px;
    border-radius: 7px;
    padding: 10px 9px;
    font-size: 12px;
}

.products-hub-page .products-section {
    padding: 96px 0 104px;
    background:
        radial-gradient(circle at 18% 12%, rgba(43, 77, 255, 0.08), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(255, 61, 25, 0.07), transparent 26%),
        linear-gradient(180deg, #f7f9ff 0%, #ffffff 48%, #f4f7fb 100%);
}



.products-hub-page .pro-products-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.products-hub-page .pro-product-card {
    min-width: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
    overflow: visible;
}

.products-hub-page .pro-product-card:first-child {
    border-radius: 15px 0 0 15px;
}

.products-hub-page .pro-product-card:last-child {
    border-radius: 0 15px 15px 0;
}

.products-hub-page .pro-product-card::before {
    display: none;
}

.products-hub-page .pro-product-card.is-featured {
    z-index: 1;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 20px 58px rgba(43, 77, 255, 0.16);
    outline: 2px solid rgba(43, 77, 255, 0.42);
}

.products-hub-page .product-popular-badge {
    position: absolute;
    top: -17px;
    left: 14px;
    right: 14px;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), #06145a);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 12px 30px rgba(43, 77, 255, 0.22);
    text-align: center;
}

.products-hub-page .product-popular-badge i {
    font-size: 12px;
    color: #60a5fa;
    flex-shrink: 0;
}

.products-hub-page .product-popular-badge span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products-hub-page .pro-product-body {
    min-height: 100%;
    padding: 30px 24px 24px;
}

.products-hub-page .product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.product-logo-badge {
    height: 52px;
    width: auto;
    max-width: 135px;
    background: transparent;
    border: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow: visible;
    flex-shrink: 0;
    transition: var(--transition);
}

.product-logo-badge img {
    height: 52px;
    width: auto;
    max-width: 135px;
    object-fit: contain;
    object-position: left center;
    display: block;
    mix-blend-mode: multiply;
}

.pro-product-card:hover .product-logo-badge {
    transform: scale(1.04);
}

.product-icon {
    width: 48px;
    height: 46px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(11, 22, 70, 0.12);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    display: block;
}

.product-blue {
    background: linear-gradient(135deg, #2b4dff, #08165f);
}

.product-indigo {
    background: linear-gradient(135deg, #6366f1, #312e81);
}

.product-cyan {
    background: linear-gradient(135deg, #06b6d4, #155e75);
}

.product-emerald {
    background: linear-gradient(135deg, #10b981, #065f46);
}

.product-violet {
    background: linear-gradient(135deg, #8b5cf6, #4c1d95);
}

.product-category,
.products-hub-page .product-category {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 7px;
    background: #f3f6fb;
    color: #4b587c;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.1;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.products-hub-page .pro-product-title {
    display: block;
    min-height: auto;
    margin-bottom: 10px;
    color: #071047;
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: 0;
}

.products-hub-page .product-fit {
    min-height: 68px;
    margin: 0 0 22px;
    color: #5f6b85;
    font-size: 14px;
    line-height: 1.55;
}

.products-hub-page .product-price-row {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    margin-bottom: 22px;
    border-radius: 10px;
    background: linear-gradient(180deg, #071047 0%, #111d5e 100%);
    color: #ffffff;
}

.products-hub-page .product-price-label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.products-hub-page .product-price-row strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
}

.products-hub-page .product-price-row>span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 7px 9px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.products-hub-page .pro-features-list {
    min-height: 102px;
    margin-bottom: 20px;
}

.products-hub-page .pro-features-list li {
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    color: #1d2b4f;
    font-size: 13.5px;
}

.products-hub-page .pro-features-list li i {
    color: #0ea66a;
}

.products-hub-page .product-meta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: auto;
    margin-bottom: 20px;
}

.products-hub-page .product-meta-row span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 9px;
    border-radius: 7px;
    background: #f6f8fc;
    color: #405071;
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1.2;
}

.products-hub-page .product-meta-row i {
    color: var(--primary);
    font-size: 16px;
}

.products-hub-page .pro-product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

.products-hub-page .pro-product-actions .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 8px;
    font-size: 12.5px;
}

.products-hub-page .product-board-footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.products-hub-page .product-board-footer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(11, 22, 70, 0.1);
    color: #4b587c;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(11, 22, 70, 0.05);
}

.products-hub-page .product-board-footer i {
    color: var(--primary);
    font-size: 18px;
}

@media (max-width: 1400px) and (min-width: 992px) {
    .products-hub-page .pro-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .products-hub-page .pro-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
    }
}

@media (max-width: 768px) {
    .products-hub-page .products-section {
        padding: 72px 0 82px;
    }

    .products-hub-page .pro-products-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .products-hub-page .pro-product-card,
    .products-hub-page .pro-product-card:first-child,
    .products-hub-page .pro-product-card:nth-child(2),
    .products-hub-page .pro-product-card:nth-child(3),
    .products-hub-page .pro-product-card:last-child {
        border-radius: 12px;
        border: 1px solid rgba(11, 22, 70, 0.12);
        box-shadow: 0 16px 40px rgba(11, 22, 70, 0.08);
    }

    .products-hub-page .product-popular-badge {
        position: static;
        margin: 14px 14px 0;
    }

    .products-hub-page .pro-product-body {
        padding: 24px 18px 18px;
    }

    .products-hub-page .product-card-top {
        margin-bottom: 18px;
    }

    .products-hub-page .product-category {
        font-size: 10.5px;
        text-align: left;
    }

    .products-hub-page .pro-product-title {
        font-size: 24px;
    }

    .products-hub-page .product-fit,
    .products-hub-page .pro-features-list,
    .products-hub-page .product-price-row {
        min-height: 0;
    }

    .products-hub-page .product-price-row strong {
        font-size: 28px;
    }

    .products-hub-page .product-board-footer {
        justify-content: stretch;
    }

    .products-hub-page .product-board-footer span {
        width: 100%;
    }
}

@media (max-width: 420px) {

    .products-hub-page .product-card-top,
    .products-hub-page .product-meta-row {
        grid-template-columns: 1fr;
    }

    .products-hub-page .product-card-top {
        display: grid;
    }

    .products-hub-page .product-meta-row {
        display: grid;
    }

    .products-hub-page .pro-product-actions .btn {
        white-space: normal;
        text-align: center;
    }
}

/* ==========================================================================
   EXPLORE OUR RECENT PROJECTS (PORTFOLIO GALLERY)
   ========================================================================== */

.recent-projects-section {
    padding: 110px 0;
    background: #FFFFFF;
    position: relative;
}

.home-page .recent-projects-section {
    background: #FFFFFF;
}

.projects-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-showcase-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.project-image-wrapper {
    position: relative;
    height: 240px;
    background: var(--navy-950);
    overflow: hidden;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-showcase-card:hover .project-image-wrapper img {
    transform: scale(1.08);
}

.project-badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(3, 8, 30, 0.85);
    backdrop-filter: blur(8px);
    color: var(--accent-cyan);
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-content-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.project-client-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.project-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.project-summary-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-footer-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.project-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.project-link-btn i {
    transition: transform 0.2s ease;
}

.project-showcase-card:hover .project-link-btn i {
    transform: translateX(4px);
}


/* ==========================================================================
   SERVICES MATRIX COMPONENT
   ========================================================================== */

.services-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(43, 77, 255, 0.08), transparent 30%),
        radial-gradient(circle at 88% 88%, rgba(255, 90, 105, 0.06), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 14px 40px rgba(43, 77, 255, 0.12);
    transform: translateY(-5px);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #FFFFFF;
    transform: scale(1.08) rotate(3deg);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}

.service-link i {
    transition: transform 0.2s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   HOME COMPANY INTRO
   ========================================================================== */

.company-intro-section {
    position: relative;
    padding: 62px 0;
    background: #FFFFFF;
    color: var(--text-main);
    overflow: hidden;
}

.company-intro-section::before {
    display: none;
}

.company-intro-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
}

.company-intro-brand {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    padding: 20px;
}

.brand-circuit-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image:
        linear-gradient(to bottom, transparent 0%, #000000 16%, #000000 84%, transparent 100%),
        linear-gradient(to right, transparent 0%, #000000 16%, #000000 84%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to bottom, transparent 0%, #000000 16%, #000000 84%, transparent 100%),
        linear-gradient(to right, transparent 0%, #000000 16%, #000000 84%, transparent 100%);
    mask-composite: intersect;
}

/* Guaranteed 4-Side Feather Fade Overlay (Smoothly dissolves top, bottom, left & right into white) */
.brand-circuit-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, #FFFFFF 100%),
        linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, #FFFFFF 100%);
    pointer-events: none;
    z-index: 2;
}

.brand-circuit-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Base circuit tracks drop shadow for 3D depth */
.circuit-base-group path {
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.06));
}

/* Animated Glowing Flow Pulses in Authentic Logo Colors (Coral Red, Royal Blue & Dual Brand Flow) */
.circuit-pulses path {
    stroke-dasharray: 260 1100;
    will-change: stroke-dashoffset, opacity;
    opacity: 0;
}

.circuit-pulses .pulse-red {
    filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.95)) drop-shadow(0 0 28px rgba(255, 0, 0, 0.6));
}

.circuit-pulses .pulse-blue {
    filter: drop-shadow(0 0 14px rgba(36, 38, 93, 0.95)) drop-shadow(0 0 28px rgba(36, 38, 93, 0.65));
}

.circuit-pulses .pulse-brand {
    filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.85)) drop-shadow(0 0 28px rgba(36, 38, 93, 0.8));
}

.circuit-pulses .pulse-1 {
    animation: sequentialLinePass 17s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    animation-delay: 0s;
}

.circuit-pulses .pulse-2 {
    animation: sequentialLinePass 17s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    animation-delay: 3.4s;
}

.circuit-pulses .pulse-3 {
    animation: sequentialLinePass 17s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    animation-delay: 6.8s;
}

.circuit-pulses .pulse-4 {
    animation: sequentialLinePass 17s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    animation-delay: 10.2s;
}

.circuit-pulses .pulse-5 {
    animation: sequentialLinePass 17s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    animation-delay: 13.6s;
}

@keyframes sequentialLinePass {
    0% {
        stroke-dashoffset: 260;
        opacity: 0;
    }

    2% {
        opacity: 1;
    }

    18% {
        opacity: 1;
    }

    19.9% {
        stroke-dashoffset: -820;
        opacity: 0;
    }

    20%,
    100% {
        stroke-dashoffset: 260;
        opacity: 0;
    }
}

/* Layer 2: Outline fade only - no whitewashing blur */
.brand-circuit-tint {
    display: none;
}

/* Layer 3: Lushanth Pvt Ltd Logo Stage (Increased Prominence & Clarity) */
.company-logo-stage {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.company-logo-stage:hover {
    transform: scale(1.03) translateY(-3px);
}

.company-logo-stage img {
    width: min(100%, 420px);
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 16px rgba(255, 255, 255, 0.95)) drop-shadow(0 14px 28px rgba(10, 22, 94, 0.14));
}

.company-intro-content .badge-dark {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(43, 77, 255, 0.12);
}

.company-intro-title {
    max-width: 760px;
    margin: 0 0 22px;
    color: #0B132B;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.5px;
}

.company-intro-title span {
    display: block;
    color: #0B132B;
}

.company-intro-title .pro-shine-blue {
    display: inline-block !important;
}

.company-intro-copy {
    max-width: 800px;
}

.company-intro-copy p {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.68;
    font-weight: 500;
}

.company-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.company-intro-actions .btn-outline-white {
    border-color: rgba(43, 77, 255, 0.2);
    color: var(--primary);
    background: #FFFFFF;
}

@media (max-width: 1180px) {
    .company-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .company-intro-brand {
        min-height: 220px;
    }

    .company-intro-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .company-intro-section {
        padding: 52px 0;
    }

    .company-intro-brand {
        min-height: 170px;
        padding: 8px 18px;
        border-radius: 14px;
    }

    .company-intro-title {
        font-size: 36px;
    }

    .company-intro-copy p {
        font-size: 16px;
        line-height: 1.72;
    }

    .company-intro-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   METRICS & STATS COUNTER COMPONENT
   ========================================================================== */

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
    color: #FFFFFF;
    border-top: 1px solid rgba(43, 77, 255, 0.2);
    border-bottom: 1px solid rgba(43, 77, 255, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFFFFF, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 15px;
    color: #CED0DF;
    font-weight: 500;
}

/* ==========================================================================
   FAQ ACCORDION COMPONENT
   ========================================================================== */

.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-card.is-open {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-800);
}

.faq-toggle-icon {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-card.is-open .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.7;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.faq-card.is-open .faq-answer {
    display: block;
}

/* ==========================================================================
   CTA BANNER COMPONENT
   ========================================================================== */

/* ==========================================================================
   PRO-LEVEL HIGH-CONVERSION COMMAND CENTER CTA
   ========================================================================== */

.cta-banner-section {
    padding: 80px 0 90px;
    background: #FFFFFF;
    position: relative;
    width: 100%;
}

.cta-container {
    max-width: 1180px;
    width: calc(100% - 48px);
    margin: 0 auto;
}

.cta-card {
    position: relative;
    background:
        radial-gradient(circle at 88% 25%, rgba(0, 240, 255, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 12% 78%, rgba(43, 77, 255, 0.38) 0%, transparent 50%),
        linear-gradient(135deg, #02071E 0%, #061142 38%, #102A9C 72%, #2B4DFF 100%);
    border-radius: 28px;
    padding: 55px 65px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.35),
        0 24px 65px rgba(2, 7, 30, 0.35),
        0 0 45px rgba(43, 77, 255, 0.2);
    overflow: hidden;
}

/* Background Ambient Lighting & Grid */
.cta-card-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-pattern-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.7;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 45px;
    position: relative;
    z-index: 2;
}

.cta-content-col {
    text-align: left;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.28);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.cta-tag-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00F0FF;
    box-shadow: 0 0 8px #00F0FF;
    animation: pulseCtaTag 1.8s ease-in-out infinite;
}

@keyframes pulseCtaTag {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

/* ==========================================================================
   PRO SPECULAR SHINE UTILITIES
   ========================================================================== */

.pro-shine-cyan,
.cta-shining-name {
    display: inline-block;
    font-weight: inherit;
    letter-spacing: inherit;
    background: linear-gradient(110deg,
            #00E5FF 0%,
            #00E5FF 30%,
            #FFFFFF 48%,
            #FFFFFF 52%,
            #00E5FF 70%,
            #00E5FF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: proSpecularShine 4.5s linear infinite;
    will-change: background-position;
}

.pro-shine-blue {
    display: inline-block;
    font-weight: inherit;
    letter-spacing: inherit;
    background: linear-gradient(110deg,
            #2B4DFF 0%,
            #2B4DFF 30%,
            #00E5FF 46%,
            #FFFFFF 50%,
            #00E5FF 54%,
            #2B4DFF 70%,
            #2B4DFF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: proSpecularShine 4.5s linear infinite;
    will-change: background-position;
}

@keyframes proSpecularShine {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.cta-sub {
    font-size: 17.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 480px;
}

.cta-btn-wrap {
    display: flex;
    align-items: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #1537DC 100%) !important;
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: var(--radius-sm, 10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(43, 77, 255, 0.45), 0 0 18px rgba(0, 240, 255, 0.25);
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    cursor: pointer;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #3D62FF 0%, #1E42EE 100%) !important;
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(43, 77, 255, 0.65), 0 0 25px rgba(0, 240, 255, 0.4);
    color: #FFFFFF !important;
}

.cta-btn i {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.cta-btn:hover i {
    transform: translateX(4px);
}

.cta-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animated Circuit Pipeline behind CTA illustration */
.cta-circuit-bg {
    position: absolute;
    inset: -30px -25px;
    width: calc(100% + 50px);
    height: calc(100% + 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image:
        linear-gradient(to bottom, transparent 0%, #000000 16%, #000000 84%, transparent 100%),
        linear-gradient(to right, transparent 0%, #000000 16%, #000000 84%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to bottom, transparent 0%, #000000 16%, #000000 84%, transparent 100%),
        linear-gradient(to right, transparent 0%, #000000 16%, #000000 84%, transparent 100%);
    mask-composite: intersect;
}

.cta-circuit-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-circuit-pulses path {
    stroke-dasharray: 260 1100;
    filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.95)) drop-shadow(0 0 28px rgba(43, 77, 255, 0.6));
    will-change: stroke-dashoffset, opacity;
    opacity: 0;
}

.cta-circuit-pulses .cta-pulse-1 {
    animation: sequentialLinePass 17s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    animation-delay: 0s;
}

.cta-circuit-pulses .cta-pulse-2 {
    animation: sequentialLinePass 17s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    animation-delay: 3.4s;
}

.cta-circuit-pulses .cta-pulse-3 {
    animation: sequentialLinePass 17s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    animation-delay: 6.8s;
}

.cta-circuit-pulses .cta-pulse-4 {
    animation: sequentialLinePass 17s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    animation-delay: 10.2s;
}

.cta-circuit-pulses .cta-pulse-5 {
    animation: sequentialLinePass 17s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    animation-delay: 13.6s;
}

.cta-img-aura {
    position: absolute;
    width: 420px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, rgba(43, 77, 255, 0.12) 45%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 2;
}

.cta-img-box {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 500px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.cta-img-box img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent !important;
    filter: drop-shadow(0 16px 36px rgba(2, 6, 23, 0.55));
    animation: floatCtaIllustration 5s ease-in-out infinite;
}

@keyframes floatCtaIllustration {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 992px) {
    .cta-container {
        width: calc(100% - 40px);
    }

    .cta-card {
        padding: 45px 35px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .cta-content-col {
        text-align: center;
    }

    .cta-heading {
        font-size: 34px;
    }

    .cta-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-btn-wrap {
        justify-content: center;
    }

    .cta-img-box {
        max-width: 480px;
    }
}

@media (max-width: 576px) {
    .cta-banner-section {
        padding: 55px 0 65px;
    }

    .cta-container {
        width: calc(100% - 24px);
    }

    .cta-card {
        padding: 35px 22px;
        border-radius: 20px;
    }

    .cta-heading {
        font-size: 28px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   PAGE HERO / SUB-HEADER FOR INNER PAGES
   ========================================================================== */

.inner-page-hero {
    padding: 180px 0 80px;
    background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
    color: #FFFFFF;
    text-align: center;
    position: relative;
}

.inner-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.3;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 14px;
}

.breadcrumbs a {
    color: var(--accent-cyan);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   GOOGLE REVIEWS & TESTIMONIALS (CREATIVE PRO DESIGN)
   ========================================================================== */

.google-reviews-section {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.google-trust-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(3, 8, 30, 0.05);
    padding: 24px 36px;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.google-g-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-g-badge img,
.google-g-badge svg {
    width: 38px;
    height: 38px;
}

.google-score-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy-800);
    line-height: 1;
}

.google-stars-row {
    color: #F59E0B;
    font-size: 18px;
    display: flex;
    gap: 2px;
    margin: 4px 0;
}

.google-trust-subtext {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.google-review-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.google-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(43, 77, 255, 0.12);
    border-color: rgba(66, 133, 244, 0.4);
}

.google-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.google-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #E8F0FE;
    color: #1A73E8;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.google-mini-icon {
    width: 22px;
    height: 22px;
}

.google-card-stars {
    color: #F59E0B;
    font-size: 16px;
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.google-review-quote {
    font-size: 15px;
    line-height: 1.65;
    color: var(--navy-800);
    margin-bottom: 24px;
    flex: 1;
    position: relative;
}

.google-reviewer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 2px;
}

.reviewer-info p {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-section {
        padding: 130px 0 80px;
    }

    .inner-page-hero {
        padding: 120px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-image-card img {
        height: 380px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .pro-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid,
    .projects-gallery-grid,
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
    }

    .inner-page-hero {
        padding: 95px 0 45px;
    }

    .hero-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 30px;
    }

    .services-grid,
    .pro-products-grid,
    .projects-gallery-grid,
    .google-reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .google-trust-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* ==========================================================================
   ACHIEVEMENTS & ASIAN ACHIEVERS AWARD SECTION (LUSHANTH SIGNATURE RED THEME)
   ========================================================================== */

.achievements-section {
    padding: 55px 0;
    background: linear-gradient(135deg, var(--navy-950) 0%, #040c29 50%, var(--navy-900) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.14) 0%, rgba(43, 77, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.achievements-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 77, 255, 0.15) 0%, rgba(3, 8, 30, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column: Content & Founder Message */
.achievements-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.achievements-award-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.14);
    color: #FF5A69;
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(239, 68, 68, 0.35);
    align-self: flex-start;
}

.achievements-title {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.3px;
}

.achievements-desc {
    font-size: 14px;
    color: #CED0DF;
    line-height: 1.6;
    margin: 0;
}

.founder-quote-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #EF4444;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
    position: relative;
}

.founder-quote-box i.ri-double-quotes-l {
    font-size: 22px;
    color: #EF4444;
    opacity: 0.8;
    display: block;
    margin-bottom: 4px;
}

.founder-quote-text {
    font-size: 13.5px;
    color: #F1F5F9;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 12px;
}

.founder-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-avatar-icon,
.founder-avatar-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #EF4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    overflow: hidden;
    flex-shrink: 0;
    background: #03081E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Column: Visual Frame with Overlapping Images */
.achievements-visual-frame {
    position: relative;
    padding: 5px 5px 15px 18px;
}

.achievements-main-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(239, 68, 68, 0.25);
    border: 2px solid rgba(239, 68, 68, 0.45);
    background: #03081E;
    position: relative;
}

.achievements-main-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.achievements-main-img-wrap:hover img {
    transform: scale(1.02);
}

.achievements-badge-top {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 13px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.4);
    z-index: 2;
}

/* Small Award Trophy Image Overlaid on Left Corner of Right-Side Image */
.achievements-trophy-overlay {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 130px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 20px rgba(239, 68, 68, 0.35);
    border: 2px solid #EF4444;
    background: #090B13;
    z-index: 4;
    transition: transform 0.3s ease;
}

.achievements-trophy-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

.achievements-trophy-overlay:hover {
    transform: translateY(-4px) scale(1.04);
}

@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .achievements-main-img-wrap img {
        height: 300px;
    }

    .achievements-trophy-overlay {
        width: 110px;
        bottom: -8px;
    }
}

@media (max-width: 576px) {
    .achievements-trophy-overlay {
        width: 95px;
    }
}

/* ==========================================================================
   CLIENTS SHOWCASE SECTION
   ========================================================================== */

.clients-showcase-section {
    padding: 100px 0 115px;
    background: #FFFFFF;
    position: relative;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.text-center {
    text-align: center !important;
}

.clients-action-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 45px;
    text-align: center;
}

.clients-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.clients-text-link span {
    position: relative;
}

.clients-text-link span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.clients-text-link:hover span::after {
    width: 100%;
}

.clients-text-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

.clients-text-link i {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.clients-text-link:hover i {
    transform: translateX(4px);
}

.clients-marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 45px;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.clients-marquee-track {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.clients-marquee-inner {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    will-change: transform;
}

.marquee-row-1 .clients-marquee-inner {
    animation: marqueeScrollRight 36s linear infinite;
}

.marquee-row-2 .clients-marquee-inner {
    animation: marqueeScrollLeft 36s linear infinite;
}

@keyframes marqueeScrollLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes marqueeScrollRight {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.client-logo-item {
    flex-shrink: 0;
    width: auto;
    min-width: 170px;
    height: 70px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    cursor: pointer;
}

.client-logo-item img {
    max-width: 200px;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-item:hover img {
    transform: scale(1.12);
}

@media (max-width: 768px) {
    .clients-showcase-section {
        padding: 75px 0 85px;
    }

    .clients-marquee-container {
        gap: 16px;
        margin-top: 35px;
    }

    .client-logo-item {
        min-width: 140px;
        height: 54px;
        padding: 0 16px;
    }

    .client-logo-item img {
        max-width: 150px;
        max-height: 44px;
    }
}

/* ==========================================================================
   FLOATING VERTICAL SOCIAL SIDEBAR
   ========================================================================== */

.floating-social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 995;
    pointer-events: auto;
}

.floating-social-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(3, 8, 30, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(43, 77, 255, 0.28);
    border-right: none;
    border-radius: 16px 0 0 16px;
    padding: 16px 8px 18px;
    box-shadow: -6px 0 28px rgba(0, 0, 0, 0.45), 0 0 25px rgba(43, 77, 255, 0.18);
    gap: 13px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.floating-social-inner:hover {
    border-color: rgba(43, 77, 255, 0.55);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.55), 0 0 30px rgba(43, 77, 255, 0.3);
}

.social-side-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 16.5px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-side-link:hover {
    color: #FFFFFF;
    transform: translateX(-5px) scale(1.18);
}

.social-side-link.twitter:hover {
    background: #000000;
    color: #FFFFFF;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
}

.social-side-link.whatsapp:hover {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.55);
}

.social-side-link.linkedin:hover {
    background: #0A66C2;
    color: #FFFFFF;
    box-shadow: 0 0 16px rgba(10, 102, 194, 0.55);
}

.social-side-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #FFFFFF;
    box-shadow: 0 0 16px rgba(214, 36, 159, 0.55);
}

.social-side-link.facebook:hover {
    background: #1877F2;
    color: #FFFFFF;
    box-shadow: 0 0 16px rgba(24, 119, 242, 0.55);
}

.social-side-divider {
    width: 14px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    margin: 2px 0;
}

.social-side-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    user-select: none;
    padding-top: 4px;
}

@media (max-width: 991px) {
    .floating-social-sidebar {
        display: none !important;
    }
}

/* ==========================================================================
   4-Tier Product Pricing Table System
   ========================================================================== */
.pricing-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    margin-top: 40px;
}

@media (max-width: 1200px) and (min-width: 769px) {
    .pricing-tiers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-tiers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.pricing-tier-card {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(3, 8, 30, 0.05);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(43, 77, 255, 0.12);
    border-color: rgba(43, 77, 255, 0.3);
}

.pricing-tier-card.is-popular {
    border: 2px solid var(--primary);
    box-shadow: 0 16px 48px rgba(43, 77, 255, 0.16);
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    position: relative;
}

.pricing-tier-card.is-popular::before {
    content: "Recommended";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #08165f);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 16px;
    border-radius: 99px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(43, 77, 255, 0.3);
}

.tier-header {
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.tier-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.tier-desc {
    font-size: 13px;
    color: var(--text-muted);
    min-height: 38px;
    line-height: 1.45;
}

.tier-price-box {
    text-align: center;
    margin-bottom: 22px;
    padding: 16px 12px;
    background: #f8fafc;
    border-radius: 12px;
}

.pricing-tier-card.is-popular .tier-price-box {
    background: rgba(43, 77, 255, 0.05);
}

.tier-price-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.tier-price-amount {
    font-size: 30px;
    font-weight: 900;
    color: var(--navy-900);
    line-height: 1.1;
}

.tier-price-period {
    display: block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 6px;
}

.tier-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.tier-features-list li {
    font-size: 13.5px;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.tier-features-list li i {
    color: #10B981;
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.tier-actions {
    margin-top: auto;
}

.tier-actions .btn {
    width: 100%;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 16px;
}

/* ==========================================================================
   MOBILE RESPONSIVE SYSTEM (100% COVERAGE FOR ALL SECTIONS & PAGES)
   ========================================================================== */

/* 1. Product Detail Pages (Overview Hero & Demo Sections) */
.product-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.product-demo-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.product-showcase-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    position: relative;
    width: 100%;
}

.product-showcase-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-demo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-showcase-img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .product-showcase-img {
        height: 220px;
    }
}

/* 2. Contact Us Page Layout */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-inner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .contact-form-inner-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-form-card {
        padding: 24px 18px;
        border-radius: 16px;
    }
}

/* 3. Blog Featured Lead Article */
.blog-featured-card {
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.blog-featured-content {
    padding: 48px;
}

.blog-featured-img-wrap {
    height: 100%;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 32px 24px;
    }

    .blog-featured-img-wrap {
        min-height: 240px;
        height: 240px;
    }
}

@media (max-width: 576px) {
    .blog-featured-content {
        padding: 24px 18px;
    }

    .blog-featured-img-wrap {
        min-height: 200px;
        height: 200px;
    }
}

/* 4. About Us Page Client Logos Grid & Reviews Trust Card */
@media (max-width: 768px) {
    .about-clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
        gap: 28px 18px !important;
    }

    .about-client-logo-item {
        height: 64px !important;
    }

    .about-client-logo-item img {
        max-width: 130px !important;
        max-height: 56px !important;
    }

    .google-trust-card {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 16px;
        padding: 20px !important;
    }

    .google-trust-card>div:nth-child(2) {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid var(--border-light);
        padding-top: 12px;
        width: 100%;
    }

    .google-trust-card a.btn {
        margin-left: 0 !important;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .about-clients-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 12px !important;
    }

    .about-client-logo-item {
        height: 56px !important;
    }

    .about-client-logo-item img {
        max-width: 115px !important;
        max-height: 48px !important;
    }
}

/* Desktop Header Safeguard: Guarantee single-line nav links without multi-word breaking */
.nav-link {
    white-space: nowrap !important;
}

/* 5. Mobile Navbar Pill & Global Safeguards for ALL Phone Sizes */
@media (max-width: 991px) {
    .nav-card {
        padding: 8px 18px !important;
    }

    .nav-actions {
        gap: 12px !important;
    }

    .btn-primary-glow {
        padding: 8px 16px !important;
        font-size: 13.5px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 45px !important;
    }

    .inner-page-hero {
        padding: 76px 0 35px !important;
    }

    .section-badge {
        font-size: 11.5px !important;
        padding: 5px 12px !important;
        margin-bottom: 14px !important;
        letter-spacing: 0.5px !important;
    }

    .hero-title {
        font-size: 28px !important;
        line-height: 1.22 !important;
        margin-bottom: 14px !important;
    }

    .hero-desc {
        font-size: 14.5px !important;
        line-height: 1.6 !important;
        margin-bottom: 22px !important;
    }

    .main-navbar {
        padding: 10px 0 !important;
    }

    .nav-card {
        padding: 6px 12px !important;
        border-radius: var(--radius-sm) !important;
    }

    .brand-logo {
        flex-shrink: 0;
    }

    .brand-logo img {
        height: 28px !important;
        width: auto !important;
        max-width: 110px;
    }

    .nav-actions {
        gap: 8px !important;
        flex-shrink: 0;
    }

    .btn-search-trigger {
        padding: 5px !important;
        font-size: 18px !important;
    }

    .mobile-menu-btn {
        font-size: 24px !important;
        padding: 2px !important;
    }

    .btn-primary-glow {
        padding: 7px 12px !important;
        font-size: 12.5px !important;
        gap: 5px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .btn-primary-glow .btn-label-full {
        display: inline-block !important;
        white-space: nowrap !important;
    }

    .btn-primary-glow .btn-label-short {
        display: none !important;
    }
}

/* For screens 420px and below (iPhone 17/16, Pixel 8/9, Galaxy S26/S25, etc.) */
@media (max-width: 420px) {
    .nav-card {
        padding: 5px 10px !important;
    }

    .brand-logo img {
        height: 26px !important;
        max-width: 100px;
    }

    .nav-actions {
        gap: 6px !important;
    }

    .btn-primary-glow {
        padding: 6px 10px !important;
        font-size: 12px !important;
        gap: 4px !important;
        white-space: nowrap !important;
    }

    /* Switch to clean single-word 'Contact' to guarantee single line on compact phones */
    .btn-primary-glow .btn-label-full {
        display: none !important;
    }

    .btn-primary-glow .btn-label-short {
        display: inline-block !important;
        white-space: nowrap !important;
    }

    .hero-section {
        padding: 72px 0 38px !important;
    }

    .inner-page-hero {
        padding: 68px 0 30px !important;
    }
}

/* Ultra-compact screens (iPhone 5/5s, Galaxy Fold cover: 320px - 340px) */
@media (max-width: 340px) {
    .nav-card {
        padding: 4px 8px !important;
    }

    .brand-logo img {
        height: 23px !important;
        max-width: 85px;
    }

    .nav-actions {
        gap: 4px !important;
    }

    .btn-primary-glow {
        padding: 5px 8px !important;
        font-size: 11px !important;
    }

    .btn-primary-glow i {
        display: none !important;
    }
}

/* 6. About Us Company Overview & Mission Section */
.about-overview-section {
    padding: 90px 0;
    background: #FFFFFF;
}

.about-overview-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.about-overview-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    box-sizing: border-box;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-image-wrapper .hero-image-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

@media (max-width: 991px) {
    .about-overview-section {
        padding: 60px 0;
    }

    .about-overview-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 576px) {
    .about-overview-section {
        padding: 42px 0;
    }

    .about-overview-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-feature-box {
        padding: 16px;
    }
}

/* ==========================================================================
   CAREERS & JOB VACANCIES COMPONENT
   ========================================================================== */
.job-card-item {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.job-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08) !important;
}

.career-empty-state {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .job-card-item {
        padding: 22px 18px !important;
    }

    .career-apply-modal .modal-box {
        padding: 22px 16px !important;
    }
}

@media (max-width: 576px) {
    .career-empty-state {
        padding: 36px 18px !important;
    }

    .job-filter-btn {
        padding: 6px 14px !important;
        font-size: 13px !important;
    }
}

/* ==========================================================================
   Service-Specific 3-Tier Pricing System (Starter, Business, Enterprise)
   ========================================================================== */
.service-pricing-section {
    padding: 90px 0 100px;
    background: #F8FAFC;
    position: relative;
}

.service-pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin: 35px 0 45px;
}

.service-pricing-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 999px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(3, 8, 30, 0.05);
}

.service-pricing-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--navy-800);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.service-pricing-tab i {
    font-size: 16px;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.service-pricing-tab:hover {
    color: var(--primary);
    background: #F1F5F9;
}

.service-pricing-tab:hover i {
    color: var(--primary);
}

.service-pricing-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, #08165f 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(43, 77, 255, 0.35);
}

.service-pricing-tab.active i {
    color: #00F0FF;
}

.service-pricing-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-pricing-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-panel-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 35px auto;
}

.service-panel-intro h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.service-panel-intro p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.service-tier-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(3, 8, 30, 0.05);
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.service-tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(43, 77, 255, 0.12);
    border-color: rgba(43, 77, 255, 0.3);
}

.service-tier-card.is-popular {
    border: 2px solid var(--primary);
    box-shadow: 0 16px 50px rgba(43, 77, 255, 0.18);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
}

.service-tier-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #08165f);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 18px;
    border-radius: 99px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(43, 77, 255, 0.35);
}

.service-tier-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #F1F5F9;
}

.service-tier-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.service-tier-target {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
    min-height: 38px;
}

.service-tier-price-box {
    text-align: center;
    margin-bottom: 24px;
    padding: 18px 14px;
    background: #F8FAFC;
    border-radius: 14px;
    border: 1px solid #EEF2F6;
}

.service-tier-card.is-popular .service-tier-price-box {
    background: rgba(43, 77, 255, 0.05);
    border-color: rgba(43, 77, 255, 0.15);
}

.service-tier-price-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy-900);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.service-tier-usd {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}

.service-tier-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.service-tier-timeline {
    font-size: 11.5px;
    font-weight: 700;
    color: #334155;
    background: #E2E8F0;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-tier-card.is-popular .service-tier-timeline {
    background: rgba(43, 77, 255, 0.12);
    color: var(--primary);
}

.service-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.service-tier-features li {
    font-size: 13.5px;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.service-tier-features li i {
    color: #10B981;
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.service-tier-card.is-popular .service-tier-features li i {
    color: var(--primary);
}

.service-pricing-custom-box {
    margin-top: 50px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(3, 8, 30, 0.04);
}

@media (max-width: 991px) {
    .service-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .service-pricing-custom-box {
        flex-direction: column;
        text-align: center;
    }

    .service-pricing-tabs {
        border-radius: 20px;
    }

    .service-pricing-tab {
        width: 100%;
        justify-content: center;
    }
}