/* Lastech Academy — Premium Homepage v15 */

/* ========== Animations ========== */
@keyframes home-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes home-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -18px) scale(1.04); }
    66% { transform: translate(-8px, 10px) scale(0.97); }
}

@keyframes home-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes home-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes home-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes home-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { opacity: 0.85; transform: scale(0.95); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

@keyframes home-ring {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.22); opacity: 0.12; }
}

@keyframes home-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes home-aurora {
    0%, 100% { opacity: 0.5; transform: rotate(0deg) scale(1); }
    50% { opacity: 0.8; transform: rotate(2deg) scale(1.04); }
}

@keyframes home-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(8px); opacity: 1; }
}

@keyframes home-ken {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

/* ========== Theme tokens (home only) ========== */
html.light body.page-home,
body.page-home {
    --home-bg: #ecfeff;
    --home-surface: #ffffff;
    --home-surface-2: #f0f9ff;
    --home-surface-3: #e0f2fe;
    --home-text: #0c4a6e;
    --home-text-muted: #0369a1;
    --home-text-soft: #0284c7;
    --home-border: rgba(56, 189, 248, 0.2);
    --home-border-soft: rgba(6, 182, 212, 0.2);
    --home-card-bg: rgba(255, 255, 255, 0.72);
    --home-card-border: rgba(186, 230, 253, 0.9);
    --home-hero-bg: linear-gradient(168deg, #ecfeff 0%, #e0f2fe 35%, #bae6fd 65%, #f0f9ff 100%);
    --home-glow: rgba(6, 182, 212, 0.18);
    --home-accent: #0052FF;
    --home-accent-2: #0082FB;
    --home-chip-bg: rgba(255, 255, 255, 0.65);
    --home-stat-bg: rgba(255, 255, 255, 0.75);
    --home-curve: #ffffff;
    --home-section-a: #ffffff;
    --home-section-b: #f0f9ff;
    --home-section-c: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    --home-section-d: linear-gradient(180deg, #fff 0%, #ecfeff 100%);
    --home-section-e: linear-gradient(135deg, #e0f2fe 0%, #ecfeff 40%, #cffafe 100%);
}

html:not(.light) body.page-home {
    --home-bg: #000000;
    --home-surface: #0d1117;
    --home-surface-2: #111827;
    --home-surface-3: #1a2332;
    --home-text: #e2e8f0;
    --home-text-muted: #94a3b8;
    --home-text-soft: #64748b;
    --home-border: rgba(0, 130, 251, 0.12);
    --home-border-soft: rgba(0, 130, 251, 0.22);
    --home-card-bg: rgba(17, 24, 39, 0.92);
    --home-card-border: rgba(255, 255, 255, 0.07);
    --home-hero-bg: radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0, 130, 251, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 30%, rgba(0, 130, 251, 0.1) 0%, transparent 50%),
        #000000;
    --home-glow: rgba(0, 130, 251, 0.45);
    --home-accent: #0082FB;
    --home-accent-2: #0052FF;
    --home-chip-bg: rgba(17, 24, 39, 0.95);
    --home-stat-bg: rgba(17, 24, 39, 0.95);
    --home-curve: #000000;
    --home-section-a: #000000;
    --home-section-b: #050505;
    --home-section-c: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 130, 251, 0.08) 0%, transparent 60%), #000000;
    --home-section-d: radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0, 130, 251, 0.06) 0%, transparent 55%), #030303;
    --home-section-e: linear-gradient(180deg, #000000 0%, #0a0f18 100%);
}

/* Override site.css forced white on home */
html.light body.page-home,
html.light body.page-home .theme-bg {
    background: var(--home-bg) !important;
}

html:not(.light) body.page-home,
html:not(.light) body.page-home .theme-bg {
    background: var(--home-bg) !important;
}

/* ========== Page shell & typography ========== */
body.page-home {
    background: var(--home-bg);
    color: var(--home-text);
    font-family: 'Manrope', 'Plus Jakarta Sans', system-ui, sans-serif;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
}

.page-home h1,
.page-home h2,
.page-home h3,
.page-home .home-hero-v2__btn,
.page-home .la-eyebrow,
.page-home .home-badge {
    font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ========== Hero — Premium ========== */
.home-hero-v2 {
    position: relative;
    background: var(--home-hero-bg);
    color: var(--home-text);
    padding: 0;
    overflow: hidden;
    min-height: min(92vh, 880px);
    display: flex;
    flex-direction: column;
}

.home-hero-v2__aurora {
    position: absolute;
    inset: -20%;
    background:
        conic-gradient(from 200deg at 28% 40%, rgba(0, 130, 251, 0.16), transparent 38%),
        conic-gradient(from 100deg at 78% 22%, rgba(6, 182, 212, 0.12), transparent 42%),
        conic-gradient(from 320deg at 55% 85%, rgba(14, 165, 233, 0.1), transparent 36%);
    filter: blur(48px);
    animation: home-aurora 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

html:not(.light) .home-hero-v2__aurora {
    background:
        conic-gradient(from 200deg at 30% 40%, rgba(0, 130, 251, 0.35), transparent 35%),
        conic-gradient(from 120deg at 75% 25%, rgba(6, 182, 212, 0.28), transparent 40%),
        conic-gradient(from 320deg at 60% 80%, rgba(0, 198, 255, 0.2), transparent 35%);
    opacity: 0.7;
}

.home-hero-v2__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 8% 25%, rgba(0, 130, 251, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 92% 15%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 35% 30% at 70% 85%, rgba(14, 165, 233, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.home-hero-v2__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 130, 251, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 130, 251, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
}

.home-hero-v2__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: home-orb-drift 14s ease-in-out infinite;
}

.home-hero-v2__orb--1 {
    width: 420px;
    height: 420px;
    top: -8%;
    right: -5%;
    background: rgba(0, 130, 251, 0.12);
}

.home-hero-v2__orb--2 {
    width: 280px;
    height: 280px;
    bottom: 10%;
    left: -4%;
    background: rgba(6, 182, 212, 0.1);
    animation-delay: -5s;
}

.home-hero-v2__orb--3 {
    width: 180px;
    height: 180px;
    top: 45%;
    left: 42%;
    background: rgba(14, 165, 233, 0.08);
    animation-delay: -9s;
}

.home-hero-v2__inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .home-hero-v2__inner {
        padding-top: 3.5rem;
        padding-bottom: 2.5rem;
        gap: 3.25rem;
    }
}

.home-hero-v2__grid {
    display: grid;
    gap: 2.75rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .home-hero-v2__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
        gap: clamp(2.5rem, 5vw, 4.5rem);
    }
}

.home-hero-v2__copy {
    animation: home-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    max-width: 34rem;
}

.home-hero-v2__visual {
    animation: home-fade-up 0.9s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero-v2__locale {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.35rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--home-text-soft);
}

.home-hero-v2__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: home-pulse 2.2s ease infinite;
    flex-shrink: 0;
}

.home-hero-v2__title {
    margin: 0 0 1.35rem;
}

.home-hero-v2__brand {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.18em;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(2.65rem, 7vw, 4.75rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.home-hero-v2__brand-word {
    display: inline;
}

.home-hero-v2__brand-word--primary {
    color: #0c4a6e;
}

.home-hero-v2__brand-word--accent {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html:not(.light) .home-hero-v2__trust-item strong {
    color: #0082FB;
    text-shadow:
        0 0 20px rgba(0, 130, 251, 0.6),
        0 0 40px rgba(0, 130, 251, 0.3);
}

html:not(.light) .home-hero-v2__trust-item--rating strong {
    color: #0082FB;
    text-shadow:
        0 0 20px rgba(0, 130, 251, 0.6),
        0 0 40px rgba(0, 130, 251, 0.3);
}

.home-hero-v2__title::after {
    content: '';
    display: block;
    width: 4.5rem;
    height: 3.5px;
    margin-top: 1.25rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--home-accent), var(--home-accent-2));
    box-shadow: 0 0 18px var(--home-glow);
}

.home-hero-v2__title .la-brand-wordmark--hero {
    margin-bottom: 0;
}

.home-hero-v2__lead {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.05rem, 1.9vw, 1.2rem);
    line-height: 1.75;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #0369a1;
    max-width: 30rem;
    margin: 0 0 2rem;
}

html:not(.light) .home-hero-v2__lead {
    color: #94a3b8;
}

.home-hero-v2__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.875rem;
    margin: 0;
}

.home-hero-v2__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.15rem;
    padding: 0.9rem 1.75rem;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    border-radius: 16px;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.home-hero-v2__btn--primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0082fb 0%, #049fd9 45%, #06b6d4 100%);
    color: #fff !important;
    box-shadow:
        0 4px 14px rgba(0, 130, 251, 0.35),
        0 14px 36px rgba(0, 130, 251, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.home-hero-v2__btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: home-shimmer 4s ease infinite;
    pointer-events: none;
}

.home-hero-v2__btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 24px rgba(0, 130, 251, 0.45),
        0 20px 48px rgba(0, 130, 251, 0.25);
}

.home-hero-v2__btn--ghost {
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    color: #0c4a6e;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.05);
}

html:not(.light) .home-hero-v2__btn--ghost {
    color: #e0f2fe;
    background: rgba(12, 74, 110, 0.55);
    border-color: rgba(56, 189, 248, 0.35);
}

.home-hero-v2__btn--ghost:hover {
    background: var(--home-surface);
    border-color: var(--home-accent);
    color: var(--home-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--home-glow);
}

.home-hero-v2__btn--on-dark {
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.home-hero-v2__btn--on-dark:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Trust strip under hero content */
.home-hero-v2__trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    padding: 1.35rem 0 0;
    border-top: 1px solid var(--home-border);
    animation: home-fade-up 0.9s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (min-width: 640px) {
    .home-hero-v2__trust {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.home-hero-v2__trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.home-hero-v2__trust-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--home-text);
}

.home-hero-v2__trust-item span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--home-text-soft);
}

.home-hero-v2__trust-item--rating strong {
    color: #0284c7;
}

html:not(.light) .home-hero-v2__trust-item--rating strong {
    color: #38bdf8;
}

/* Hero visual */
.home-hero-v2__visual {
    position: relative;
}

.home-hero-v2__frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    background: #e2e8f0;
    box-shadow:
        0 0 0 1px rgba(0, 130, 251, 0.08),
        0 28px 60px -18px rgba(0, 130, 251, 0.32),
        0 10px 28px -10px rgba(15, 23, 42, 0.14);
    animation: home-float 8s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .home-hero-v2__frame {
        aspect-ratio: 4 / 3;
        border-radius: 32px;
    }
}

.home-hero-v2__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    pointer-events: none;
    z-index: 5;
}

.home-hero-v2__frame-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(0, 130, 251, 0.22) 0%, transparent 58%);
    z-index: 0;
    pointer-events: none;
}

.home-hero-v2__poster-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-hero-v2__slider {
    position: absolute;
    inset: 0;
}

.home-hero-v2__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.home-hero-v2__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.home-hero-v2__slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 0.45rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
}

.home-hero-v2__slider-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.home-hero-v2__slider-dot.is-active {
    background: #0082fb;
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(0, 130, 251, 0.6);
}

.home-hero-v2__slider-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.home-hero-v2__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    animation: home-ken 18s ease-in-out alternate infinite;
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-v2__poster,
    .home-hero-v2__slide,
    .home-hero-v2__frame,
    .home-hero-v2__aurora,
    .home-hero-v2__orb {
        animation: none;
    }
}

.home-hero-v2__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 2;
}

.home-hero-v2__play {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(12, 74, 110, 0.08) 0%, rgba(12, 74, 110, 0.42) 100%);
    border: none;
    cursor: pointer;
    transition: background 0.35s;
}

.home-hero-v2__play:hover {
    background: rgba(12, 74, 110, 0.48);
}

.home-hero-v2__play svg {
    position: relative;
    z-index: 2;
    margin-left: 4px;
    color: #0082fb;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.home-hero-v2__play-ring {
    position: absolute;
    width: 5.75rem;
    height: 5.75rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: home-ring 2.6s ease infinite;
}

.home-hero-v2__play::before {
    content: '';
    width: 4.65rem;
    height: 4.65rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
    position: absolute;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.home-hero-v2__play:hover::before {
    transform: scale(1.08);
}

.home-hero-v2__curve {
    position: relative;
    z-index: 3;
    margin-top: auto;
    line-height: 0;
}

.home-hero-v2__curve svg {
    width: 100%;
    height: auto;
    display: block;
}

.home-hero-v2__curve-path {
    fill: var(--home-curve);
}

.home-hero-v2__scroll {
    position: absolute;
    bottom: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: 24px;
    height: 38px;
    border: 2px solid var(--home-border-soft);
    border-radius: 12px;
    opacity: 0.5;
}

.home-hero-v2__scroll span {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--home-accent);
    border-radius: 4px;
    animation: home-scroll-bounce 2s ease infinite;
}

@media (max-width: 1023px) {
    .home-hero-v2__scroll { display: none; }
}

/* ========== Section headers ========== */
.home-section-head {
    position: relative;
}

.home-section-head .la-eyebrow,
.home-section-head .home-badge {
    position: relative;
}

.home-section-head .la-section-title,
.home-section-head .home-heading {
    position: relative;
}

.home-section-head::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 1.25rem auto 0;
    background: linear-gradient(90deg, #0082fb, #06b6d4);
    border-radius: 999px;
}

.home-section-head.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

/* ========== Sections ========== */
.home-section {
    padding: 5.5rem 0;
    position: relative;
}

@media (min-width: 1024px) {
    .home-section { padding: 7rem 0; }
}

.home-section-offline {
    background: var(--home-section-a);
}

.home-section-offline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--home-border-soft), transparent);
}

.home-section-courses {
    background: #ffffff;
}

.home-section-courses::before {
    display: none;
}

.home-section-partners {
    background: var(--home-section-a);
    border-top: 1px solid var(--home-border);
    border-bottom: 1px solid var(--home-border);
}

.home-section-stories {
    background: var(--home-section-d);
}

.home-section-typing {
    background: var(--home-section-e);
}

.home-section-about {
    background: var(--home-section-b);
}

.page-home .home-section-offline .la-eyebrow,
.page-home .home-section-courses .la-eyebrow,
.page-home .home-section-stories .la-eyebrow,
.page-home .home-section-about .la-eyebrow,
.page-home .home-section-partners .la-eyebrow {
    color: var(--home-accent);
    background: rgba(0, 130, 251, 0.08);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.7rem;
}

html:not(.light) .page-home .home-section-offline .la-eyebrow,
html:not(.light) .page-home .home-section-courses .la-eyebrow,
html:not(.light) .page-home .home-section-stories .la-eyebrow,
html:not(.light) .page-home .home-section-about .la-eyebrow,
html:not(.light) .page-home .home-section-partners .la-eyebrow {
    background: rgba(0, 198, 255, 0.1);
}

.page-home .home-section-offline .la-section-title:not(.la-title-split),
.page-home .home-section-courses .la-section-title:not(.la-title-split),
.page-home .home-section-stories .la-section-title:not(.la-title-split),
.page-home .home-section-about .la-section-title:not(.la-title-split),
.page-home .home-section-offline .home-heading:not(.la-title-split),
.page-home .home-section-courses .home-heading:not(.la-title-split),
.page-home .home-section-stories .home-heading:not(.la-title-split),
.page-home .home-section-about .home-heading:not(.la-title-split),
.page-home .home-section-partners .la-section-title:not(.la-title-split),
.page-home .home-section-partners .home-heading:not(.la-title-split) {
    color: var(--home-text);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.18;
    -webkit-text-fill-color: var(--home-text);
}

.page-home .la-title-split.la-section-title,
.page-home .la-title-split.home-heading {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.18;
}

.page-home .la-section-desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    line-height: 1.75;
    color: var(--home-text-muted);
    max-width: 36rem;
}

.home-section-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--home-accent);
    background: rgba(0, 130, 251, 0.06);
    border-radius: 999px;
}

html:not(.light) .home-section-tagline {
    background: rgba(0, 198, 255, 0.08);
}

.home-typing-feature {
    display: grid;
    gap: 2rem;
    align-items: center;
    padding: 2.75rem;
    background: var(--home-card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--home-card-border);
    border-radius: 28px;
    box-shadow:
        0 0 0 1px var(--home-border-soft),
        0 24px 56px var(--home-glow);
    position: relative;
    overflow: hidden;
}

.home-typing-feature::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .home-typing-feature {
        grid-template-columns: auto 1fr;
        padding: 3.25rem;
    }
}

.home-typing-feature__icon {
    width: 5.5rem;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0ea5e9, #0082fb);
    border-radius: 22px;
    color: #fff;
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.35);
    position: relative;
    z-index: 1;
}

.home-feature-list__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--home-text);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

html:not(.light) .home-feature-list__item {
    background: var(--home-surface-2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-feature-list__item:hover {
    border-color: rgba(0, 130, 251, 0.35);
    box-shadow: 0 8px 28px rgba(0, 130, 251, 0.1);
    transform: translateX(4px);
}

.home-check-icon {
    width: 1.85rem;
    height: 1.85rem;
    background: linear-gradient(145deg, #0082fb, #049fd9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 130, 251, 0.35);
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.home-gallery-item {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    border: 3px solid var(--home-surface);
}

html:not(.light) .home-gallery-item {
    border-color: var(--home-surface-2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.home-gallery-item:hover img {
    transform: scale(1.08);
}

.home-gallery-item--2 { margin-top: 1.75rem; }
.home-gallery-item--3 { margin-top: -1.75rem; }

.home-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: var(--home-accent);
    font-size: 0.95rem;
    transition: gap 0.2s;
}

.home-link-arrow::after {
    content: '→';
    transition: transform 0.2s;
}

.home-link-arrow:hover {
    gap: 0.55rem;
}

.home-link-arrow:hover::after {
    transform: translateX(4px);
}

.home-heading-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #0082fb, #06b6d4);
    border-radius: 999px;
}

.home-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-shadow: 0 1px 2px rgba(245, 158, 11, 0.2);
}

.home-testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--home-border-soft);
    box-shadow: 0 4px 12px var(--home-glow);
}

.home-feature-icon {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0 auto 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0082fb, #049fd9);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 130, 251, 0.3);
}

.home-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    font-weight: 700;
    color: var(--home-text);
    border: 2px solid var(--home-text);
    border-radius: 14px;
    transition: all 0.25s;
    background: transparent;
}

.home-btn-outline:hover {
    background: var(--home-text);
    color: var(--home-bg) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--home-glow);
}

/* Partners */
.home-partner-card {
    width: 10rem;
    min-height: 9.5rem;
    padding: 1.35rem;
    background: var(--home-card-bg);
    border: 1px solid var(--home-card-border);
    border-radius: 18px;
    color: var(--home-text);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

html:not(.light) .home-partner-card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-partner-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px var(--home-glow);
    border-color: var(--home-border-soft);
}

.home-partner-card p {
    color: var(--home-text-soft);
}

.home-partner-initial {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0082fb, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-partners-track {
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-partners-scroll {
    width: max-content;
    animation: home-marquee 45s linear infinite;
}

.home-partners-scroll:hover {
    animation-play-state: paused;
}

/* Testimonials */
.home-badge {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--home-accent);
    border: 1px solid var(--home-border-soft);
    border-radius: 999px;
    background: var(--home-glow);
}

.home-testimonial-card {
    position: relative;
    padding: 2rem 1.75rem;
    background: var(--home-card-bg);
    border: 1px solid var(--home-card-border);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

html:not(.light) .home-testimonial-card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--home-glow);
    font-family: Georgia, serif;
    pointer-events: none;
}

.home-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px var(--home-glow);
    border-color: var(--home-border-soft);
}

.home-course-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    background: var(--home-surface-3);
    color: var(--home-text-muted);
    border-radius: 8px;
}

.home-testimonial-quote {
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
    line-height: 1.8;
    font-weight: 400;
    color: var(--home-text-muted);
    margin-bottom: 1.35rem;
    position: relative;
    z-index: 1;
}

.home-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--home-border);
    margin-bottom: 0.85rem;
    color: var(--home-text);
}

.home-testimonial-author p {
    color: var(--home-text);
}

.home-testimonial-author .opacity-70 {
    color: var(--home-text-soft) !important;
    opacity: 1 !important;
}

.home-tag-bottom {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    background: var(--home-glow);
    color: var(--home-accent);
    border-radius: 8px;
    border: 1px solid var(--home-border-soft);
}

/* Feature cards (about) */
.home-feature-card {
    padding: 2.25rem 1.75rem;
    text-align: center;
    background: var(--home-card-bg);
    border: 1px solid var(--home-card-border);
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    backdrop-filter: blur(8px);
}

html:not(.light) .home-feature-card {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px var(--home-glow);
    border-color: var(--home-border-soft);
}

.home-feature-card h3 {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--home-text);
    margin-bottom: 0.55rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.home-feature-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: var(--home-text-soft);
    line-height: 1.7;
}

/* CTA — Premium dark */
.home-cta {
    padding: 6rem 1.5rem;
    background: linear-gradient(145deg, #0a1628 0%, #0f2744 40%, #0c4a6e 100%);
    border-top: none;
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 20% 100%, rgba(0, 130, 251, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 85% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.home-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 70%);
    pointer-events: none;
}

.home-cta__inner {
    position: relative;
    z-index: 1;
}

.home-cta__title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
    line-height: 1.15;
}

.home-cta__text {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2.25rem;
    line-height: 1.75;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.home-cta .home-hero-v2__btn--primary {
    box-shadow: 0 8px 32px rgba(0, 130, 251, 0.45);
}

/* Course cards on home — theme + polish */
.page-home .course-card {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.page-home .course-card:hover {
    transform: translateY(-8px);
}

html:not(.light) .page-home .course-card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

html:not(.light) .page-home .course-card:hover {
    box-shadow: 0 20px 48px rgba(0, 130, 251, 0.2);
}

/* Hero frame — extra glow in dark */
html:not(.light) .home-hero-v2__frame {
    box-shadow:
        0 0 0 1px rgba(0, 198, 255, 0.15),
        0 32px 64px -16px rgba(0, 130, 251, 0.35),
        0 0 80px rgba(0, 130, 251, 0.15);
}

html:not(.light) .home-hero-v2__grid-bg {
    background-image:
        linear-gradient(rgba(0, 198, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.06) 1px, transparent 1px);
}

html:not(.light) .home-hero-v2__orb--1 { background: rgba(0, 130, 251, 0.25); }
html:not(.light) .home-hero-v2__orb--2 { background: rgba(99, 102, 241, 0.2); }
html:not(.light) .home-hero-v2__orb--3 { background: rgba(0, 198, 255, 0.15); }

/* ========== Optimus-inspired dark theme ========== */
html:not(.light) .home-hero-v2__trust {
    border-top: none;
    gap: 0.85rem;
    padding-top: 1.75rem;
}

html:not(.light) .home-hero-v2__trust-item {
    background: var(--home-stat-bg);
    border: 1px solid var(--home-card-border);
    border-radius: 16px;
    padding: 1.15rem 1rem;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

html:not(.light) .home-hero-v2__trust-item:hover {
    border-color: rgba(0, 130, 251, 0.28);
    box-shadow: 0 8px 28px rgba(0, 130, 251, 0.18);
    transform: translateY(-2px);
}

html:not(.light) .home-hero-v2__trust-item strong {
    color: #0082fb;
    text-shadow:
        0 0 20px rgba(0, 130, 251, 0.6),
        0 0 40px rgba(0, 130, 251, 0.3);
}

html:not(.light) .home-hero-v2__trust-item--rating strong {
    color: #0082fb;
    text-shadow:
        0 0 20px rgba(0, 130, 251, 0.6),
        0 0 40px rgba(0, 130, 251, 0.3);
}

html:not(.light) .page-home .la-section-title,
html:not(.light) .page-home .home-heading {
    text-shadow: none;
}

html:not(.light) .home-feature-card {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

html:not(.light) .home-feature-card:hover {
    border-color: rgba(0, 130, 251, 0.25);
    box-shadow: 0 16px 40px rgba(0, 130, 251, 0.2), 0 0 24px rgba(0, 130, 251, 0.1);
}

html:not(.light) .home-feature-card:nth-child(4) {
    background: linear-gradient(145deg, #0082fb 0%, #0055cc 100%);
    border-color: rgba(0, 130, 251, 0.45);
    box-shadow: 0 8px 32px rgba(0, 130, 251, 0.35);
}

html:not(.light) .home-feature-card:nth-child(4) h3,
html:not(.light) .home-feature-card:nth-child(4) p {
    color: #fff;
}

html:not(.light) .home-feature-card:nth-child(4) .home-feature-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

html:not(.light) .home-testimonial-card {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

html:not(.light) .home-testimonial-card:hover {
    border-color: rgba(0, 130, 251, 0.22);
    box-shadow: 0 20px 48px rgba(0, 130, 251, 0.2), 0 0 28px rgba(0, 130, 251, 0.12);
}

html:not(.light) .home-partner-card {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

html:not(.light) .home-partner-card:hover {
    border-color: rgba(0, 130, 251, 0.22);
    box-shadow: 0 16px 36px rgba(0, 130, 251, 0.18);
}

html:not(.light) .home-feature-list__item {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.06);
}

html:not(.light) .home-feature-list__item:hover {
    border-color: rgba(0, 130, 251, 0.25);
    box-shadow: 0 8px 24px rgba(0, 130, 251, 0.12);
}

html:not(.light) .page-home .course-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #fff;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 130, 251, 0.06);
}

html:not(.light) .page-home .course-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(0, 130, 251, 0.22),
        0 0 0 1px rgba(0, 130, 251, 0.15);
}

html:not(.light) .home-cta__title {
    color: #0082fb;
    text-shadow:
        0 0 24px rgba(0, 130, 251, 0.6),
        0 0 48px rgba(0, 130, 251, 0.3);
}

html:not(.light) .home-hero-v2__frame {
    box-shadow:
        0 0 0 1px rgba(0, 130, 251, 0.2),
        0 32px 64px -16px rgba(0, 130, 251, 0.4),
        0 0 80px rgba(0, 130, 251, 0.25),
        0 0 120px rgba(0, 130, 251, 0.1);
}

/* ========== What Our Clients Say (pre-footer, Optimus-style) ========== */
.home-clients-say {
    position: relative;
    padding: 5rem 0 4.5rem;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 0;
}

html:not(.light) .home-clients-say {
    background: #000000;
}

.home-clients-say__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 82, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 15%, transparent 75%);
    pointer-events: none;
}

html:not(.light) .home-clients-say__grid-bg {
    background-image:
        linear-gradient(rgba(0, 130, 251, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 130, 251, 0.06) 1px, transparent 1px);
}

.home-clients-say__inner {
    position: relative;
    z-index: 1;
}

.home-clients-say__head {
    margin-bottom: 3.5rem;
}

.home-clients-say__title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.home-clients-say__desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.75;
    color: #64748b;
    margin: 0;
}

html:not(.light) .home-clients-say__desc {
    color: #94a3b8;
}

.home-clients-say__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .home-clients-say__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

.home-clients-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e8eef5;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.home-clients-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 82, 255, 0.1);
    border-color: rgba(0, 82, 255, 0.15);
}

html:not(.light) .home-clients-card {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

html:not(.light) .home-clients-card:hover {
    border-color: rgba(0, 130, 251, 0.22);
    box-shadow: 0 20px 48px rgba(0, 130, 251, 0.18), 0 0 24px rgba(0, 130, 251, 0.1);
}

.home-clients-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.home-clients-card__stars {
    color: #0052FF;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

html:not(.light) .home-clients-card__stars {
    color: #0082FB;
    text-shadow: 0 0 12px rgba(0, 130, 251, 0.4);
}

.home-clients-card__quote {
    width: 2rem;
    height: 2rem;
    color: rgba(0, 82, 255, 0.35);
    flex-shrink: 0;
}

html:not(.light) .home-clients-card__quote {
    color: rgba(0, 130, 251, 0.45);
}

.home-clients-card__text {
    flex: 1;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #334155;
    margin: 0 0 1.5rem;
}

html:not(.light) .home-clients-card__text {
    color: #cbd5e1;
}

.home-clients-card__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

html:not(.light) .home-clients-card__author {
    border-top-color: rgba(255, 255, 255, 0.06);
}

.home-clients-card__author img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.home-clients-card__name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f172a;
    margin: 0;
}

html:not(.light) .home-clients-card__name {
    color: #f1f5f9;
}

.home-clients-card__role {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0.15rem 0 0;
}

html:not(.light) .home-clients-card__role {
    color: #94a3b8;
}

.home-clients-say__actions {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.home-clients-say__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.85rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff !important;
    background: linear-gradient(135deg, #0052FF 0%, #0082FB 100%);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 82, 255, 0.35);
    transition: transform 0.25s, box-shadow 0.25s;
}

.home-clients-say__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 82, 255, 0.45);
}

html:not(.light) .home-clients-say__cta {
    box-shadow:
        0 8px 28px rgba(0, 130, 251, 0.4),
        0 0 32px rgba(0, 130, 251, 0.2);
}

html:not(.light) .home-clients-say__cta:hover {
    box-shadow:
        0 12px 40px rgba(0, 130, 251, 0.5),
        0 0 48px rgba(0, 130, 251, 0.28);
}

/* Hide legacy */
.corp-hero { display: none; }

@media (max-width: 640px) {
    .home-hero-v2__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero-v2__btn {
        width: 100%;
        white-space: normal;
    }

    .home-hero-v2__brand {
        font-size: clamp(2.15rem, 11vw, 2.85rem);
    }

    .home-hero-v2 {
        min-height: auto;
    }
}
