/* =====================================================
   KWANG LEADOS — HERO SECTION STYLES
   ===================================================== */

/* ----- CSS Variables ----- */
:root {
    --leados-bg: #0a0b14;
    --leados-bg-soft: #111223;
    --leados-surface: rgba(255, 255, 255, 0.08);
    --leados-surface-light: rgba(255, 255, 255, 0.12);
    --leados-border: rgba(255, 255, 255, 0.15);
    --leados-border-light: rgba(255, 255, 255, 0.25);
    --leados-text: #ffffff;
    --leados-text-muted: rgba(255, 255, 255, 0.85);
    --leados-text-dim: rgba(255, 255, 255, 0.65);
    --leados-primary: #6c5ce7;
    --leados-primary-light: #a29bfe;
    --leados-accent: #59CDE9;
    --leados-accent-glow: rgba(89, 205, 233, 0.4);
    --leados-primary-glow: rgba(108, 92, 231, 0.35);
    --leados-radius: 5px;
    --leados-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --leados-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Base / Reset ----- */
.leados-hero *,
.leados-hero *::before,
.leados-hero *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.leados-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* ===== New Gradient Background ===== */
    background: #59CDE9; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0A2A88, #59CDE9);
    background: linear-gradient(to right, #0A2A88, #59CDE9);
    font-family: var(--leados-font);
    color: var(--leados-text);
    overflow: hidden;
    padding: 80px 24px;
    isolation: isolate;
}

/* ----- Ambient background glow ----- */
.leados-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 70%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.leados-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ----- Container ----- */
.leados-hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =====================================================
   HERO CONTENT (Left Column)
   ===================================================== */

.leados-hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ----- Badge ----- */
.leados-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 8px 18px 8px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 5px;
    background: #59CDE9;
    box-shadow: 0 0 10px #59CDE9, 0 0 20px var(--leados-accent-glow);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

/* ----- Title ----- */
.leados-hero-title {
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.leados-hero-title span {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #59CDE9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ----- Description ----- */
.leados-hero-description {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
    color: var(--leados-text-muted);
    max-width: 520px;
}

/* ----- Buttons ----- */
.leados-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 4px;
}

.leados-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--leados-transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.leados-btn span {
    font-size: 16px;
    transition: transform var(--leados-transition);
}

/* Primary Button */
.primary-btn {
    background: #ffffff;
    color: #0A2A88;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.35);
    background: #f0faff;
}

.primary-btn:hover span {
    transform: translate(3px, -3px);
}

.primary-btn:active {
    transform: translateY(-1px);
}

/* Secondary Button */
.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.secondary-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.secondary-btn:hover span {
    transform: translateY(3px);
}

.secondary-btn:active {
    transform: translateY(-1px);
}

/* ----- Hero Points (Checklist) ----- */
.leados-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--leados-text-muted);
}

.hero-point span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* =====================================================
   HERO VISUAL (Right Column)
   ===================================================== */

.leados-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

/* ----- Glow behind preview ----- */
.leados-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 65%);
    border-radius: 5px;
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* ----- App Preview (Browser Window) ----- */
.leados-app-preview {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    background: rgba(10, 42, 136, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transition: transform var(--leados-transition), box-shadow var(--leados-transition);
}

.leados-app-preview:hover {
    transform: translateY(-6px);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

/* Preview Header (Browser Bar) */
.preview-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.preview-dots {
    display: flex;
    gap: 7px;
}

.preview-dots span {
    width: 11px;
    height: 11px;
    border-radius: 5px;
}

.preview-dots span:nth-child(1) { background: #ff5f57; }
.preview-dots span:nth-child(2) { background: #febc2e; }
.preview-dots span:nth-child(3) { background: #28c840; }

.preview-header > span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Preview Content */
.preview-content {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.preview-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #59CDE9;
}

.preview-content h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.2;
}

.preview-content > p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -6px;
}

/* Preview Search Bar */
.preview-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: border-color var(--leados-transition);
}

.preview-search:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.preview-search span:first-child {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Preview Cards */
.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.preview-card {
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all var(--leados-transition);
}

.preview-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.preview-card small {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.preview-card strong {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

/* Preview Action Button */
.preview-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    margin-top: 4px;
    background: #ffffff;
    color: #0A2A88;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all var(--leados-transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.preview-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    background: #f0faff;
}

.preview-action:active {
    transform: translateY(0);
}

/* =====================================================
   FLOATING CARDS
   ===================================================== */

.preview-floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform var(--leados-transition), box-shadow var(--leados-transition);
    animation: floatCard 6s ease-in-out infinite;
    white-space: nowrap;
}

.preview-floating-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.preview-floating-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    font-size: 15px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.preview-floating-card > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.preview-floating-card strong {
    font-size: 12.5px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.preview-floating-card small {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Top Floating Card */
.floating-top {
    top: 8%;
    right: -8%;
    animation-delay: 0s;
}

/* Bottom Floating Card */
.floating-bottom {
    bottom: 10%;
    left: -10%;
    animation-delay: 3s;
}

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

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */

@media (max-width: 1024px) {
    .leados-hero {
        padding: 60px 20px;
    }

    .leados-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .leados-hero-content {
        align-items: center;
    }

    .leados-hero-description {
        max-width: 600px;
        margin: 0 auto;
    }

    .leados-hero-buttons {
        justify-content: center;
    }

    .leados-hero-points {
        justify-content: center;
    }

    .leados-hero-visual {
        min-height: 420px;
    }

    .floating-top {
        right: -4%;
        top: 4%;
    }

    .floating-bottom {
        left: -4%;
        bottom: 4%;
    }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */

@media (max-width: 640px) {
    .leados-hero {
        padding: 48px 16px;
        min-height: auto;
    }

    .leados-hero-container {
        gap: 40px;
    }

    .leados-hero-title {
        letter-spacing: -0.8px;
    }

    .leados-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .leados-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
    }

    .leados-hero-points {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .leados-hero-visual {
        min-height: 340px;
    }

    .leados-app-preview {
        max-width: 100%;
    }

    .preview-cards {
        grid-template-columns: 1fr;
    }

    .preview-content h2 {
        font-size: 22px;
    }

    /* Hide floating cards on small mobile to prevent overflow */
    .preview-floating-card {
        display: none;
    }

    .leados-visual-glow {
        width: 100%;
        height: 100%;
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
    .badge-dot,
    .leados-visual-glow,
    .preview-floating-card {
        animation: none;
    }

    .leados-btn,
    .leados-app-preview,
    .preview-card,
    .preview-action,
    .preview-floating-card {
        transition: none;
    }
}


/* =====================================================
   KWANG LEADOS — INTRODUCTION SECTION
   ===================================================== */

.leados-intro {
    position: relative;
    width: 100%;
    padding: 100px 24px;
    /* ===== New Dark Gradient Background ===== */
    background: #152331; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #000000, #152331);
    background: linear-gradient(to right, #000000, #152331);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

/* ----- Ambient glows ----- */
.leados-intro::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.leados-intro::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ----- Reset ----- */
.leados-intro *,
.leados-intro *::before,
.leados-intro *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ----- Container ----- */
.leados-intro-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* =====================================================
   SECTION HEADING
   ===================================================== */

.leados-section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
}

.leados-section-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(89, 205, 233, 0.1);
    border: 1px solid rgba(89, 205, 233, 0.3);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #59CDE9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.leados-section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
}

.leados-section-heading h2 span {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #59CDE9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leados-section-heading p {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
}

/* =====================================================
   CONTENT GRID
   ===================================================== */

.leados-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =====================================================
   LEFT VISUAL
   ===================================================== */

.leados-intro-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 42px 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* ----- Glow behind visual ----- */
.intro-glow {
    position: absolute;
    top: -40%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: introGlowPulse 6s ease-in-out infinite;
}

@keyframes introGlowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ----- Icon Box ----- */
.intro-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(89, 205, 233, 0.12);
    border: 1px solid rgba(89, 205, 233, 0.3);
    border-radius: 5px;
    font-size: 22px;
    color: #59CDE9;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

/* ----- Visual Title ----- */
.intro-visual-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.intro-visual-title strong {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.intro-visual-title small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* ----- Divider Line ----- */
.intro-visual-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 6px 0;
    position: relative;
    z-index: 1;
}

/* ----- Mini Cards ----- */
.intro-mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.intro-mini-card:hover {
    background: rgba(89, 205, 233, 0.08);
    border-color: rgba(89, 205, 233, 0.3);
    transform: translateX(6px);
}

.mini-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(89, 205, 233, 0.12);
    border-radius: 5px;
    font-size: 15px;
    color: #59CDE9;
    flex-shrink: 0;
}

.intro-mini-card > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.intro-mini-card strong {
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.intro-mini-card small {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

/* =====================================================
   RIGHT CONTENT
   ===================================================== */

.leados-intro-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-number {
    display: inline-block;
    width: fit-content;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #59CDE9;
}

.leados-intro-content h3 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: #ffffff;
}

.leados-intro-content h3 span {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #59CDE9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leados-intro-content > p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
}

/* =====================================================
   BENEFITS LIST
   ===================================================== */

.intro-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}

.intro-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-benefit:hover {
    background: rgba(89, 205, 233, 0.08);
    border-color: rgba(89, 205, 233, 0.3);
    transform: translateX(6px);
}

.intro-benefit > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(89, 205, 233, 0.15);
    border-radius: 5px;
    color: #59CDE9;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.intro-benefit > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.intro-benefit strong {
    font-size: 14.5px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.intro-benefit p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   INTRO BUTTON
   ===================================================== */

.leados-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 15px 30px;
    margin-top: 12px;
    background: linear-gradient(135deg, #59CDE9 0%, #0A2A88 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(89, 205, 233, 0.3);
    font-family: inherit;
}

.leados-intro-btn span {
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leados-intro-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(89, 205, 233, 0.45);
    background: linear-gradient(135deg, #6dd8f0 0%, #0d3399 100%);
}

.leados-intro-btn:hover span {
    transform: translate(3px, -3px);
}

.leados-intro-btn:active {
    transform: translateY(-1px);
}

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */

@media (max-width: 1024px) {
    .leados-intro {
        padding: 80px 20px;
    }

    .leados-intro-container {
        gap: 56px;
    }

    .leados-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .leados-section-heading {
        text-align: center;
    }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */

@media (max-width: 640px) {
    .leados-intro {
        padding: 60px 16px;
    }

    .leados-intro-container {
        gap: 44px;
    }

    .leados-intro-visual {
        padding: 30px 22px;
    }

    .intro-visual-title strong {
        font-size: 18px;
    }

    .intro-mini-card {
        padding: 12px 14px;
    }

    .leados-intro-content h3 {
        letter-spacing: -0.4px;
    }

    .intro-benefit {
        padding: 14px 16px;
    }

    .leados-intro-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
    .intro-glow {
        animation: none;
    }

    .intro-mini-card,
    .intro-benefit,
    .leados-intro-btn {
        transition: none;
    }
}


/* =====================================================
   KWANG LEADOS — HOW IT WORKS SECTION
   ===================================================== */

.leados-workflow {
    position: relative;
    width: 100%;
    padding: 100px 24px;
    /* ===== Dark Gradient Background ===== */
    background: #152331; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #000000, #152331);
    background: linear-gradient(to right, #000000, #152331);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

/* ----- Ambient glows ----- */
.leados-workflow::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.leados-workflow::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ----- Reset ----- */
.leados-workflow *,
.leados-workflow *::before,
.leados-workflow *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ----- Container ----- */
.leados-workflow-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* =====================================================
   SECTION HEADING (shared pattern)
   ===================================================== */

.leados-workflow .leados-section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
}

.leados-workflow .leados-section-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(89, 205, 233, 0.1);
    border: 1px solid rgba(89, 205, 233, 0.3);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #59CDE9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.leados-workflow .leados-section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
}

.leados-workflow .leados-section-heading h2 span {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #59CDE9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leados-workflow .leados-section-heading p {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
}

/* =====================================================
   WORKFLOW GRID
   ===================================================== */

.leados-workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.workflow-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Subtle top accent line */
.workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #59CDE9, transparent);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-card:hover {
    transform: translateY(-6px);
    background: rgba(89, 205, 233, 0.06);
    border-color: rgba(89, 205, 233, 0.3);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.workflow-card:hover::before {
    opacity: 1;
}

/* ----- Card Top Row (Number + Icon) ----- */
.workflow-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.workflow-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #59CDE9;
}

.workflow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(89, 205, 233, 0.12);
    border: 1px solid rgba(89, 205, 233, 0.25);
    border-radius: 5px;
    font-size: 17px;
    color: #59CDE9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-card:hover .workflow-icon {
    background: rgba(89, 205, 233, 0.22);
    border-color: rgba(89, 205, 233, 0.5);
    transform: scale(1.05);
}

/* ----- Divider Line ----- */
.workflow-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* ----- Card Title ----- */
.workflow-card h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: #ffffff;
}

/* ----- Card Description ----- */
.workflow-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    flex-grow: 1;
}

/* ----- Tag ----- */
.workflow-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    margin-top: 4px;
    background: rgba(89, 205, 233, 0.1);
    border: 1px solid rgba(89, 205, 233, 0.25);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #59CDE9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-card:hover .workflow-tag {
    background: rgba(89, 205, 233, 0.18);
    border-color: rgba(89, 205, 233, 0.45);
}

/* =====================================================
   WORKFLOW FOOTER
   ===================================================== */

.workflow-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
}

.workflow-footer-line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(89, 205, 233, 0.5), transparent);
}

.workflow-footer p {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    white-space: nowrap;
}

/* =====================================================
   RESPONSIVE — LARGE TABLET
   ===================================================== */

@media (max-width: 1024px) {
    .leados-workflow {
        padding: 80px 20px;
    }

    .leados-workflow-container {
        gap: 56px;
    }

    .leados-workflow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */

@media (max-width: 640px) {
    .leados-workflow {
        padding: 60px 16px;
    }

    .leados-workflow-container {
        gap: 44px;
    }

    .leados-workflow-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .workflow-card {
        padding: 24px 20px;
    }

    .workflow-card h3 {
        font-size: 16px;
    }

    .workflow-footer {
        flex-direction: column;
        gap: 14px;
    }

    .workflow-footer-line {
        max-width: 100%;
        width: 100%;
    }

    .workflow-footer p {
        white-space: normal;
        font-size: 13px;
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
    .workflow-card,
    .workflow-icon,
    .workflow-tag {
        transition: none;
    }
}


/* =====================================================
   KWANG LEADOS — CORE FEATURES SECTION
   ===================================================== */

.leados-features {
    position: relative;
    width: 100%;
    padding: 100px 24px;
    /* ===== Dark Gradient Background ===== */
    background: #152331; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #000000, #152331);
    background: linear-gradient(to right, #000000, #152331);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

/* ----- Ambient glows ----- */
.leados-features::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -15%;
    width: 65%;
    height: 85%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.09) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.leados-features::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -15%;
    width: 65%;
    height: 85%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ----- Reset ----- */
.leados-features *,
.leados-features *::before,
.leados-features *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ----- Container ----- */
.leados-features-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* =====================================================
   SECTION HEADING (shared pattern)
   ===================================================== */

.leados-features .leados-section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
}

.leados-features .leados-section-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(89, 205, 233, 0.1);
    border: 1px solid rgba(89, 205, 233, 0.3);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #59CDE9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.leados-features .leados-section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
}

.leados-features .leados-section-heading h2 span {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #59CDE9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leados-features .leados-section-heading p {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
}

/* =====================================================
   FEATURES GRID
   ===================================================== */

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

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

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Top accent line revealed on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #59CDE9, transparent);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(89, 205, 233, 0.06);
    border-color: rgba(89, 205, 233, 0.3);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.feature-card:hover::before {
    opacity: 1;
}

/* ----- Card Top Row ----- */
.feature-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #59CDE9;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(89, 205, 233, 0.12);
    border: 1px solid rgba(89, 205, 233, 0.25);
    border-radius: 5px;
    font-size: 17px;
    color: #59CDE9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    background: rgba(89, 205, 233, 0.22);
    border-color: rgba(89, 205, 233, 0.5);
    transform: scale(1.05);
}

/* ----- Category Label ----- */
.feature-label {
    display: inline-flex;
    width: fit-content;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(89, 205, 233, 0.8);
}

/* ----- Card Title ----- */
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: #ffffff;
}

/* ----- Card Description ----- */
.feature-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    flex-grow: 1;
}

/* ----- Card Footer ----- */
.feature-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-footer span:last-child {
    font-size: 14px;
    color: #59CDE9;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-footer {
    color: rgba(255, 255, 255, 0.85);
}

.feature-card:hover .feature-footer span:last-child {
    transform: translate(3px, -3px);
}

/* =====================================================
   LARGE FEATURE (spans 2 columns)
   ===================================================== */

.feature-large {
    grid-column: span 2;
}

.feature-large h3 {
    font-size: 22px;
}

/* =====================================================
   HIGHLIGHT FEATURE (cyan accent)
   ===================================================== */

.feature-highlight {
    background: linear-gradient(135deg, rgba(89, 205, 233, 0.12) 0%, rgba(10, 42, 136, 0.25) 100%);
    border-color: rgba(89, 205, 233, 0.3);
}

.feature-highlight::before {
    opacity: 1;
    background: linear-gradient(to right, transparent, #59CDE9, transparent);
}

.feature-highlight .feature-icon {
    background: rgba(89, 205, 233, 0.2);
    border-color: rgba(89, 205, 233, 0.45);
}

.feature-highlight .feature-label {
    color: #59CDE9;
}

.feature-highlight:hover {
    background: linear-gradient(135deg, rgba(89, 205, 233, 0.18) 0%, rgba(10, 42, 136, 0.35) 100%);
    border-color: rgba(89, 205, 233, 0.5);
}

/* =====================================================
   FEATURES CTA
   ===================================================== */

.features-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 50px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(89, 205, 233, 0.2);
    border-radius: 5px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

/* Ambient glow inside CTA */
.features-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.features-cta h3 {
    position: relative;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.25;
    color: #ffffff;
    max-width: 560px;
}

.features-cta a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #59CDE9 0%, #0A2A88 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 24px rgba(89, 205, 233, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.features-cta a span {
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(89, 205, 233, 0.45);
    background: linear-gradient(135deg, #6dd8f0 0%, #0d3399 100%);
}

.features-cta a:hover span {
    transform: translate(3px, -3px);
}

.features-cta a:active {
    transform: translateY(-1px);
}

/* =====================================================
   RESPONSIVE — LARGE TABLET
   ===================================================== */

@media (max-width: 1024px) {
    .leados-features {
        padding: 80px 20px;
    }

    .leados-features-container {
        gap: 56px;
    }

    .leados-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Remove large span in 2-col layout for balance */
    .feature-large {
        grid-column: span 1;
    }

    .feature-large h3 {
        font-size: 18px;
    }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */

@media (max-width: 640px) {
    .leados-features {
        padding: 60px 16px;
    }

    .leados-features-container {
        gap: 44px;
    }

    .leados-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .feature-card h3,
    .feature-large h3 {
        font-size: 16.5px;
    }

    .features-cta {
        padding: 36px 22px;
    }

    .features-cta a {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .feature-icon,
    .feature-footer span:last-child,
    .features-cta a {
        transition: none;
    }
}


/* =====================================================
   KWANG LEADOS — FAQ SECTION
   ===================================================== */

.leados-faq {
    position: relative;
    width: 100%;
    padding: 100px 24px;
    /* ===== Dark Gradient Background ===== */
    background: #152331; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #000000, #152331);
    background: linear-gradient(to right, #000000, #152331);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

/* ----- Ambient glows ----- */
.leados-faq::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -15%;
    width: 65%;
    height: 85%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.leados-faq::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -15%;
    width: 65%;
    height: 85%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ----- Reset ----- */
.leados-faq *,
.leados-faq *::before,
.leados-faq *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ----- Container ----- */
.leados-faq-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* =====================================================
   SECTION HEADING (shared pattern)
   ===================================================== */

.leados-faq .leados-section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
}

.leados-faq .leados-section-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(89, 205, 233, 0.1);
    border: 1px solid rgba(89, 205, 233, 0.3);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #59CDE9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.leados-faq .leados-section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
}

.leados-faq .leados-section-heading h2 span {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #59CDE9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leados-faq .leados-section-heading p {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
}

/* =====================================================
   FAQ LAYOUT (2-column)
   ===================================================== */

.leados-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

/* =====================================================
   LEFT SIDE — FAQ INTRO
   ===================================================== */

.leados-faq-intro {
    position: sticky;
    top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 38px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

/* Ambient glow inside intro card */
.leados-faq-intro::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(89, 205, 233, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.faq-intro-number {
    position: relative;
    display: inline-block;
    width: fit-content;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #59CDE9;
}

.leados-faq-intro h3 {
    position: relative;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: #ffffff;
}

.leados-faq-intro h3 span {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #59CDE9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leados-faq-intro > p {
    position: relative;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
}

/* ----- Intro Button ----- */
.faq-intro-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 15px 30px;
    margin-top: 8px;
    background: linear-gradient(135deg, #59CDE9 0%, #0A2A88 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 24px rgba(89, 205, 233, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.faq-intro-btn span {
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-intro-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(89, 205, 233, 0.45);
    background: linear-gradient(135deg, #6dd8f0 0%, #0d3399 100%);
}

.faq-intro-btn:hover span {
    transform: translate(3px, -3px);
}

.faq-intro-btn:active {
    transform: translateY(-1px);
}

/* =====================================================
   RIGHT SIDE — FAQ LIST
   ===================================================== */

.leados-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =====================================================
   FAQ ITEM (details/summary)
   ===================================================== */

.leados-faq-item {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.leados-faq-item:hover {
    background: rgba(89, 205, 233, 0.05);
    border-color: rgba(89, 205, 233, 0.25);
}

.leados-faq-item[open] {
    background: rgba(89, 205, 233, 0.07);
    border-color: rgba(89, 205, 233, 0.35);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

/* Remove default marker */
.leados-faq-item summary {
    list-style: none;
}

.leados-faq-item summary::-webkit-details-marker {
    display: none;
}

/* ----- Summary (Question Row) ----- */
.leados-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leados-faq-item summary > span {
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.45;
    color: #ffffff;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leados-faq-item[open] summary > span {
    color: #59CDE9;
}

/* ----- Plus/Minus Icon ----- */
.leados-faq-item summary > b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(89, 205, 233, 0.12);
    border: 1px solid rgba(89, 205, 233, 0.25);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #59CDE9;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leados-faq-item summary:hover > b {
    background: rgba(89, 205, 233, 0.2);
    border-color: rgba(89, 205, 233, 0.45);
}

/* Rotate plus into a minus-like state when open */
.leados-faq-item[open] summary > b {
    background: rgba(89, 205, 233, 0.25);
    border-color: rgba(89, 205, 233, 0.5);
    transform: rotate(45deg);
}

/* =====================================================
   FAQ ANSWER
   ===================================================== */

.faq-answer {
    padding: 0 24px 22px;
    animation: faqFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.faq-answer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 10px 18px;
    background: rgba(89, 205, 233, 0.12);
    border: 1px solid rgba(89, 205, 233, 0.3);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #59CDE9;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer a:hover {
    background: rgba(89, 205, 233, 0.2);
    border-color: rgba(89, 205, 233, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(89, 205, 233, 0.25);
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE — LARGE TABLET
   ===================================================== */

@media (max-width: 1024px) {
    .leados-faq {
        padding: 80px 20px;
    }

    .leados-faq-container {
        gap: 56px;
    }

    .leados-faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leados-faq-intro {
        position: static;
        padding: 32px 26px;
    }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */

@media (max-width: 640px) {
    .leados-faq {
        padding: 60px 16px;
    }

    .leados-faq-container {
        gap: 44px;
    }

    .leados-faq-intro {
        padding: 28px 22px;
    }

    .leados-faq-intro h3 {
        letter-spacing: -0.4px;
    }

    .faq-intro-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
    }

    .leados-faq-item summary {
        padding: 18px 18px;
        gap: 14px;
    }

    .leados-faq-item summary > span {
        font-size: 14.5px;
    }

    .leados-faq-item summary > b {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .faq-answer p {
        font-size: 13.5px;
    }

    .faq-answer a {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
    .leados-faq-item,
    .leados-faq-item summary,
    .leados-faq-item summary > b,
    .faq-intro-btn,
    .faq-answer a,
    .faq-answer {
        transition: none;
        animation: none;
    }
}