/* =========================================
   INSIGHT SECTION
========================================= */

.insight-section {
    position: relative;
    padding: 140px 60px;
    background: #FFF9E6;
    overflow: hidden;
}

/* Layout */

.insight-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Label */

.insight-label {
    color: #0E78BE;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
}

/* Title */

.insight-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: #111827;
    letter-spacing: -0.5px;
    max-width: 720px;
}

/* Highlight Word */

/* Highlight word */

.highlight-word {
    position: relative;
    color: #DA6586;
    display: inline-block;
}

/* Underline */

.hand-underline {
    position: absolute;
    left: -4%;
    bottom: -14px;
    width: 108%;
    height: 20px;
}

.hand-underline line {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 2.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Slow draw animation */

.insight-section.active .hand-underline line {
    stroke-dashoffset: 0;
}

/* =========================================
   CARD
========================================= */

.insight-card {
    position: relative;
    background: #ffffff;
    padding: 56px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

/* Clean Gradient Glow */

.card-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at 70% 30%,
        rgba(14,120,190,0.18),
        rgba(218,101,134,0.12),
        rgba(242,211,119,0.10),
        transparent 65%
    );
    z-index: 0;
    filter: blur(60px);
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.insight-card:hover .card-glow {
    opacity: 1;
}

/* Content above glow */

.insight-card p {
    position: relative;
    z-index: 2;
    font-size: 22px;
    line-height: 1.75;
    color: #1f2937;
    margin-bottom: 28px;
}

.insight-card p:last-child {
    margin-bottom: 0;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.10);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .insight-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .insight-title {
        font-size: 44px;
    }

    .insight-card {
        padding: 40px;
    }

    .insight-card p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {

    .insight-section {
        padding: 90px 20px;
    }

    .insight-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .insight-card {
        padding: 28px;
    }

    .insight-card p {
        font-size: 16px;
        line-height: 1.7;
    }
}