/* GLOBAL THEME OVERRIDES */
:root {
    --cs-orange: #ff7a00;
    --cs-gold: #e2b091;
    --cs-bg-light: rgba(255, 255, 255, 0.05);
    --cs-border: rgba(255, 255, 255, 0.1);
}

/* HERO SECTION */
.cs-hero-section {
    padding: 120px 0 80px;
}

.cs-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.cs-top-label {
    color: var(--cs-orange);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    font-family: 'Kanit';
}

.cs-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin: 20px 0;
    font-family: 'Kanit';
}

.highlight {
    color: var(--cs-gold);
}

.cs-hero-desc {
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 40px;
}

.cs-badge-group {
    display: flex;
    gap: 15px;
}

.cs-badge {
    background: var(--cs-bg-light);
    border: 1px solid var(--cs-border);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-badge i {
    color: var(--cs-orange);
}

.cs-dashboard-wrapper {
    position: relative;
    padding: 15px;
    background: #1e293b;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.cs-main-img {
    width: 100%;
    border-radius: 12px;
}

.cs-floating-growth {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #111827;
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid var(--cs-border);
}

.stat-label {
    color: var(--cs-orange);
    font-size: 10px;
    font-weight: 800;
    display: block;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Kanit';
}

/* STATS BAR */
.cs-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 60px 0;
    border-top: 1px solid var(--cs-border);
    text-align: center;
    color: black;
    background: white;
}

.cs-stat-num {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Kanit';
}

.cs-stat-sub {
    color: #a0aec0;
    font-size: 14px;
}

/* CHALLENGE & SOLUTION */
.cs-problem-solution {
    background: #070a0f;
}

.cs-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cs-box {
    padding: 60px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--cs-border);
}

.cs-icon-wrap {
    width: 45px;
    height: 45px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.cs-icon-wrap i {
    color: var(--cs-orange);
    font-size: 20px;
}

.cs-box-title {
    font-size: 2.2rem;
    font-family: 'Kanit';
    margin-bottom: 25px;
}

.cs-box-text {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.cs-list {
    list-style: none;
    padding: 0;
}

.cs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.cs-list li i {
    color: #ef4444;
    font-size: 12px;
}

.cs-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cs-mini-card {
    background: #0f172a;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--cs-border);
}

.cs-mini-card h4 {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Kanit';
}

.cs-mini-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* FOCUS SECTION */
.cs-focus-section {
    padding: 100px 0;
    background: #fff;
    color: #000;
}

.cs-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.cs-focus-title {
    font-size: 3rem;
    font-family: 'Kanit';
    margin: 20px 0 50px;
}

.cs-focus-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.step-num {
    width: 40px;
    height: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    color: #3b82f6;
}

.step-info h3 {
    font-size: 1.4rem;
    font-family: 'Kanit';
    margin-bottom: 10px;
}

.step-info p {
    color: #64748b;
    line-height: 1.6;
}

.cs-focus-img {
    object-fit: cover;
    height: 400px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* CTA SECTION */
.cs-cta-section {
    padding: 80px 0;
    text-align: center;
}

.cs-cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: #1e293b;
    padding: 80px 40px;
    border-radius: 30px;
    border: 1px solid var(--cs-border);
}

.cs-cta-title {
    font-size: 3.5rem;
    font-family: 'Kanit';
    margin-bottom: 20px;
}

.blue-highlight {
    color: #60a5fa;
}

.cs-cta-text {
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.cs-cta-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cs-cta-form input {
    width: 100%;
    max-width: 500px;
    padding: 18px 25px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--cs-border);
    color: #fff;
}

.cs-submit-btn {
    width: 100%;
    max-width: 500px;
    padding: 18px;
    border-radius: 12px;
    background: var(--cs-orange);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.cs-submit-btn:hover {
    background: #e66e00;
    transform: translateY(-3px);
}

.cs-response-tag {
    display: block;
    margin-top: 30px;
    font-size: 12px;
    color: #64748b;
    letter-spacing: 2px;
}

/* ANIMATIONS */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .cs-hero-grid,
    .cs-card-grid,
    .cs-focus-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
 .cs-cta-title{
     font-size: 2.5rem;
 }
    .cs-hero-desc,
    .cs-badge-group {
        margin: 0 auto 40px;
        justify-content: center;
    }

    .cs-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .cs-mini-grid {
        grid-template-columns: 1fr;
    }

    .cs-focus-step {
        text-align: left;
    }
}