:root {
    --ch-color:     #EC4899;
    --ch-color-dark:#db2777;
    --ch-color-rgb: 236, 72, 153;
}

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

.lc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 500px at 15% 40%, rgba(250,73,74,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 85% 60%, rgba(236,72,153,0.05) 0%, transparent 70%);
}

.lc-hero-bg::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(250,73,74,0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: -5%;
    filter: blur(50px);
    animation: lcOrbLeft 10s ease-in-out infinite;
}

@keyframes lcOrbLeft {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

.lc-hero-bg::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236,72,153,0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    right: -5%;
    filter: blur(50px);
    animation: lcOrbRight 12s ease-in-out infinite;
}

@keyframes lcOrbRight {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, -20px); }
}

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

.lc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(190,24,93,0.08);
    border: 1px solid rgba(190,24,93,0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #be185d;
    margin-bottom: 24px;
}

.lc-badge-dot {
    width: 8px;
    height: 8px;
    background: #fa494a;
    border-radius: 50%;
    animation: lcPulse 2s infinite;
}

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

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

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

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

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

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

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

.lc-btn-secondary:hover {
    border-color: rgba(190,24,93,0.5);
    color: #be185d;
    background: rgba(236,72,153,0.06);
}

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

.lc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lc-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(236,72,153,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #be185d;
    margin-bottom: 4px;
}

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

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

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

.lc-chat-mockup {
    position: relative;
    perspective: 1000px;
}

.lc-chat-card {
    width: 340px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10, 22, 40, 0.25), 0 0 0 1px rgba(10, 22, 40, 0.05);
    animation: lcFloat 4s ease-in-out infinite;
}

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

.lc-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #be185d, #EC4899);
}

.lc-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.lc-chat-headinfo {
    display: flex;
    flex-direction: column;
}

.lc-chat-name {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.lc-chat-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.8);
}

.lc-chat-thread {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8f9fc;
}

.lc-bubble {
    max-width: 82%;
    padding: 11px 15px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
}

.lc-bubble-in {
    align-self: flex-start;
    background: #fff;
    color: #33415c;
    border: 1px solid #e5e9f0;
    border-bottom-left-radius: 4px;
}

.lc-bubble-out {
    align-self: flex-end;
    background: #be185d;
    color: #fff;
    font-weight: 700;
    border-bottom-right-radius: 4px;
}

.lc-chat-status {
    padding: 12px 20px;
    background: rgba(37,211,102,0.08);
    border-top: 1px solid rgba(37,211,102,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #0e9a6e;
}

.lc-chat-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #EC4899;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
    animation: lcFloatBadge 3s ease-in-out infinite;
    z-index: 2;
}

.lc-status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: lcPulse 2s infinite;
}


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

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

.lc-mini-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fa494a;
    background: rgba(250,73,74,0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: lcFloatBadge 3s ease-in-out infinite;
}

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

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

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

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

.lc-cap-card {
    background: #fff0f0;
    border: 1px solid rgba(250,73,74,0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s ease;
}

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

.lc-cap-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

.lc-step:nth-child(1) .lc-step-num {
    background: linear-gradient(135deg, #fa494a, #d93c3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

.lc-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #1a0a0d 0%, #15120e 50%, #0d2e1a 100%);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

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

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

.lc-cta-content .lc-mini-badge {
    background: rgba(250,73,74,0.2);
    color: #fca5a5;
}

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

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

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

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

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

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

.lc-dot-green {
    width: 10px;
    height: 10px;
    background: #fa494a;
    border-radius: 50%;
    animation: lcPulse 2s infinite;
}

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

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

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

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

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


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

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

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

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

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

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

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

    .lc-capabilities {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .lc-capabilities {
        gap: 16px;
    }

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

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