:root {
    --ch-color:     #25D366;
    --ch-color-dark:#128C7E;
    --ch-color-rgb: 37, 211, 102;
}

/* HERO */
.wcb-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ECFDF5;
}

.wcb-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 30%, rgba(52, 211, 153, 0.04) 0%, transparent 70%);
}

.wcb-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wcb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #059669;
    margin-bottom: 24px;
}

.wcb-badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: wcbPulse 2s infinite;
}

@keyframes wcbPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.wcb-hero-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.15;
    margin-bottom: 20px;
}

.wcb-hero-desc {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.wcb-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.wcb-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--ch-color), var(--ch-color-dark));
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(var(--ch-color-rgb), 0.3);
}

.wcb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--ch-color-rgb), 0.4);
    color: #fff;
}

.wcb-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #0a1628;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid rgba(10, 22, 40, 0.25);
    text-decoration: none;
    transition: all 0.3s;
}

.wcb-btn-secondary:hover {
    border-color: #10B981;
    color: #059669;
    background: rgba(16, 185, 129, 0.08);
}

.wcb-hero-stats {
    display: flex;
    gap: 40px;
}

.wcb-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wcb-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0a1628;
}

.wcb-stat-label {
    font-size: 13px;
    color: #5b6780;
}

/* Chatbot Visual */
.wcb-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcb-phone-mockup {
    perspective: 1000px;
}

.wcb-phone-frame {
    width: 300px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
    animation: wcbFloat 4s ease-in-out infinite;
}

@keyframes wcbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.wcb-phone-header {
    background: #075E54;
    padding: 16px;
}

.wcb-wa-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wcb-wa-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.wcb-wa-name {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.wcb-wa-status {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.wcb-phone-chat {
    background: #ECE5DD;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 300px;
}

.wcb-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.wcb-msg p {
    font-size: 12.5px;
    line-height: 1.4;
    margin: 0;
    color: #111;
}

.wcb-msg-time {
    font-size: 10px;
    color: #999;
    display: block;
    text-align: right;
    margin-top: 4px;
}

.wcb-msg-received {
    background: #fff;
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.wcb-msg-sent {
    background: #DCF8C6;
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.wcb-bot-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #10B981;
    font-weight: 600;
    margin-bottom: 4px;
}

.wcb-bot-indicator i {
    font-size: 11px;
}


/* ========================= WHY SECTION ========================= */
.wcb-why {
    padding: 100px 0;
    background: #fff;
}

.wcb-section-header {
    margin-bottom: 60px;
}

.wcb-mini-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #059669;
    background: rgba(16, 185, 129, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: wcbFloatBadge 3s ease-in-out infinite;
}

@keyframes wcbFloatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.wcb-section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 800;
    color: #071c3d;
    line-height: 1.15;
    margin-bottom: 18px;
}

.wcb-section-header p {
    font-size: 18px;
    color: #5b6780;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.wcb-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.wcb-benefit-card {
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s ease;
}

.wcb-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.wcb-benefit-num {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 8px;
}

.wcb-benefit-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 10px;
}

.wcb-benefit-card p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}


/* ========================= FEATURES ========================= */
.wcb-features {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #ecfdf5;
}

.wcb-features::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    filter: blur(90px);
    top: -100px;
    left: -80px;
    z-index: 0;
}

.wcb-features::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(52, 211, 153, 0.12);
    border-radius: 50%;
    filter: blur(90px);
    bottom: -100px;
    right: -80px;
    z-index: 0;
}

.wcb-features .container {
    position: relative;
    z-index: 2;
}

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

.wcb-feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 35px 28px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.wcb-feature-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: -70px;
    right: -70px;
    transition: 0.5s;
    z-index: -1;
    opacity: 0.85;
}

.wcb-feature-card:nth-child(1)::before { background: #15aaff; }
.wcb-feature-card:nth-child(2)::before { background: #fa494a; }
.wcb-feature-card:nth-child(3)::before { background: #fdc733; }
.wcb-feature-card:nth-child(4)::before { background: #25D366; }
.wcb-feature-card:nth-child(5)::before { background: #15aaff;}
.wcb-feature-card:nth-child(6)::before { background: #fa494a;}

.wcb-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.wcb-feature-card:hover::before {
    transform: scale(1.5);
}

.wcb-feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
    transition: 0.4s;
}

.wcb-feature-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.wcb-feature-card p {
    font-size: 15px;
    color: #5b6780;
    line-height: 1.7;
}


/* ========================= HOW IT WORKS ========================= */
.wcb-how {
    padding: 100px 0;
    background: #fff;
}

.wcb-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.wcb-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.wcb-step-num {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.wcb-step:nth-child(1) .wcb-step-num {
    background: linear-gradient(135deg, #10B981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wcb-step:nth-child(3) .wcb-step-num {
    background: linear-gradient(135deg, #15aaff, #0d8ecf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wcb-step:nth-child(5) .wcb-step-num {
    background: linear-gradient(135deg, #fdc733, #e5a800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wcb-step-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 10px;
}

.wcb-step-content p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.7;
}

.wcb-step-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #10B981, #059669);
    margin-top: 32px;
    border-radius: 3px;
    flex-shrink: 0;
}


/* ========================= USE CASES ========================= */
.wcb-usecases {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.wcb-usecases::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 50%;
    filter: blur(90px);
    top: 50px;
    right: -60px;
    z-index: 0;
}

.wcb-usecases .container {
    position: relative;
    z-index: 2;
}

.wcb-usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.wcb-usecase-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 35px 24px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.wcb-usecase-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: -90px;
    left: -70px;
    transition: 0.5s;
    z-index: -1;
    opacity: 0.8;
}

.wcb-usecase-card:nth-child(1)::before { background: #10B981; }
.wcb-usecase-card:nth-child(2)::before { background: #15aaff; }
.wcb-usecase-card:nth-child(3)::before { background: #fdc733; }
.wcb-usecase-card:nth-child(4)::before { background: #fa494a; }

.wcb-usecase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.wcb-usecase-card:hover::before {
    transform: scale(1.6);
}

.wcb-usecase-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.wcb-usecase-card:nth-child(1) .wcb-usecase-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.wcb-usecase-card:nth-child(2) .wcb-usecase-icon {
    background: rgba(21, 170, 255, 0.1);
    color: #15aaff;
}

.wcb-usecase-card:nth-child(3) .wcb-usecase-icon {
    background: rgba(253, 199, 51, 0.1);
    color: #d4a500;
}

.wcb-usecase-card:nth-child(4) .wcb-usecase-icon {
    background: rgba(250, 73, 74, 0.1);
    color: #fa494a;
}

.wcb-usecase-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.wcb-usecase-card p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}


/* ========================= CTA ========================= */
.wcb-cta {
    padding: 100px 0;
    background: #fff;
}

.wcb-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #065f46 100%);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.wcb-cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.wcb-cta-content {
    position: relative;
    z-index: 1;
}

.wcb-cta-content .wcb-mini-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.wcb-cta-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.wcb-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.wcb-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.wcb-cta-visual {
    position: relative;
    z-index: 1;
}

.wcb-cta-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.wcb-cta-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.wcb-dot-green {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    animation: wcbPulse 2s infinite;
}

.wcb-cta-card-top span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.wcb-cta-metrics {
    display: flex;
    gap: 32px;
}

.wcb-cta-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wcb-metric-num {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.wcb-metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}


/* ========================= RESPONSIVE ========================= */
@media (max-width: 991px) {
    .wcb-hero-inner {
        grid-template-columns: 1fr;
        padding: 120px 24px 60px;
    }

    .wcb-hero-visual {
        display: none;
    }

    .wcb-hero-content {
        text-align: center;
    }

    .wcb-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .wcb-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .wcb-hero-actions {
        justify-content: center;
    }

    .wcb-hero-stats {
        justify-content: center;
    }

    .wcb-benefits {
        grid-template-columns: 1fr;
    }

    .wcb-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcb-usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcb-cta-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .wcb-why {
        padding: 70px 0;
    }

    .wcb-features {
        padding: 70px 0;
    }

    .wcb-section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .wcb-hero-inner {
        padding: 100px 20px 40px;
    }

    .wcb-hero-content h1 {
        font-size: 30px;
    }

    .wcb-hero-desc {
        font-size: 15px;
    }

    .wcb-hero-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .wcb-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .wcb-features-grid {
        grid-template-columns: 1fr;
    }

    .wcb-usecase-grid {
        grid-template-columns: 1fr;
    }

    .wcb-steps {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .wcb-step-line {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }

    .wcb-step {
        padding: 0 12px;
    }

    .wcb-cta-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .wcb-why {
        padding: 50px 0;
    }

    .wcb-features {
        padding: 50px 0;
    }

    .wcb-section-header h2 {
        font-size: 26px;
    }

    .wcb-section-header p {
        font-size: 15px;
    }

    .wcb-cta-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .wcb-feature-card {
        padding: 24px;
    }

    .wcb-usecase-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .wcb-hero-inner {
        padding: 90px 16px 32px;
    }

    .wcb-hero-content h1 {
        font-size: 26px;
    }

    .wcb-hero-desc {
        font-size: 14px;
    }

    .wcb-hero-stats {
        gap: 12px;
    }

    .wcb-stat-num {
        font-size: 20px;
    }

    .wcb-stat-label {
        font-size: 11px;
    }

    .wcb-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .wcb-why {
        padding: 40px 0;
    }

    .wcb-features {
        padding: 40px 0;
    }

    .wcb-section-header h2 {
        font-size: 22px;
    }

    .wcb-section-header p {
        font-size: 14px;
    }

    .wcb-step-num {
        font-size: 36px;
    }

    .wcb-cta-wrapper {
        padding: 24px 16px;
    }

    .wcb-benefits {
        gap: 16px;
    }

    .wcb-features-grid {
        gap: 16px;
    }

    .wcb-usecase-grid {
        gap: 16px;
    }
}
