:root {
    --ch-color:     #F59E0B;
    --ch-color-dark:#d97706;
    --ch-color-rgb: 245, 158, 11;
}

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

.wcrm-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(217, 119, 6, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 30%, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
}

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

.wcrm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 119, 6, 0.10);
    border: 1px solid rgba(217, 119, 6, 0.30);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #b45309;
    margin-bottom: 24px;
}

.wcrm-badge-dot {
    width: 8px;
    height: 8px;
    background: #d97706;
    border-radius: 50%;
    animation: wcrmPulse 2s infinite;
}

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

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

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

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

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

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

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

.wcrm-btn-secondary:hover {
    border-color: #d97706;
    color: #b45309;
    background: rgba(217, 119, 6, 0.06);
}

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

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

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

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

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

.wcrm-dashboard-mockup {
    perspective: 1000px;
}

.wcrm-dashboard-frame {
    width: 360px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0, 0, 0, 0.06);
    animation: wcrmFloat 4s ease-in-out infinite;
}

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

.wcrm-dash-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 18px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wcrm-dash-title {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.wcrm-dash-badge {
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
}

.wcrm-dash-body {
    padding: 16px;
}

.wcrm-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: #ecfdf5;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.wcrm-contact-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.wcrm-contact-avatar:nth-child(1) { 
    background: #25D366; 
}

.wcrm-contact-info {
    flex: 1;
}

.wcrm-contact-name {
    font-size: 13px;
    font-weight: 600;
    color: #071c3d;
    display: block;
}

.wcrm-contact-msg {
    font-size: 11px;
    color: #5b6780;
    display: block;
}

.wcrm-contact-tag {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.wcrm-tag-hot { 
    background: #fef2f2; 
    color: #ef4444; 
}
.wcrm-tag-warm { 
    background: #ecfdf5; 
    color: #d97706; 
}
.wcrm-tag-new { 
    background: #ecfdf5; 
    color: #10b981; 
}


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

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

.wcrm-mini-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #128C7E;
    background: rgba(37, 211, 102, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: wcrmFloatBadge 3s ease-in-out infinite;
}

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

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

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

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

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

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

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

.wcrm-compare-new {
    background: #ecfdf5;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

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

.wcrm-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.wcrm-compare-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #5b6780;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.wcrm-compare-list li:last-child {
    border-bottom: none;
}

.wcrm-compare-list li i {
    font-size: 16px;
}

.wcrm-compare-old .wcrm-compare-list li i { color: #ef4444; }
.wcrm-compare-new .wcrm-compare-list li i { color: #25D366; }


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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

.wcrm-step:nth-child(1) .wcrm-step-num {
    background: linear-gradient(135deg, #25D366, #128C7E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wcrm-step:nth-child(3) .wcrm-step-num {
    background: linear-gradient(135deg, #ffe98a 0%, #ffc633 50%, #f2a900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.wcrm-step-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    margin-top: 32px;
    border-radius: 3px;
    flex-shrink: 0;
}


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

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

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

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

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

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

.wcrm-usecase-card:nth-child(1)::before { background: #25D366;}
.wcrm-usecase-card:nth-child(2)::before { background: #ffc633;}
.wcrm-usecase-card:nth-child(3)::before { background: #fa494a;}
.wcrm-usecase-card:nth-child(4)::before { background: #15aaff;}

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

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

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

.wcrm-usecase-card:nth-child(1) .wcrm-usecase-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
}

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

.wcrm-usecase-card:nth-child(3) .wcrm-usecase-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

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

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

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


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

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

.wcrm-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%;
}

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

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

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

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

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

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

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

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

.wcrm-dot-amber {
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    animation: wcrmPulse 2s infinite;
}

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

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

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

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

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


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