/* ========================= WHATSAPP GREEN — PAGE-LEVEL OVERRIDES ========================= */
:root {
    --ch-color:     #25D366;
    --ch-color-dark:#128C7E;
    --ch-color-rgb: 37, 211, 102;
}

.btn-gradient:hover {
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.feature-card:hover {
    border-color: #25D366 !important;
}

.feature-icon {
    background: rgba(37, 211, 102, 0.1) !important;
    color: #128C7E !important;
}

.price-card.featured {
    border: 2px solid #25D366 !important;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.12) !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(37, 211, 102, 0.06) !important;
    color: #128C7E !important;
}

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

.ctwa-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(21, 170, 255, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 30%, rgba(37, 211, 102, 0.04) 0%, transparent 70%);
}

.ctwa-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;
}

.ctwa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #0e7a6e;
    margin-bottom: 24px;
}

.ctwa-badge-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: ctwaPulse 2s infinite;
}

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

.ctwa-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;
}

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

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

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

.ctwa-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.ctwa-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;
}

.ctwa-btn-secondary:hover {
    border-color: #0e7a6e;
    color: #0e7a6e;
    background: rgba(37, 211, 102, 0.08);
}

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

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

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

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

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

.ctwa-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}


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

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

.ctwa-mini-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #15aaff;
    background: rgba(21, 170, 255, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: ctwaFloatBadge 3s ease-in-out infinite;
}

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

.ctwa-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;
}

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

.ctwa-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 950px;
    margin: 0 auto;
}

.ctwa-compare-card {
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.ctwa-compare-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ctwa-compare-old {
    background: #fef2f2;
    border: 1px solid rgba(250, 73, 74, 0.2);
}

.ctwa-compare-new {
    background: #ecfdf5;
    border: 1px solid rgba(74, 211, 72, 0.2);
}

.ctwa-compare-label {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 28px;
}

.ctwa-compare-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.ctwa-flow-step {
    background: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ctwa-flow-weak {
    opacity: 0.5;
    border-style: dashed;
}

.ctwa-flow-highlight {
    background: rgba(74, 211, 72, 0.1);
    border-color: #4ad348;
    color: #065f46;
}

.ctwa-flow-arrow {
    color: #9ca3af;
    font-size: 16px;
}

.ctwa-compare-stat {
    margin-top: 12px;
}

.ctwa-stat-bad {
    font-size: 16px;
    font-weight: 700;
    color: #fa494a;
}

.ctwa-stat-good {
    font-size: 16px;
    font-weight: 700;
    color: #4ad348;
}


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

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

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

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

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

.ctwa-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);
}

.ctwa-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;
}

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

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

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

.ctwa-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;
}

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

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


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

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

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

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

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

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

.ctwa-step:nth-child(5) .ctwa-step-num {
    background: linear-gradient(135deg, #4ad348, #2fa82d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.ctwa-step-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #15aaff, #4ad348);
    margin-top: 32px;
    border-radius: 3px;
    flex-shrink: 0;
}


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

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

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

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

.ctwa-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);
}

.ctwa-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;
}

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

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

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

.ctwa-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;
}

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

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

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

.ctwa-usecase-card:nth-child(4) .ctwa-usecase-icon {
    background: rgba(74, 211, 72, 0.1);
    color: #4ad348;
}

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

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


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

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

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

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

.ctwa-cta-content .ctwa-mini-badge {
    background: rgba(37, 211, 102, 0.2);
    color: #86efac;
}

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

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

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

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

.ctwa-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);
}

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

.ctwa-dot-green {
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    animation: ctwaPulse 2s infinite;
}

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

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

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

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

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


/* ========================= RESPONSIVE ========================= */
@media (max-width: 991px) {
    .ctwa-hero-inner { grid-template-columns: 1fr; padding: 120px 24px 60px; }
    .ctwa-hero-visual { display: none; }
    .ctwa-hero-content { text-align: center; }
    .ctwa-hero-badge { margin-left: auto; margin-right: auto; }
    .ctwa-hero-desc { margin-left: auto; margin-right: auto; }
    .ctwa-hero-actions { justify-content: center; }
    .ctwa-hero-stats { justify-content: center; }
    .ctwa-comparison { grid-template-columns: 1fr; }
    .ctwa-features-grid { grid-template-columns: repeat(2, 1fr); }
    .ctwa-usecase-grid { grid-template-columns: repeat(2, 1fr); }
    .ctwa-cta-wrapper { grid-template-columns: 1fr; padding: 40px 28px; }
    .ctwa-why { padding: 70px 0; }
    .ctwa-features { padding: 70px 0; }
    .ctwa-section-header h2 { font-size: 30px; }
}
@media (max-width: 767px) {
    .ctwa-hero-inner { padding: 100px 20px 40px; }
    .ctwa-hero-content h1 { font-size: 30px; }
    .ctwa-hero-desc { font-size: 15px; }
    .ctwa-hero-badge { font-size: 12px; padding: 5px 12px; }
    .ctwa-hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .ctwa-features-grid { grid-template-columns: 1fr; }
    .ctwa-usecase-grid { grid-template-columns: 1fr; }
    .ctwa-steps { flex-direction: column; gap: 32px; align-items: center; }
    .ctwa-step-line { width: 2px; height: 40px; margin-top: 0; }
    .ctwa-step { padding: 0 12px; }
    .ctwa-cta-metrics { flex-direction: column; gap: 16px; }
    .ctwa-compare-flow { gap: 6px; }
    .ctwa-flow-step { font-size: 11px; padding: 6px 10px; }
    .ctwa-why { padding: 50px 0; }
    .ctwa-features { padding: 50px 0; }
    .ctwa-section-header h2 { font-size: 26px; }
    .ctwa-section-header p { font-size: 15px; }
    .ctwa-cta-wrapper { padding: 30px 20px; border-radius: 16px; }
    .ctwa-feature-card { padding: 24px; }
    .ctwa-usecase-card { padding: 24px; }
}
@media (max-width: 480px) {
    .ctwa-hero-inner { padding: 90px 16px 32px; }
    .ctwa-hero-content h1 { font-size: 26px; }
    .ctwa-hero-desc { font-size: 14px; }
    .ctwa-hero-stats { gap: 12px; }
    .ctwa-stat-num { font-size: 20px; }
    .ctwa-stat-label { font-size: 11px; }
    .ctwa-stat-icon { width: 34px; height: 34px; font-size: 15px; }
    .ctwa-why { padding: 40px 0; }
    .ctwa-features { padding: 40px 0; }
    .ctwa-section-header h2 { font-size: 22px; }
    .ctwa-section-header p { font-size: 14px; }
    .ctwa-step-num { font-size: 36px; }
    .ctwa-cta-wrapper { padding: 24px 16px; }
    .ctwa-comparison { gap: 16px; }
    .ctwa-features-grid { gap: 16px; }
    .ctwa-usecase-grid { gap: 16px; }
    .ctwa-flow-step { font-size: 10px; padding: 4px 8px; }
}


/* ========================= INDUSTRY USE-CASE TABS ========================= */


.ctwa-tab-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.12);
    color: #128C7E;
    border: 1px solid rgba(37, 211, 102, 0.28);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Tab Navigation */
.ctwa-industry-tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.ctwa-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.ctwa-tab-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ctwa-tab-btn:hover {
    border-color: #25D366;
    color: #128C7E;
}

.ctwa-tab-btn:hover .ctwa-tab-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #128C7E;
}

.ctwa-tab-btn.active {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.ctwa-tab-btn.active .ctwa-tab-icon {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

/* Tab Panel */
.ctwa-tab-content {
    margin-top: 4px;
}

.ctwa-tab-panel {
    display: flex;
    gap: 40px;
    background: #fff;
    border: 1px solid rgba(37, 211, 102, 0.18);
    border-left: 5px solid #25D366;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.08);
    align-items: flex-start;
}

.ctwa-tab-panel-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.14), rgba(18, 140, 126, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #128C7E;
}

.ctwa-tab-panel-body {
    flex: 1;
    min-width: 0;
}

.ctwa-tab-category {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
    border-radius: 6px;
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ctwa-tab-panel-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
}

.ctwa-tab-panel-body > p {
    color: #64748b;
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Feature bullets grid */
.ctwa-tab-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ctwa-tab-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #334155;
    font-weight: 500;
    background: #f7fffe;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.14);
    line-height: 1.4;
}

.ctwa-tab-features li i {
    color: #25D366;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Stat callout */
.ctwa-tab-stat {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.07), rgba(18, 140, 126, 0.04));
    border: 1px solid rgba(37, 211, 102, 0.22);
    border-radius: 14px;
    padding: 14px 22px;
}

.ctwa-tab-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #25D366, #128C7E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ctwa-tab-stat-text {
    font-size: 0.87rem;
    color: #64748b;
    font-weight: 500;
    max-width: 180px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 767px) {
    .ctwa-tab-panel {
        flex-direction: column;
        gap: 20px;
        padding: 28px 22px;
        border-left-width: 4px;
    }

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

    .ctwa-tab-btn {
        padding: 10px 18px;
        font-size: 0.88rem;
    }

    .ctwa-tab-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .ctwa-tab-panel-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .ctwa-tab-stat-num {
        font-size: 1.7rem;
    }
}


/* ========================= CRM & PLATFORM INTEGRATIONS (grid/item/icon rules shared in channels.css) ========================= */
.ctwa-integrations {
    padding: 90px 0;
    background: #fff;
}

.ctwa-integrations-intro h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: #071c3d;
    line-height: 1.2;
    margin: 18px 0;
}

.ctwa-integrations-intro p {
    font-size: 16px;
    color: #5b6780;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .ctwa-integrations { padding: 70px 0; }
}

@media (max-width: 575px) {
    .ctwa-integrations { padding: 50px 0; }
}
