/* ==========================================
   1. GLOBAL RESET & THEME VARIABLES
   ========================================== */
:root {
    --wt-color-bg-main: #060814;
    --wt-color-bg-card: #0d1127;
    --wt-color-primary-blue: #3B82F6;
    --wt-color-primary-purple: #6366F1;
    --wt-color-text-main: #ffffff;
    --wt-color-text-muted: #94A3B8;
    --wt-font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --wa-bg-main: #04060f;
    --wa-bg-card: #090d20;
    --wa-bg-card-hover: #0e1430;
    --wa-border-color: rgba(255, 255, 255, 0.08);
    --wa-border-active: rgba(99, 102, 241, 0.4);
    --wa-text-white: #ffffff;
    --wa-text-muted: #94a3b8;
    --wa-text-accent: #3b82f6;
    --wa-font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--wt-color-bg-main);
    color: var(--wt-color-text-main);
    font-family: var(--wt-font-family);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container Utilities */
.wt-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
}

.wt-container-fluid {
    width: 100%;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

@media (min-width: 768px) {
    .wt-container { padding: 0 24px; }
    .wt-container-fluid {
        padding-left: 4% !important;
        padding-right: 24px !important;
    }
}

@media (min-width: 1024px) {
    .wt-container-fluid {
        padding-left: 6% !important;
    }
}

/* ==========================================
   2. HERO SECTION STYLES (100% RESPONSIVE)
   ========================================== */
.wt-hero-wrapper {
    position: relative;
    background-color: var(--wt-color-bg-main);
    padding: 30px 0 50px;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 1024px) {
    .wt-hero-wrapper {
        background-image: url('images/banner-bg3.png');
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
        min-height: 88vh;
        display: flex;
        align-items: center;
        padding: 60px 0;
    }
}

.wt-hero-content-only {
    width: 100%;
    max-width: 1250px;
}

@media (min-width: 1024px) {
    .wt-hero-content-only {
        max-width: 700px;
    }
}

.wt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--wt-color-primary-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* ==========================================
   HERO TYPEWRITER - 2 LINE FIX
   ========================================== */

.wt-hero-title {
    font-size: clamp(2.8rem, 4.5vw, 3.6rem) !important;
    font-weight: 800;
    line-height: 1.15 !important;
    letter-spacing: -1px;
    margin: 0 0 16px 0;

    height: 2.3em !important;
    min-height: 2.3em !important;
    max-height: 2.3em !important;

    width: 100% !important;
    max-width: 850px !important;
    display: block !important;
    overflow: hidden !important;
    white-space: normal;
}

/* Typewriter text */
#wt-typewriter-normal,
#wt-typewriter-highlight {
    display: inline !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

/* Gradient */
.wt-hero-title-highlight {
    background: linear-gradient(135deg, #3B82F6 0%, #A855F7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Cursor */
#wt-typewriter-highlight::after {
    content: "|";
    display: inline-block;
    color: #3B82F6;
    margin-left: 3px;
    animation: wtBlink 0.8s infinite;
}

@keyframes wtBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Desktop */
@media (min-width: 1200px) {
    .wt-hero-title {
        max-width: 850px !important;
        font-size: 3.6rem !important;
    }
}

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .wt-hero-title {
        max-width: 760px !important;
        font-size: 3.2rem !important;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .wt-hero-title {
        max-width: 700px !important;
        font-size: 3rem !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .wt-hero-title {
        width: 100% !important;
        max-width: 100% !important;
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
        line-height: 1.18 !important;
        height: 2.36em !important;
        min-height: 3.36em !important;
        max-height: 2.36em !important;
        overflow: hidden !important;
    }
}

.wt-hero-desc {
    color: var(--wt-color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 520px;
}

@media (min-width: 768px) {
    .wt-hero-desc {
        font-size: 1.05rem;
        margin-bottom: 34px;
    }
}

.wt-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.wt-hero-btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
    transition: all 0.3s ease;
}

.wt-hero-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.wt-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wt-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 420px) {
    .wt-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .wt-hero-btn-glow, .wt-hero-btn-outline {
        width: 100%;
    }
}

.wt-hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

@media (min-width: 640px) {
    .wt-hero-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.wt-hero-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wt-hero-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
    flex-shrink: 0;
}

.wt-hero-stat-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.wt-hero-stat-label {
    font-size: 0.7rem;
    color: var(--wt-color-text-muted);
    margin-top: 3px;
}

.wt-hero-mobile-image-card {
    display: block;
    width: 100%;
    margin-top: 35px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.25);
    background: linear-gradient(145deg, #0d1127 0%, #060814 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
}

.wt-hero-mobile-img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    object-position: right center;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .wt-hero-mobile-img {
        height: 380px;
    }
}

@media (min-width: 1024px) {
    .wt-hero-mobile-image-card {
        display: none;
    }
}

/* =========================================
   SERVICES THAT DRIVE RESULTS 
   ======================================== */
.wa-main-wrapper {
    width: 100%;
    background-color: var(--wa-bg-main);
    padding: 40px 0;
}

.wa-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 16px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .wa-container {
        padding: 0 24px;
    }
}

.wa-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.wa-section-subtitle {
    color: var(--wa-text-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.wa-section-title {
    color: var(--wa-text-white);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* SECTION 1: SERVICES THAT DRIVE RESULTS */
.wa-services-section {
    padding: 30px 0 50px;
}

.wa-services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 640px) {
    .wa-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .wa-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wa-service-card {
    background: var(--wa-bg-card);
    border: 1px solid var(--wa-border-color);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.wa-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--wa-border-active);
    background: var(--wa-bg-card-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.wa-service-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.wa-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-card-purple .wa-service-icon { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #ffffff; }
.wa-card-cyan .wa-service-icon { background: linear-gradient(135deg, #06b6d4, #3b82f6); color: #ffffff; }
.wa-card-pink .wa-service-icon { background: linear-gradient(135deg, #ec4899, #d946ef); color: #ffffff; }
.wa-card-amber .wa-service-icon { background: linear-gradient(135deg, #f59e0b, #eab308); color: #ffffff; }

.wa-service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wa-text-white);
}

.wa-service-desc {
    font-size: 0.85rem;
    color: var(--wa-text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.wa-service-list {
    list-style: none;
    margin-bottom: 24px;
}

.wa-service-list li {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-check {
    color: var(--wa-text-accent);
    font-weight: bold;
    font-size: 0.8rem;
}

.wa-service-link {
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.wa-card-purple .wa-service-link { color: #8b5cf6; }
.wa-card-cyan .wa-service-link { color: #06b6d4; }
.wa-card-pink .wa-service-link { color: #ec4899; }
.wa-card-amber .wa-service-link { color: #f59e0b; }

.wa-service-card:hover .wa-service-link {
    gap: 10px;
}

/* SECTION 2: PROCESS FLOW TIMELINE */
.wa-process-section {
    padding: 20px 0 50px;
}

.wa-process-container {
    background: var(--wa-bg-card);
    border: 1px solid var(--wa-border-color);
    border-radius: 16px;
    padding: 30px 20px;
}

.wa-process-header {
    text-align: center;
    margin-bottom: 30px;
}

.wa-process-header span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--wa-text-muted);
}

.wa-process-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 900px) {
    .wa-process-flow {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
    }
}

.wa-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.wa-process-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-picon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; border-color: rgba(59, 130, 246, 0.3); }
.wa-picon-cyan { background: rgba(6, 182, 212, 0.1); color: #06b6d4; border-color: rgba(6, 182, 212, 0.3); }
.wa-picon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; border-color: rgba(139, 92, 246, 0.3); }
.wa-picon-indigo { background: rgba(99, 102, 241, 0.1); color: #6366f1; border-color: rgba(99, 102, 241, 0.3); }
.wa-picon-magenta { background: rgba(217, 70, 239, 0.1); color: #d946ef; border-color: rgba(217, 70, 239, 0.3); }
.wa-picon-teal { background: rgba(20, 184, 166, 0.1); color: #14b8a6; border-color: rgba(20, 184, 166, 0.3); }

.wa-process-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wa-process-name {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--wa-text-white);
    margin-bottom: 4px;
}

.wa-process-desc {
    font-size: 0.75rem;
    color: var(--wa-text-muted);
    max-width: 130px;
    line-height: 1.3;
}

.wa-process-arrow {
    color: var(--wa-text-muted);
    font-size: 1.2rem;
    opacity: 0.4;
    padding-top: 8px;
}

@media (max-width: 899px) {
    .wa-process-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }
}

/* =========================================
   SECTION 3: FEATURED PROJECTS SHOWCASE 
   ======================================== */
.wa-projects-section {
    padding: 30px 0;
}

.wa-projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .wa-projects-grid {
        grid-template-columns: 280px 1fr;
        gap: 40px;
        align-items: start;
    }
}

.wa-projects-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wa-projects-desc {
    font-size: 0.95rem;
    color: var(--wa-text-muted);
    margin: 16px 0 28px;
    line-height: 1.6;
}

.wa-btn-projects {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--wa-border-color);
    color: var(--wa-text-white);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-btn-projects:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.wa-projects-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 640px) {
    .wa-projects-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .wa-projects-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wa-project-card {
    background: var(--wa-bg-card);
    border: 1px solid var(--wa-border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wa-project-card:hover {
    transform: translateY(-4px);
    border-color: var(--wa-border-active);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.wa-project-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.wa-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wa-project-card:hover .wa-project-img {
    transform: scale(1.05);
}

.wa-project-details {
    padding: 18px;
}

.wa-project-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--wa-text-white);
    margin-bottom: 2px;
}

.wa-project-category {
    font-size: 0.78rem;
    color: var(--wa-text-muted);
    margin-bottom: 16px;
}

.wa-project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wa-project-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.wa-tag {
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--wa-text-muted);
    font-weight: 500;
}

.wa-project-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wa-text-white);
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wa-project-card:hover .wa-project-btn {
    background: var(--wa-text-accent);
    border-color: var(--wa-text-accent);
}

/* ==========================================================
   SECTION 4: Trusted By Businesses - TESTIMONIALS STYLES 
   ========================================================= */
.wa-testi-section {
    padding: 60px 0 40px;
}

.wa-testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

@media (min-width: 992px) {
    .wa-testi-grid {
        grid-template-columns: 320px 1fr;
    }
}

.wa-testi-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wa-testi-header .wa-section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.25;
    margin-top: 6px;
    white-space: normal;
}

.wa-testi-slider-wrapper {
    width: 100%;
    min-width: 0;
    position: relative;
}

.wa-testi-swiper {
    padding-bottom: 50px !important;
    position: relative;
}

.wa-testi-card {
    background: #090d20;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
}

.wa-testi-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-3px);
}

.wa-testi-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.wa-testi-review {
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.wa-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.wa-testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.wa-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-testi-meta {
    display: flex;
    flex-direction: column;
}

.wa-testi-name {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.wa-testi-role {
    color: #94a3b8;
    font-size: 0.75rem;
    margin-top: 2px;
}

.wa-testi-pagination {
    position: absolute !important;
    bottom: 5px !important;
    left: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px;
    z-index: 10;
}

.wa-testi-pagination .swiper-pagination-bullet {
    background: #94a3b8;
    opacity: 0.4;
    width: 8px;
    height: 8px;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.wa-testi-pagination .swiper-pagination-bullet-active {
    background: #3b82f6;
    opacity: 1;
    width: 22px;
    border-radius: 10px;
}

/* =========================================
   SECTION 5: GRADIENT CTA BANNER STYLES 
   ========================================= */
.wa-cta-section {
    padding: 30px 0 50px;
}

.wa-cta-banner {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #1d4ed8 100%);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
}

@media (min-width: 768px) {
    .wa-cta-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 36px 48px;
    }
}

.wa-cta-content {
    max-width: 700px;
}

.wa-cta-title {
    color: #ffffff;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.wa-cta-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 500;
}

.wa-cta-action {
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .wa-cta-action {
        width: auto;
    }
}

.wa-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

@media (min-width: 768px) {
    .wa-cta-btn {
        width: auto;
    }
}

.wa-cta-btn:hover {
    background: #ffffff;
    color: #1d4ed8;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================
   COMPLETE SHOWCASE SECTION CSS
   ========================================================== */
.wt-showcase-section {
    background-color: #04060f;
    padding: 80px 20px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.wt-showcase-container {
    max-width: 1280px;
    margin: 0 auto;
}

.wt-showcase-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.wt-showcase-title span {
    background: linear-gradient(135deg, #3B82F6 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.wt-showcase-title span::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #A855F7);
    border-radius: 2px;
}

/* BOTTOM PROJECT CARDS (GRID & HOVER SCROLL) */
.wt-project-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .wt-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .wt-project-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wt-project-card {
    background: #090d1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.wt-project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
}

.wt-project-img-box {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    background: #050714;
}

.wt-project-img-box img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    transition: transform 2s ease-in-out !important;
    will-change: transform;
}

.wt-project-card:hover .wt-project-img-box img {
    transform: translateY(calc(-100% + 380px));
}

.wt-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 6, 15, 0.95) 0%, rgba(4, 6, 15, 0.2) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.wt-project-card:hover .wt-project-overlay {
    opacity: 1;
}

.wt-project-info h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.wt-project-info p {
    color: #a3e635;
    font-size: 0.8rem;
    font-weight: 600;
}

/* COUNTER & STATS BOARD */
.wt-stats-board {
    background: #090d1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .wt-stats-board {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wt-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wt-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4170f1;
    line-height: 1;
}

.wt-stat-label {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   SWIPER CARDS - 3D OVERLAP & Z-INDEX FIX
   ========================================== */
.wt-3d-swiper {
    width: 100%;
    padding: 40px 0 60px 0;
    overflow: hidden;
    position: relative;
	margin-bottom:50px;
}

.wt-3d-swiper .swiper-slide {
    width: 320px;
    max-width: 75vw; 
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    filter: blur(2px) opacity(0.6);
    transform: scale(0.85);
    z-index: 1;
}

.wt-3d-swiper .swiper-slide-active {
    filter: blur(0px) opacity(1);
    transform: scale(1.05) !important;
    z-index: 10 !important;
}

.wt-3d-swiper .swiper-slide-next,
.wt-3d-swiper .swiper-slide-prev {
    z-index: 5 !important;
}

.wt-glass-card {
    width: 100%;
    height: 180px;
    padding: 16px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.wt-glass-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    object-position: center;
    display: block;
    border-radius: 12px;
}

/* Consolidated Swiper Responsive Breakpoints */
@media (max-width: 1024px) {
    .wt-3d-swiper .swiper-slide {
        width: 360px !important;
    }
    .wt-glass-card {
        height: 210px;
    }
}

@media (max-width: 768px) {
    .wt-3d-swiper .swiper-slide {
        width: 260px !important;
    }
    .wt-glass-card {
        height: 140px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .wt-3d-swiper .swiper-slide {
        width: 220px !important;
    }
    .wt-glass-card {
        height: 120px;
        padding: 10px;
    }
}

/* ==================================
   WHY CHOOSE US SECTION STYLES 
   ================================== */
.wa-why-us-section {
    padding: 50px 0;
}

.wa-why-us-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 640px) {
    .wa-why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wa-why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wa-why-card {
    background: var(--wa-bg-card, #090d20);
    border: 1px solid var(--wa-border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 28px 22px;
    transition: all 0.3s ease;
}

.wa-why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: var(--wa-bg-card-hover, #0e1430);
}

.wa-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.wa-wicon-blue { background: rgba(59, 130, 246, 0.12); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); }
.wa-wicon-purple { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; border: 1px solid rgba(139, 92, 246, 0.3); }
.wa-wicon-cyan { background: rgba(6, 182, 212, 0.12); color: #06b6d4; border: 1px solid rgba(6, 182, 212, 0.3); }
.wa-wicon-lime { background: rgba(163, 230, 53, 0.12); color: #a3e635; border: 1px solid rgba(163, 230, 53, 0.3); }

.wa-why-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.wa-why-desc {
    font-size: 0.88rem;
    color: var(--wa-text-muted, #94a3b8);
    line-height: 1.5;
}

/* ==========================================================================
   CUSTOM FAQ & ACCORDION SECTION STYLES (Zero-Conflict Scoped: .wa-)
   ========================================================================== */
.wa-faq-custom-section {
    padding: 60px 0;
    position: relative;
    background: transparent;
}

.wa-faq-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

@media (min-width: 992px) {
    .wa-faq-layout-grid {
        grid-template-columns: 1.8fr 1fr;
        gap: 28px;
    }
}

.wa-faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wa-accordion-card {
    background: #090d20;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-accordion-card.wa-active {
    border-color: rgba(0, 180, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 180, 255, 0.1);
}

.wa-accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    outline: none;
    gap: 16px;
    font-family: inherit;
}

.wa-acc-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wa-acc-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 180, 255, 0.08);
    border: 1px solid rgba(0, 180, 255, 0.25);
    color: #00b4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-accordion-card.wa-active .wa-acc-icon-box {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    border-color: #00b4ff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 180, 255, 0.6);
}

.wa-acc-heading-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.wa-acc-arrow {
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wa-accordion-card.wa-active .wa-acc-arrow {
    transform: rotate(180deg);
    color: #00b4ff;
}

.wa-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 24px;
}

.wa-accordion-card.wa-active .wa-accordion-body {
    max-height: 1000px;
    padding: 0 24px 24px 24px;
}

.wa-acc-intro {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.wa-acc-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-acc-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 0.92rem;
    font-weight: 500;
}

.wa-check-icon {
    width: 20px;
    height: 20px;
    color: #00b4ff;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.25);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
}

.wa-acc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-acc-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 500;
}

/* RIGHT SIDEBAR CTA CARD */
.wa-faq-sidebar {
    position: sticky;
    top: 90px;
}

.wa-cta-card {
    background: #0d1127;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wa-cta-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.wa-cta-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.wa-cta-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.wa-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 180, 255, 0.3);
}

.wa-cta-btn:hover {
    background: #009ad9;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 180, 255, 0.4);
}

/* ================================
   TECH STACK SECTION STYLES
   ================================ */
.wa-tech-section {
    padding: 50px 0;
}

.wa-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .wa-tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .wa-tech-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.wa-tech-card {
    background: var(--wa-bg-card, #0d1127);
    border: 1px solid var(--wa-border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wa-tech-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.wa-tech-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.wa-tech-icon-box {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-tech-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wa-tech-card h4 {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
}

/* ==========================================
   NEED MORE HELP SECTION (UNIQUE GLASS DESIGN)
   ========================================== */
.nmh-help-section {
    padding: 90px 0;
    background: #0b0f24;
    color: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.nmh-help-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.15);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.nmh-help-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: rgba(0, 242, 254, 0.12);
    filter: blur(140px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.nmh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    margin-bottom: 90px;
}

.nmh-header {
    text-align: center;
    margin-bottom: 50px;
}

.nmh-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.nmh-header h2 span {
    background: linear-gradient(135deg, #3B82F6 0%, #00F2FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nmh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nmh-card {
    background: rgba(18, 24, 48, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.nmh-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nmh-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(59, 130, 246, 0.15);
}

.nmh-card:hover::before {
    opacity: 1;
}

.nmh-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(0, 242, 254, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #00F2FE;
}

.nmh-card-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.nmh-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.nmh-info-list li {
    margin-bottom: 8px;
}

.nmh-info-list a {
    color: #94A3B8;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-block;
}

.nmh-info-list a:hover {
    color: #60A5FA;
}

.nmh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0284C7 0%, #0D9488 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.nmh-btn:hover {
    background: linear-gradient(135deg, #0369A1 0%, #0F766E 100%);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

@media (max-width: 992px) {
    .nmh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .nmh-help-section {
        padding: 60px 0;
    }
    .nmh-header h2 {
        font-size: 1.9rem;
    }
    .nmh-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .nmh-card {
        padding: 28px 20px;
    }
}

/* ==========================================
   ABOUT US SECTION 
   ========================================== */
.wa-ab-section {
    background-color: var(--wa-bg-main, #04060f);
    position: relative;
    overflow: hidden;
}

.wa-ab-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.wa-ab-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .wa-ab-grid {
        grid-template-columns: 1.15fr 1fr;
        gap: 60px;
    }
}

.wa-ab-image-collage {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-ab-img-card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: var(--wa-bg-card, #090d20);
}

.wa-ab-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wa-ab-img-top-right {
    top: 10px;
    right: 0;
    width: 70%;
    height: 220px;
    border-radius: 20px;
    z-index: 1;
}

.wa-ab-img-bottom {
    bottom: 0;
    right: 35px;
    width: 68%;
    height: 270px;
    border-radius: 24px;
    z-index: 2;
}

.wa-ab-img-circle {
    top: 42%;
    left: 0;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 6px solid var(--wa-bg-main, #04060f);
    z-index: 3;
}

.wa-ab-circle-dot-wrapper {
    position: absolute;
    top: 42%;
    left: 140px;
    transform: translate(-50%, -50%);
    z-index: 4;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-ab-circle-dot {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #3B82F6 0%, #A855F7 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 65, 108, 0.5);
}

.wa-ab-circle-dot::before,
.wa-ab-circle-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 65, 108, 0.6);
    animation: wa-pulse-wave 2.5s infinite ease-out;
}

.wa-ab-circle-dot::after {
    animation-delay: 1.25s;
}

@keyframes wa-pulse-wave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .wa-ab-image-collage {
        min-height: 360px;
    }
    .wa-ab-img-circle {
        width: 190px;
        height: 190px;
    }
    .wa-ab-img-top-right {
        height: 150px;
        width: 75%;
    }
    .wa-ab-img-bottom {
        height: 190px;
        width: 75%;
        right: 10px;
    }
    .wa-ab-circle-dot-wrapper {
        left: 95px;
    }
    .wa-ab-circle-dot {
        width: 55px;
        height: 55px;
    }
}

.wa-ab-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    color: #3B82F6;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.wa-ab-heading {
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.wa-ab-heading span {
    background: linear-gradient(135deg, #3B82F6 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wa-ab-description {
    color: var(--wa-text-muted, #94a3b8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.wa-ab-body-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .wa-ab-body-grid {
        grid-template-columns: 1fr 140px;
    }
}

.wa-ab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-ab-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

.wa-ab-list-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #3B82F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.wa-ab-stat-card {
    background: var(--wa-bg-card, #090d20);
    border: 1px solid var(--wa-border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.wa-ab-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3B82F6, #6366F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}

.wa-ab-stat-label {
    color: var(--wa-text-muted, #94a3b8);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wa-ab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
    transition: all 0.3s ease;
}

.wa-ab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}