:root {
    --bg: #f7f4ec;
    --surface: #fffdf8;
    --surface-strong: #ffffff;
    --text: #192230;
    --muted: #5c6675;
    --line: rgba(25, 34, 48, 0.12);
    --accent: #bb7a1f;
    --accent-strong: #8f5911;
    --accent-soft: rgba(187, 122, 31, 0.12);
    --deep: #10233d;
    --success: #1d7b63;
    --shadow: 0 24px 60px rgba(16, 35, 61, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shell: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(187, 122, 31, 0.16), transparent 24%),
        linear-gradient(180deg, #fbf8f0 0%, #f5f1e7 100%);
    line-height: 1.6;
}

body.page-language-courses {
    --accent: #0f8a73;
    --accent-strong: #0a6857;
    --accent-soft: rgba(15, 138, 115, 0.12);
}

body.page-exam-courses {
    --accent: #c35a2c;
    --accent-strong: #9f461e;
    --accent-soft: rgba(195, 90, 44, 0.12);
}

body.page-it-courses {
    --accent: #2f6fb2;
    --accent-strong: #1d5288;
    --accent-soft: rgba(47, 111, 178, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.shell {
    width: min(var(--shell), calc(100% - 32px));
    margin: 0 auto;
}

.skip-link,
.sr-only {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 120;
    background: var(--deep);
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
}

.announcement-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--deep);
    color: rgba(255, 255, 255, 0.86);
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    font-size: 0.92rem;
}

.announcement-bar p {
    margin: 0;
}

.announcement-bar a {
    color: #fff;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(18px);
    background: rgba(247, 244, 236, 0.88);
    border-bottom: 1px solid rgba(16, 35, 61, 0.08);
}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 80px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
}

.brand small {
    font-size: 0.82rem;
    color: var(--muted);
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--deep), #1a416d);
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    letter-spacing: 0.03em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.96rem;
}

.site-nav a {
    position: relative;
    padding: 4px 0;
    color: var(--muted);
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--accent);
    transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-nav a.is-active,
.site-nav a:hover {
    color: white;
}

/* --- Nav Dropdown ----------------------------------------- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    background: none;
    border: none;
    font-size: 0.96rem;
    font-family: inherit;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle {
    color: var(--text);
}

.nav-dropdown__chevron {
    transition: transform 0.22s ease;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(16, 35, 61, 0.14);
    z-index: 200;
    animation: dropdown-in 0.18s ease both;
}

@keyframes dropdown-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
}

.nav-dropdown__menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 500;
    transition: background 0.18s ease, color 0.18s ease;
    text-decoration: none;
}

.nav-dropdown__menu li a:hover,
.nav-dropdown__menu li a.is-active {
    background: var(--surface);
    color: var(--text);
}

.nav-dropdown__menu li a::after {
    display: none;
}

.nav-dropdown__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 7px;
    border-radius: 8px;
    background: rgba(0, 172, 120, 0.10);
    border: 1px solid rgba(0, 172, 120, 0.18);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
    padding: 12px 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--deep);
    border-radius: 999px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 18px 30px rgba(16, 35, 61, 0.12);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    border-color: var(--line);
}

.hero {
    padding: 72px 0 0px;
}

.hero--home {
    padding-top: 36px;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
    gap: 28px;
    align-items: stretch;
}

.hero__content,
.hero-panel,
.feature-card,
.category-card,
.testimonial-card,
.step-card,
.support-card,
.related-links__item,
.stat-card,
.cta-band__inner,
.promo-banner__inner {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 35, 61, 0.08);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
}

.hero__content {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero__content::before {
    content: '';
    position: absolute;
    inset: auto -15% -28% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 68%);
}

.hero-panel {
    padding: 28px;
    background: linear-gradient(180deg, rgba(16, 35, 61, 0.97), rgba(24, 53, 87, 0.97));
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow--dark {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.12;
}

h1,
h2 {
    font-family: 'Fraunces', serif;
    letter-spacing: -0.02em;
}

h1 {
    margin-top: 18px;
    font-size: clamp(2.5rem, 4vw, 4.7rem);
}

h2 {
    font-size: clamp(2rem, 3vw, 3.1rem);
}

h3 {
    font-size: 1.2rem;
}

.hero__lead,
.section-heading p,
.feature-card p,
.testimonial-card p,
.step-card p,
.support-card p,
.category-card p,
.related-links__item span,
.faq-item p,
.hero__offer,
.site-footer__summary,
.contact-list,
.promo-banner p {
    color: var(--muted);
}

.hero__lead {
    margin: 18px 0 0;
    max-width: 60ch;
    font-size: 1.05rem;
}

.hero__offer {
    margin: 22px 0 0;
    max-width: 56ch;
}

.hero__actions,
.cta-band__actions,
.support-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-panel__label {
    margin-bottom: 18px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.78);
}

.hero-panel__stack {
    display: grid;
    gap: 14px;
}

.hero-panel__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel__item strong,
.hero-panel__item small {
    display: block;
}

.hero-panel__item small {
    color: rgba(255, 255, 255, 0.72);
}

.hero-panel__badge,
.category-card__badge {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 800;
}

.hero-panel__item--stat {
    grid-template-columns: 1fr;
}

.hero-panel__item--stat strong {
    font-size: 1.3rem;
}

.trust-inline,
.contact-list,
.site-footer ul,
.category-card__points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.trust-inline li {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 0.92rem;
}

.trust-inline--dark li {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
}

.hero--home {
    padding-top: 0;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 20px 0 0;
    background: linear-gradient(135deg, #08131a 0%, #0d2e3d 42%, #0a161f 100%);
    box-shadow: 0 28px 72px rgba(5, 14, 23, 0.28);
}

.home-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 50%, rgba(11, 103, 83, 0.34), transparent 32%),
        radial-gradient(circle at 100% 0%, rgba(187, 122, 31, 0.18), transparent 28%),
        linear-gradient(90deg, rgba(6, 15, 22, 0.94) 0%, rgba(6, 15, 22, 0.78) 48%, rgba(6, 15, 22, 0.28) 100%);
    pointer-events: none;
}

.home-hero__grid,
.home-hero__stats,
.home-hero__quick-actions {
    position: relative;
    z-index: 1;
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: center;
}

.home-hero__content {
    max-width: 700px;
}

.home-hero__content h1,
.home-hero__content .hero__lead,
.home-hero__content .hero__offer {
    color: #fff;
}

.home-hero__content h1 {
    margin-top: 18px;
    max-width: 11ch;
    font-size: clamp(3rem, 5vw, 4rem) !important;
    line-height: 0.98;
}

.home-hero__content .hero__lead {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.78);
}

.home-hero__content .hero__offer {
    color: rgba(255, 255, 255, 0.74);
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 214, 64, 0.12);
    border: 1px solid rgba(255, 214, 64, 0.18);
    color: #ffd640;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-hero__badge::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 8px rgba(255, 214, 64, 0.08);
}

.home-hero__category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.home-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.home-hero__pill span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    font-weight: 800;
}

.home-hero__actions .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
}

.home-hero__visual {
    position: relative;
    min-height: 540px;
}

.home-hero__scene {
    position: absolute;
    inset: 0 0 56px 58px;
    margin: 0;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(4, 12, 18, 0.34);
}

.home-hero__scene img,
.home-hero__device-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__scene-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 10, 16, 0.08) 0%, rgba(3, 10, 16, 0.52) 100%),
        linear-gradient(90deg, rgba(3, 10, 16, 0.04) 0%, rgba(3, 10, 16, 0.48) 100%);
}

.home-hero__device-card {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(360px, 72%);
    padding: 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 60px rgba(4, 12, 18, 0.34);
}

.home-hero__device-card img {
    border-radius: 18px;
}

.home-hero__floating-note {
    position: absolute;
    right: 0;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    color: #fff;
    box-shadow: 0 20px 36px rgba(4, 12, 18, 0.24);
}

.home-hero__floating-note strong,
.home-hero__floating-note span {
    display: block;
}

.home-hero__floating-note span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.home-hero__floating-note--one {
    top: 36px;
    max-width: 230px;
}

.home-hero__floating-note--two {
    right: 26px;
    bottom: 168px;
    max-width: 250px;
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
    overflow: hidden;
}

.home-hero__stat-card {
    padding: 28px 24px;
    text-align: center;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.home-hero__stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 214, 64, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.home-hero__stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 214, 64, 0.05) 50%, transparent 100%);
    opacity: 0;
    animation: stat-card-shimmer 3s infinite;
    pointer-events: none;
}

.home-hero__stat-card:hover {
    border-color: rgba(255, 214, 64, 0.35);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0 20px 48px rgba(255, 214, 64, 0.12), 0 12px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.home-hero__stat-card:hover::before {
    opacity: 1;
}

@keyframes stat-card-shimmer {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    10%,
    90% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.home-hero__stat-card strong,
.home-hero__stat-card span {
    display: block;
    position: relative;
    z-index: 1;
}

.home-hero__stat-card strong {
    color: #ffd640;
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.home-hero__stat-card span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.home-hero__stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 214, 64, 0.15), rgba(255, 160, 30, 0.08));
    border: 1px solid rgba(255, 214, 64, 0.2);
    color: #ffd640;
    animation: stat-icon-float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.home-hero__stat-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.home-hero__stat-card:hover .home-hero__stat-icon {
    background: linear-gradient(135deg, rgba(255, 214, 64, 0.25), rgba(255, 160, 30, 0.15));
    border-color: rgba(255, 214, 64, 0.4);
    transform: scale(1.1);
}

@keyframes stat-icon-float {

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

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

@keyframes stat-card-stagger-1 {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes stat-card-stagger-2 {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes stat-card-stagger-3 {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes stat-card-stagger-4 {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.home-hero__stat-card:nth-child(1) {
    animation: stat-card-stagger-1 0.6s ease-out 0.1s both;
}

.home-hero__stat-card:nth-child(2) {
    animation: stat-card-stagger-2 0.6s ease-out 0.2s both;
}

.home-hero__stat-card:nth-child(3) {
    animation: stat-card-stagger-3 0.6s ease-out 0.3s both;
}

.home-hero__stat-card:nth-child(4) {
    animation: stat-card-stagger-4 0.6s ease-out 0.4s both;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.highlight-stats .home-hero__stat-card {
    padding: 24px 20px;
}

@media (max-width: 1024px) {
    .highlight-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .highlight-stats {
        grid-template-columns: 1fr;
    }

    .highlight-stats .home-hero__stat-card {
        padding: 18px 16px;
    }
}

.home-hero__quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
    padding-bottom: 56px;
}

.home-hero__quick-card {
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: 0 18px 36px rgba(4, 12, 18, 0.18);
}

.home-hero__quick-card strong,
.home-hero__quick-card span {
    display: block;
}

.home-hero__quick-card span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
}

.stats-band {
    padding: 6px 0 10px;
}

.stats-band__grid,
.feature-grid,
.steps-grid,
.testimonial-grid,
.category-grid {
    display: grid;
    gap: 18px;
}

.media-slider-section .section-heading {
    margin-bottom: 24px;
}

.media-slider {
    display: grid;
    gap: 18px;
}

.media-slider__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.media-slider__dots,
.media-slider__controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.media-slider__dot,
.media-slider__control {
    appearance: none;
    border: 0;
    cursor: pointer;
}

.media-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(16, 35, 61, 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.media-slider__dot.is-active {
    transform: scale(1.2);
    background: var(--accent);
}

.media-slider__control {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
    border: 1px solid var(--line);
    font-weight: 700;
}

.media-slider__control[disabled] {
    opacity: 0.45;
    cursor: default;
}

.media-slider__viewport {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 78%);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.media-slider__viewport::-webkit-scrollbar {
    display: none;
}

.media-slide {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 0;
    overflow: hidden;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 35, 61, 0.08);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
}

.media-slide__figure {
    margin: 0;
    min-height: 100%;
    background: linear-gradient(145deg, rgba(16, 35, 61, 0.08), rgba(16, 35, 61, 0.02));
}

.media-slide__figure img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.media-slide__body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media-slide__eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.media-slide__body h3 {
    font-size: 1.45rem;
}

.media-slide__body p {
    margin: 14px 0 0;
    color: var(--muted);
}

.stats-band__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    padding: 24px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 1.7rem;
    color: var(--deep);
}

.section {
    padding: 72px 0;
}

.section--muted {
    background: rgba(255, 255, 255, 0.38);
    border-top: 1px solid rgba(16, 35, 61, 0.06);
    border-bottom: 1px solid rgba(16, 35, 61, 0.06);
}

.landing-help-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.landing-help-hero .shell {
    width: 100%;
}

.landing-help-hero .home-hero {
    margin: 0;
}

.section-heading {
    max-width: auto !important;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin-top: 18px;
}

.section-heading p {
    margin: 14px 0 0;
}

.category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-card,
.feature-card,
.testimonial-card,
.step-card,
.support-card,
.related-links__item {
    padding: 28px;
}

.category-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.category-card__top p {
    margin: 0;
    color: var(--accent-strong);
    font-weight: 700;
}

.category-card__badge {
    background: linear-gradient(135deg, var(--deep), var(--accent));
}

.category-card__points {
    display: grid;
    gap: 10px;
    margin: 18px 0 22px;
}

.category-card__points li,
.contact-list li {
    position: relative;
    padding-left: 18px;
}

.category-card__points li::before,
.contact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card__number {
    display: inline-block;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--accent-strong);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
    align-items: start;
}

.feature-list,
.related-links,
.faq-list {
    display: grid;
    gap: 18px;
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    margin: 0;
}

.testimonial-card footer {
    margin-top: 18px;
    font-weight: 700;
    color: var(--deep);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: start;
}

.faq-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--deep);
}

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

.faq-item p {
    margin: 14px 0 0;
}

.support-card {
    background: linear-gradient(180deg, rgba(16, 35, 61, 0.98), rgba(26, 65, 109, 0.98));
    color: #fff;
}

.support-card p {
    color: rgba(255, 255, 255, 0.74);
}

.support-card .button-secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.related-links__item {
    display: block;
}

.related-links__item strong {
    display: block;
    margin-bottom: 6px;
}

.cta-band__inner {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, rgba(16, 35, 61, 0.96), rgba(17, 41, 69, 0.92));
    color: #fff;
}

.cta-band__inner p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.cta-band .eyebrow {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.promo-banner {
    padding-top: 18px;
}

.promo-banner__inner {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.promo-banner p {
    margin: 0;
}

.promo-banner span {
    color: var(--accent-strong);
    font-weight: 800;
}

.promo-banner a {
    font-weight: 700;
    color: var(--deep);
}

.site-footer {
    padding: 44px 0 18px;
    background: var(--deep);
    color: rgba(255, 255, 255, 0.84);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
    gap: 24px;
}

.site-footer h2 {
    margin-bottom: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
}

.site-footer ul {
    display: grid;
    gap: 10px;
}

.site-footer a:hover {
    color: #fff;
}

.brand--footer .brand-mark {
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 22px;
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.mobile-cta {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button,
    .reveal,
    .site-nav a::after {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {

    .hero__grid,
    .two-column,
    .faq-layout,
    .site-footer__grid,
    .cta-band__inner {
        grid-template-columns: 1fr;
    }

    .cta-band__inner {
        display: grid;
    }

    .stats-band__grid,
    .feature-grid,
    .steps-grid,
    .testimonial-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero {
        padding: 32px;
    }

    .home-hero__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        min-height: 500px;
    }

    .home-hero__scene {
        inset: 0 0 56px 70px;
    }

    .home-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero__quick-actions {
        grid-template-columns: 1fr;
    }

    .media-slider__viewport {
        grid-auto-columns: minmax(0, 88%);
    }

    .media-slide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-block;
    }

    .site-header__cta {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: #fff;
        border-radius: 24px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px 8px;
    }

    /* --- Dropdown mobile --------------------------------- */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown__toggle {
        width: 100%;
        padding: 12px 8px;
        justify-content: space-between;
    }

    .nav-dropdown__menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 12px;
        background: var(--surface);
        padding: 4px 8px;
        margin-top: 2px;
        animation: none;
    }

    @keyframes dropdown-in {
        from {}

        to {}
    }

    .nav-dropdown__menu li a {
        padding: 10px 10px;
    }

    .announcement-bar__inner,
    .site-footer__bottom,
    .promo-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-hero__scene {
        inset: 0 0 42px 34px;
    }

    .home-hero__floating-note--two {
        right: 8px;
        bottom: 148px;
    }

    .media-slider__toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(var(--shell), calc(100% - 24px));
    }

    .hero,
    .section {
        padding: 54px 0;
    }

    .hero--home {
        padding-top: 22px;
    }

    .hero__content,
    .hero-panel,
    .feature-card,
    .category-card,
    .testimonial-card,
    .step-card,
    .support-card,
    .related-links__item,
    .stat-card,
    .cta-band__inner,
    .promo-banner__inner {
        padding: 22px;
        border-radius: 22px;
    }

    .hero__grid,
    .stats-band__grid,
    .feature-grid,
    .steps-grid,
    .testimonial-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 22px;
        border-radius: 26px;
    }

    .home-hero__content h1 {
        max-width: 100%;
        font-size: clamp(2.5rem, 12vw, 3.8rem);
    }

    .home-hero__visual {
        min-height: 360px;
    }

    .home-hero__scene {
        inset: 0 0 34px 18px;
        border-radius: 24px;
    }

    .home-hero__device-card {
        width: min(260px, 72%);
        padding: 10px;
        border-radius: 22px;
    }

    .home-hero__floating-note {
        position: static;
        margin-top: 12px;
    }

    .home-hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .home-hero__stat-card {
        padding: 20px 14px;
    }

    .home-hero__stat-card strong {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .home-hero__stat-card span {
        font-size: 0.85rem;
    }

    .home-hero__stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .home-hero__stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .home-hero__pill {
        width: 100%;
        justify-content: flex-start;
    }

    .media-slider__viewport {
        grid-auto-columns: 100%;
    }

    .media-slide__figure img {
        min-height: 240px;
    }

    .hero__actions,
    .cta-band__actions,
    .support-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .mobile-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: block;
        z-index: 100;
        padding: 10px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid var(--line);
        border-radius: 20px;
        backdrop-filter: blur(18px);
        box-shadow: 0 18px 38px rgba(16, 35, 61, 0.16);
    }
}

/* ============================================================
   HERO--HOME  ·  Enhanced Design
   Scoped exclusively to .hero--home / .home-hero
   ============================================================ */

/* --- Keyframes -------------------------------------------- */
@keyframes hh-aurora {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.08);
    }

    66% {
        transform: translate(-30px, 20px) scale(0.96);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes hh-aurora2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(-50px, 40px) scale(1.12);
    }

    70% {
        transform: translate(30px, -20px) scale(0.94);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes hh-pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 214, 64, 0.55);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 214, 64, 0);
    }
}

@keyframes hh-float-one {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes hh-float-two {

    0%,
    100% {
        transform: translateY(0px) rotate(1deg);
    }

    50% {
        transform: translateY(-14px) rotate(-1deg);
    }
}

@keyframes hh-glow-scan {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

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

@keyframes hh-gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes hh-stat-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hh-card-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* --- Root wrapper ----------------------------------------- */
.hero--home {
    padding-top: 0 !important;
    overflow: hidden;
}

.home-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            #030c14 0%,
            #071828 28%,
            #0b2d40 54%,
            #071520 78%,
            #020a10 100%);
    isolation: isolate;
}

/* --- Multi-layer animated backdrop ----------------------- */
.home-hero__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-hero__backdrop::before,
.home-hero__backdrop::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform;
}

/* Teal aurora blob */
.home-hero__backdrop::before {
    width: 680px;
    height: 680px;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(0, 191, 143, 0.26) 0%, transparent 68%);
    animation: hh-aurora 14s ease-in-out infinite;
}

/* Amber aurora blob */
.home-hero__backdrop::after {
    width: 520px;
    height: 520px;
    right: -80px;
    top: -60px;
    background: radial-gradient(circle, rgba(255, 160, 30, 0.18) 0%, transparent 65%);
    animation: hh-aurora2 18s ease-in-out infinite;
}

/* Dot-grid noise overlay */
.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Scanline gloss sweep */
.home-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 191, 143, 0.04) 45%,
            transparent 100%);
    animation: hh-glow-scan 8s ease-in-out infinite;
    pointer-events: none;
}

/* --- Inner z-index stack --------------------------------- */
.home-hero__grid,
.home-hero__stats,
.home-hero__quick-actions {
    position: relative;
    z-index: 2;
}

/* --- Grid --------------------------------------------- */
.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 48px;
    align-items: center;
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

/* --- Badge -------------------------------------------- */
.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 214, 64, 0.14) 0%, rgba(255, 160, 30, 0.08) 100%);
    border: 1px solid rgba(255, 214, 64, 0.32);
    color: #ffd640;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 24px rgba(255, 214, 64, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd640;
    box-shadow: 0 0 0 0 rgba(255, 214, 64, 0.55);
    animation: hh-pulse-dot 2s ease-out infinite;
}

/* --- Eyebrow tag -------------------------------------- */
.home-hero__content .eyebrow--dark {
    background: rgba(0, 191, 143, 0.12);
    border: 1px solid rgba(0, 191, 143, 0.22);
    color: rgba(140, 255, 220, 0.92);
    margin-top: 14px;
    backdrop-filter: blur(8px);
}

/* --- Headline ----------------------------------------- */
.home-hero__content h1 {
    margin-top: 20px;
    font-size: clamp(3.2rem, 5.5vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    background: linear-gradient(160deg,
            #ffffff 0%,
            rgba(255, 255, 255, 0.92) 40%,
            rgba(0, 220, 170, 0.88) 75%,
            rgba(255, 214, 64, 0.82) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hh-gradient-shift 7s ease infinite;
    max-width: 13ch;
}

/* --- Lead & Offer ------------------------------------- */
.home-hero__content .hero__lead {
    margin-top: 20px;
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 54ch;
}

.home-hero__content .hero__offer {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.93rem;
}

/* --- Category pills ----------------------------------- */
.home-hero__category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.home-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px 9px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    text-decoration: none;
}

.home-hero__pill:hover {
    background: rgba(0, 191, 143, 0.14);
    border-color: rgba(0, 191, 143, 0.30);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 191, 143, 0.14);
    color: #fff;
}

.home-hero__pill span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 191, 143, 0.18);
    border: 1px solid rgba(0, 191, 143, 0.24);
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(140, 255, 220, 0.95);
}

/* --- CTA buttons -------------------------------------- */
.home-hero__actions {
    margin-top: 32px;
}

.home-hero__actions .button-primary {
    background: linear-gradient(135deg, #00bf8f 0%, #00a07a 100%);
    border: none;
    box-shadow:
        0 0 0 1px rgba(0, 191, 143, 0.5),
        0 8px 28px rgba(0, 191, 143, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero__actions .button-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(0, 191, 143, 0.6),
        0 14px 40px rgba(0, 191, 143, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.home-hero__actions .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-hero__actions .button-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

/* --- Trust inline ------------------------------------- */
.home-hero__content .trust-inline--dark {
    margin-top: 26px;
}

.home-hero__content .trust-inline--dark li {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    transition: background 0.2s ease;
}

.home-hero__content .trust-inline--dark li:hover {
    background: rgba(255, 255, 255, 0.10);
}

/* --- Visual column ------------------------------------ */
.home-hero__visual {
    position: relative;
    min-height: 560px;
}

.home-hero__scene {
    position: absolute;
    inset: 0 0 64px 64px;
    margin: 0;
    overflow: hidden;
    border-radius: 36px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 40px 80px rgba(2, 8, 15, 0.52),
        0 0 80px rgba(0, 191, 143, 0.08);
}

.home-hero__scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 8s ease;
}

.home-hero__visual:hover .home-hero__scene img {
    transform: scale(1.06);
}

.home-hero__scene-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 10, 18, 0.04) 0%, rgba(3, 10, 18, 0.6) 100%),
        linear-gradient(90deg, rgba(3, 10, 18, 0.02) 0%, rgba(3, 10, 18, 0.38) 100%);
}

.home-hero__scene::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    border: 1px solid rgba(0, 191, 143, 0.18);
    pointer-events: none;
}

/* --- Device card -------------------------------------- */
.home-hero__device-card {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(340px, 70%);
    padding: 12px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(22px);
    box-shadow:
        0 30px 60px rgba(2, 8, 15, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.home-hero__device-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 40px 80px rgba(2, 8, 15, 0.52);
}

.home-hero__device-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* --- Floating notes ----------------------------------- */
.home-hero__floating-note {
    position: absolute;
    padding: 16px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(22px);
    color: #fff;
    box-shadow:
        0 22px 44px rgba(2, 8, 15, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.home-hero__floating-note strong {
    display: block;
    font-size: 0.94rem;
    font-weight: 700;
    color: #fff;
}

.home-hero__floating-note span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.4;
}

.home-hero__floating-note--one {
    top: 28px;
    right: -2px;
    max-width: 222px;
    animation: hh-float-one 5s ease-in-out infinite;
}

.home-hero__floating-note--two {
    right: 20px;
    bottom: 160px;
    max-width: 244px;
    animation: hh-float-two 6s ease-in-out infinite 1s;
}

.home-hero__floating-note--one::before,
.home-hero__floating-note--two::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(0, 191, 143, 0.22), rgba(0, 191, 143, 0.08));
    border: 1px solid rgba(0, 191, 143, 0.24);
}

/* --- Stats strip -------------------------------------- */
.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 32px;
    overflow: hidden;
    background: rgba(2, 8, 15, 0.44);
    backdrop-filter: blur(18px);
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
    border-radius: 28px 28px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: none;
    animation: hh-stat-in 0.8s ease both;
}

.home-hero__stat-card {
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: background 0.22s ease;
}

.home-hero__stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.home-hero__stat-card+.home-hero__stat-card {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.home-hero__stat-card strong {
    display: block;
    color: #ffd640;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 0 0 32px rgba(255, 214, 64, 0.35);
}

.home-hero__stat-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

/* --- Quick-action cards ------------------------------- */
.home-hero__quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 0;
    padding: 14px;
    padding-bottom: 56px;
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
    background: rgba(2, 8, 15, 0.44);
    backdrop-filter: blur(18px);
    border-radius: 0 0 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.home-hero__quick-card {
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.home-hero__quick-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 80%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-hero__quick-card:hover::before {
    opacity: 1;
    animation: hh-card-shimmer 0.7s ease;
}

.home-hero__quick-card:hover {
    background: rgba(0, 191, 143, 0.08);
    border-color: rgba(0, 191, 143, 0.20);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 191, 143, 0.10);
}

.home-hero__quick-card strong {
    display: block;
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
}

.home-hero__quick-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.45;
}

.home-hero__quick-card::after {
    content: '→';
    position: absolute;
    top: 22px;
    right: 20px;
    color: rgba(0, 191, 143, 0.6);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.home-hero__quick-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* --- hero--home Responsive ---------------------------------------- */
@media (max-width: 1024px) {
    .home-hero__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        min-height: 380px;
    }

    .home-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-hero {
        padding-top: 64px;
    }

    .home-hero__content h1 {
        font-size: clamp(2.6rem, 9vw, 4rem);
    }

    .home-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero__quick-actions {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        min-height: 300px;
    }
}

/* Extracted Inline Styles */
.prm-custom-1 {
    height: 230px;
    border-radius: 10px 10px 0px 0px;
}

.prm-custom-2 {
    padding: 0;
    background: #0B0121;
}

.prm-custom-3 {
    max-width: 1300px;
    margin: 0 auto;
    width: 95%;
}

.prm-custom-4 {
    min-height: auto;
    !important;
}

.prm-custom-5 {
    border-radius: 10px;
}

.prm-custom-6 {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
}

.prm-custom-7 {
    background: linear-gradient(180deg, #06101a 0%, #0d2438 100%);
    padding: 80px 0;
}

.prm-custom-8 {
    margin-bottom: 48px;
}

.prm-custom-9 {
    color: #fff;
}

.prm-custom-10 {
    color: rgba(255, 255, 255, 0.6);
}

.prm-custom-11 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    margin: 0;
}

.prm-custom-12 {
    position: absolute;
    top: 18px;
    right: 26px;
    font-size: 5rem;
    line-height: 1;
    color: #ffd640;
    opacity: 0.13;
    font-family: Georgia, serif;
    font-weight: 900;
    pointer-events: none;
}

.prm-custom-13 {
    display: flex;
    gap: 2px;
    margin-bottom: 18px;
}

.prm-custom-14 {
    color: #ffd640;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.prm-custom-15 {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 24px;
    font-style: italic;
}

.prm-custom-16 {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 0 20px;
}

.prm-custom-17 {
    display: flex;
    align-items: center;
    gap: 14px;
}

.prm-custom-18 {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd640, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: #10233d;
    line-height: 1;
}

.prm-custom-19 {
    flex: 1;
    min-width: 0;
}

.prm-custom-20 {
    margin: 0;
    font-weight: 700;
    font-size: 0.88rem;
    color: #fff;
}

.prm-custom-21 {
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.prm-custom-22 {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.22);
}

.prm-custom-23 {
    background: linear-gradient(180deg, #06101a 0%, #0c1e30 100%);
    padding: 80px 0;
}

.prm-custom-24 {
    margin-bottom: 56px;
}

.prm-custom-25 {
    color: rgba(255, 255, 255, 0.6);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.prm-custom-26 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.prm-custom-27 {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 214, 64, 0.75);
    white-space: nowrap;
}

.prm-custom-28 {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.prm-custom-29 {
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 214, 64, 0.6);
    margin-bottom: 8px;
}

.prm-custom-30 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.2;
}

.prm-custom-31 {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.82rem;
    margin: 0 0 20px;
    line-height: 1.4;
}

.prm-custom-32 {
    margin-bottom: 20px;
}

.prm-custom-33 {
    font-size: 2.1rem;
    font-weight: 900;
    color: #ffd640;
    line-height: 1;
}

.prm-custom-34 {
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.8rem;
    margin-left: 4px;
}

.prm-custom-35 {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.73rem;
    margin: 4px 0 0;
}

.prm-custom-36 {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 9999px;
    border: 1.5px solid rgba(255, 214, 64, 0.55);
    color: #ffd640;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
}

.prm-custom-37 {
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.prm-custom-38 {
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffd640;
    margin-bottom: 8px;
}

.prm-custom-39 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.2;
}

.prm-custom-40 {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    margin: 0 0 20px;
    line-height: 1.4;
}

.prm-custom-41 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffd640;
    line-height: 1;
}

.prm-custom-42 {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    margin-left: 4px;
}

.prm-custom-43 {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.73rem;
    margin: 4px 0 0;
}

.prm-custom-44 {
    text-align: center;
    display: block;
    cursor: pointer;
}

.prm-custom-45 {
    border-color: rgba(255, 214, 64, 0.22);
}

.prm-custom-46 {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: #ffd640;
    border: 1px solid rgba(255, 214, 64, 0.4);
}

.prm-custom-47 {
    text-align: center;
    padding-top: 8px;
}

.prm-custom-48 {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.83rem;
    margin: 0;
}

.prm-custom-49 {
    vertical-align: middle;
    margin-right: 5px;
}

.prm-custom-50 {
    display: grid;
    gap: 14px;
    margin-top: 40px;
}

.prm-custom-51 {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(16, 35, 61, 0.10);
}

.prm-custom-52 {
    flex-shrink: 0;
    width: 148px;
    background: linear-gradient(160deg, #10233d 0%, #1a3a5c 100%);
    padding: 28px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.prm-custom-53 {
    font-size: 2.4rem;
    line-height: 1;
    font-family: 'Courier New', monospace;
    font-weight: 900;
    color: #ffd640;
    letter-spacing: -0.02em;
}

.prm-custom-54 {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.prm-custom-55 {
    flex: 1;
    background: rgba(255, 255, 255, 0.88);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(16, 35, 61, 0.07);
    border-left: none;
    border-radius: 0 20px 20px 0;
}

.prm-custom-56 {
    flex: 1;
}

.prm-custom-57 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.prm-custom-58 {
    margin: 0 0 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
}

.prm-custom-59 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.prm-custom-60 {
    font-size: 0.76rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.prm-custom-61 {
    flex-shrink: 0;
    white-space: nowrap;
}

.prm-custom-62 {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.prm-custom-63 {
    font-size: 2rem;
    line-height: 1;
    font-family: 'Courier New', monospace;
    font-weight: 900;
    color: #ffd640;
    letter-spacing: -0.04em;
}

.prm-custom-64 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 2px dashed rgba(255, 214, 64, 0.28);
}

.prm-custom-65 {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    padding: 32px;
}

.prm-custom-66 {
    display: block;
    margin: 0 auto 16px;
}

.prm-custom-67 {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.prm-custom-68 {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.prm-custom-69 {
    font-size: 2.1rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: #ffd640;
}

.prm-custom-70 {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.prm-custom-71 {
    background: #F8FAFC;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #E2E8F0;
}

.prm-custom-72 {
    margin-bottom: 1.5rem;
}

.prm-custom-73 {
    display: flex;
    align-items: center;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .875rem;
    color: #64748B;
}

.prm-custom-74 {
    color: #2563EB;
    text-decoration: none;
}

.prm-custom-75 {
    color: #CBD5E1;
}

.prm-custom-76 {
    color: #1E293B;
    font-weight: 500;
}

.prm-custom-77 {
    max-width: 680px;
}

.prm-custom-78 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1E293B;
    margin: .75rem 0 1rem;
    line-height: 1.2;
}

.prm-custom-79 {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.prm-custom-80 {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.prm-custom-81 {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}

.prm-custom-82 {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
}

.prm-custom-83 {
    margin: 0 auto 1rem;
}

.prm-custom-84 {
    color: #64748B;
    margin: 0;
}

.prm-custom-85 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prm-custom-86 {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
    cursor: pointer;
}

.prm-custom-87 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}

.prm-custom-88 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.prm-custom-89 {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #EFF6FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.prm-custom-90 {
    font-size: 1rem;
    font-weight: 600;
    color: #1E293B;
    margin: 0 0 .25rem;
    line-height: 1.4;
}

.prm-custom-91 {
    font-size: .8125rem;
    color: #94A3B8;
    margin: 0;
}

.prm-custom-92 {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

.prm-custom-93 {
    display: none;
    border-top: 1px solid #F1F5F9;
    padding: 1.5rem;
    color: #475569;
    font-size: .9375rem;
    line-height: 1.75;
}

.prm-custom-94 {
    margin-top: 2.5rem;
}

.prm-custom-95 {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
}

.prm-custom-96 {
    position: sticky;
    top: 100px;
}

.prm-custom-97 {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.5rem;
}

.prm-custom-98 {
    font-size: .8125rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 1rem;
}

.prm-custom-99 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.prm-custom-100 {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prm-custom-101 {
    background: #1E293B;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}

.prm-custom-102 {
    color: #F8FAFC;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 .5rem;
}

.prm-custom-103 {
    color: #94A3B8;
    font-size: .875rem;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.prm-custom-104 {
    display: block;
    text-align: center;
    font-size: .875rem;
    padding: .625rem 1rem;
}

.prm-custom-105 {
    background: #0B0121;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prm-custom-106 {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.prm-custom-107 {
    display: flex;
    gap: 32px;
    align-items: center;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.prm-custom-108 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prm-custom-109 {
    background: #E81C65;
    color: white;
    border-radius: 999px;
    padding: 14px 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(232, 28, 101, 0.4);
}

.prm-custom-110 {
    background: #0B0121;
    border-bottom: none;
    padding: 12px 0;
}

.prm-custom-111 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.prm-custom-112 {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prm-custom-113 {
    height: 44px;
    object-fit: contain;
    border-radius: 0;
}

.prm-custom-114 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prm-custom-115 {
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.prm-custom-116 {
    font-size: 0.6rem;
    vertical-align: super;
    color: #aaa;
}

.prm-custom-117 {
    color: white;
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: 500;
}

.prm-custom-118 {
    background: white;
}

.prm-custom-119 {
    display: flex;
    gap: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    align-items: center;
}

.prm-custom-120 {
    color: #FFD640;
    text-decoration: none;
    border-bottom: 2px solid #FFD640;
    padding-bottom: 4px;
}

.prm-custom-121 {
    color: white;
    text-decoration: none;
}

.prm-custom-122 {
    display: flex;
    gap: 12px;
    align-items: center;
}

.prm-custom-123 {
    color: white;
    border: 1px solid white;
    background: transparent;
    border-radius: 999px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.prm-custom-124 {
    color: #D71E42;
    background: #FFD640;
    border-radius: 999px;
    padding: 8px 24px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
}

/* Dynamic Category Link Styles */
.prm-category-link {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .625rem .75rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: .9375rem;
    font-weight: 400;
    color: #475569;
    background: transparent;
    transition: background .15s, color .15s;
}

.prm-category-link.is-active {
    font-weight: 600;
    color: #2563EB;
    background: #EFF6FF;
}

.prm-category-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: #CBD5E1;
    border-radius: 50%;
}

.prm-category-dot.is-active {
    background: #2563EB;
}

/* Explore. Learn. Excel. Section */
.explore-learn-excel-section {
    padding: 60px 0;
    text-align: center;
    background: #ffffff;
}

.ele-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.ele-explore {
    color: #6a3bb4;
}

.ele-learn {
    color: #7bb844;
}

.ele-excel-container {
    position: relative;
    display: inline-block;
}

.ele-excel {
    color: #226bb6;
}

.ele-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 12px;
}

.ele-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.ele-card {
    width: 140px;
    height: 150px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ele-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ele-icon svg {
    width: 100%;
    height: 100%;
}

.ele-icon.has-text-bubble {
    position: relative;
}

.bubble-text {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fa8b30;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.ele-card.math {
    background-color: #693bb4;
}

.ele-card.science {
    background-color: #7bb844;
}

.ele-card.english {
    background-color: #226bb6;
}

.ele-card.afrikaans {
    background-color: #fa8b30;
}

.ele-card.life {
    background-color: #f04e82;
}

.ele-card.social {
    background-color: #25b4aa;
}

.ele-card.creative {
    background-color: #fcb714;
}

@media (max-width: 1024px) {
    .ele-grid {
        gap: 10px;
    }

    .ele-card {
        width: 120px;
        height: 130px;
        font-size: 12px;
    }

    .ele-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .ele-title {
        font-size: 32px;
    }

    .ele-card {
        width: 130px;
        height: 140px;
    }
}


.slider_background {
    background: linear-gradient(to right, #0a0346 50%, #190a67 50%);
}

/* Learning Stage Section */
.learning-stage-section {
    padding: 60px 0;
    text-align: center;
    background: #ffffff;
}

.ls-header {
    margin-bottom: 40px;
}

.ls-title-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.ls-title {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

.ls-doodle {
    width: 24px;
    height: 24px;
}

.ls-underline {
    display: block;
    margin: 10px auto 0;
    width: 120px;
}

.ls-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0;
}

.ls-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 20px;
    width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.ls-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ls-age {
    text-align: center;
    margin-bottom: 15px;
}

.ls-age-range {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.ls-age-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
}

.ls-image-container {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ls-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.ls-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.ls-card-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 20px;
}

.ls-btn-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: auto;
}

.ls-btn-arrow:hover {
    opacity: 0.85;
}

.ls-btn-arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Colors */
.ls-card-purple .ls-age-range,
.ls-card-purple .ls-age-label,
.ls-card-purple .ls-card-title {
    color: #8a2be2;
}

.ls-card-purple .ls-image-container {
    background: #e8d9ff;
}

.ls-card-purple .ls-btn-arrow {
    background: #8a2be2;
}

.ls-card-green .ls-age-range,
.ls-card-green .ls-age-label,
.ls-card-green .ls-card-title {
    color: #2ecc71;
}

.ls-card-green .ls-image-container {
    background: #dff9eb;
}

.ls-card-green .ls-btn-arrow {
    background: #2ecc71;
}

.ls-card-blue .ls-age-range,
.ls-card-blue .ls-age-label,
.ls-card-blue .ls-card-title {
    color: #3498db;
}

.ls-card-blue .ls-image-container {
    background: #dff0ff;
}

.ls-card-blue .ls-btn-arrow {
    background: #3498db;
}

.ls-card-orange .ls-age-range,
.ls-card-orange .ls-age-label,
.ls-card-orange .ls-card-title {
    color: #e67e22;
}

.ls-card-orange .ls-image-container {
    background: #ffeadd;
}

.ls-card-orange .ls-btn-arrow {
    background: #e67e22;
}

.ls-card-pink .ls-age-range,
.ls-card-pink .ls-age-label,
.ls-card-pink .ls-card-title {
    color: #fd79a8;
}

.ls-card-pink .ls-image-container {
    background: #ffdff0;
}

.ls-card-pink .ls-btn-arrow {
    background: #fd79a8;
}

.ls-card-darkpurple .ls-age-range,
.ls-card-darkpurple .ls-age-label,
.ls-card-darkpurple .ls-card-title {
    color: #6c5ce7;
}

.ls-card-darkpurple .ls-image-container {
    background: #e6e0ff;
}

.ls-card-darkpurple .ls-btn-arrow {
    background: #6c5ce7;
}

@media (max-width: 1200px) {
    .ls-grid {
        justify-content: flex-start;
        padding-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .ls-title {
        font-size: 1.8rem;
    }
}

/* --- Promo Features Section --- */
.promo-features-section {
    padding: 60px 0;
    overflow: hidden;
}

.pfp-intro {
    text-align: center;
    color: #1a2b6d;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.pfp-star {
    color: #ffc107;
}

.pfp-blue-card {
    background: linear-gradient(135deg, #111b4d 0%, #1a2a7a 100%);
    border-radius: 30px;
    position: relative;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 5%;
    overflow: hidden;
    margin-bottom: 24px;
    min-height: 380px;
}

.pfp-blue-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.pfp-bc-left,
.pfp-bc-right {
    flex: 0 0 25%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pfp-bc-left img {
    max-width: 200px;
    transform: rotate(-10deg);
}

.pfp-bc-right img {
    max-width: 250px;
}

.pfp-speech-bubble {
    position: absolute;
    top: -40px;
    right: 0;
    background: #fff;
    color: #111b4d;
    padding: 12px 20px;
    border-radius: 20px 20px 0 20px;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.pfp-bc-center {
    flex: 1;
    text-align: center;
    z-index: 2;
    padding-bottom: 30px;
}

.pfp-bc-center h2 {
    color: #fff;
    font-size: 2rem;
    margin: 0;
    font-weight: 800;
}

.pfp-highlight-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 5px 0 15px;
    display: flex;
    justify-content: center;
    gap: 12px;
    letter-spacing: -1px;
}

.text-fun {
    color: #ffc107;
}

.text-easy {
    color: #00d2b5;
}

.text-and {
    color: #fff;
    font-weight: 700;
}

.text-meaningful {
    color: #e84393;
}

.pfp-features-list {
    color: #e0e5ff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.pfp-join-btn {
    background: #ffc107;
    color: #111b4d !important;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, background 0.2s;
    border: none;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.pfp-join-btn:hover {
    transform: translateY(-2px);
    background: #ffca2c;
}

.pfp-features-bar {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 10px 40px rgba(17, 27, 77, 0.05);
    position: relative;
    z-index: 10;
}

.pfp-fb-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 0 15px;
    gap: 12px;
}

.pfp-fb-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.pfp-fb-icon svg {
    width: 24px;
    height: 24px;
}

.icon-purple {
    background: #6c5ce7;
}

.icon-green {
    background: #00b894;
}

.icon-blue {
    background: #0984e3;
}

.icon-orange {
    background: #e17055;
}

.icon-pink {
    background: #e84393;
}

.pfp-fb-text h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a2b6d;
    margin: 0 0 6px 0;
}

.pfp-fb-text p {
    font-size: 0.85rem;
    color: #636e72;
    margin: 0;
    line-height: 1.4;
}

.pfp-fb-divider {
    width: 1px;
    height: 60px;
    background: #e2e8f0;
    align-self: center;
}

.pfp-purple-banner {
    background: #582a88;
    position: relative;
    color: #fff;
    padding: 40px 0 60px;
    margin-top: 40px;
    border-radius: 30px 30px 0 0;
}

.pfp-purple-wave {
    position: absolute;
    top: -49px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.pfp-pb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
}

.pfp-pb-left img,
.pfp-pb-right img {
    max-width: 150px;
}

.pfp-pb-center {
    flex: 1;
    text-align: center;
}

.pfp-pb-center p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: #fff;
}

.pfp-pb-center strong {
    color: #ffc107;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .pfp-blue-card {
        flex-direction: column;
        text-align: center;
        padding-bottom: 80px;
    }

    .pfp-bc-left,
    .pfp-bc-right {
        margin: 20px 0;
    }

    .pfp-features-bar {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .pfp-fb-item {
        flex: 0 0 calc(50% - 30px);
        align-items: center;
        text-align: center;
    }

    .pfp-fb-divider {
        display: none;
    }

    .pfp-pb-inner {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .pfp-highlight-title {
        flex-direction: column;
        font-size: 2rem;
        gap: 0;
    }

    .pfp-fb-item {
        flex: 0 0 100%;
    }
}

/* --- Join Banner Section --- */
.join-banner-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.join-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7f1ff;
    /* Light purple/pink background */
    z-index: 0;
}

.jbs-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    min-height: 380px;
    z-index: 1;
}

/* The dark blue card on the left */
.jbs-blue-panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    background: #19204e;
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

/* Purple scribbles/doodles background in blue card */
.jbs-blue-panel::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    bottom: -20%;
    left: -10%;
    background-image: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.jbs-text-group {
    position: relative;
    transform: rotate(-3deg);
    margin-left: 20px;
    margin-top: -40px;
    /* shift up to leave room for girl */
    display: inline-block;
    align-self: flex-start;
}

.jbs-star {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.jbs-star-1 {
    top: -10px;
    left: -20px;
    width: 16px;
    height: 16px;
}

.jbs-star-2 {
    top: -20px;
    right: -30px;
    width: 32px;
    height: 32px;
}

.jbs-title {
    font-family: 'Caveat', 'Comic Sans MS', cursive, sans-serif;
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
}

.jbs-scribble {
    position: absolute;
    bottom: -20px;
    left: 10px;
    width: 140px;
    height: 25px;
}

.jbs-girl-image {
    position: absolute;
    bottom: 0;
    left: 20%;
    height: 115%;
    max-height: 440px;
    z-index: 3;
    pointer-events: none;
}

.jbs-white-panel {
    position: relative;
    z-index: 2;
    background: #ffffff;
    width: 62%;
    border-radius: 32px;
    padding: 40px 50px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 15px 50px rgba(25, 32, 78, 0.08);
    margin: 15px 0;
    /* slight top/bottom margin inside the wrapper */
}

.jbs-wp-left {
    flex: 1;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jbs-lead {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2b6d;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.jbs-avatars {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.jbs-avatar-stack {
    display: flex;
}

.jbs-avatar-stack img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -14px;
    background: #e2e8f0;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.jbs-avatar-stack img:first-child {
    margin-left: 0;
}

.jbs-count-badge {
    background: #f1ecff;
    color: #6230a3;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 999px;
}

.jbs-cta-btn {
    background: #6c5ce7;
    color: #fff !important;
    font-weight: 700;
    border-radius: 14px;
    padding: 16px 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.25);
    align-self: flex-start;
}

.jbs-cta-btn:hover {
    background: #5a4bcf;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(108, 92, 231, 0.35);
}

.jbs-wp-divider {
    width: 2px;
    background: #f1f5f9;
    margin: 0 30px;
    align-self: stretch;
}

.jbs-wp-right {
    flex: 0 0 250px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jbs-perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jbs-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #475569;
    font-size: 1rem;
    font-weight: 600;
}

.jbs-check-icon {
    color: #51cf66;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: #e9fbec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.jbs-heart-doodle {
    position: absolute;
    bottom: -15px;
    right: -10px;
    width: 45px;
    height: 45px;
    opacity: 0.9;
    transform: rotate(-10deg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .jbs-girl-image {
        left: 10%;
        height: 105%;
    }

    .jbs-white-panel {
        width: 68%;
        padding: 30px;
    }

    .jbs-wp-right {
        flex: 0 0 220px;
    }
}

@media (max-width: 1024px) {
    .jbs-blue-panel {
        width: 100%;
        border-radius: 32px 32px 0 0;
        position: relative;
        min-height: 280px;
        align-items: center;
        text-align: center;
    }

    .jbs-text-group {
        margin: 0;
        align-self: center;
        transform: none;
    }

    .jbs-wrapper {
        flex-direction: column;
        align-items: stretch;
        background: transparent;
    }

    .jbs-girl-image {
        bottom: auto;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        height: 280px;
    }

    .jbs-white-panel {
        width: 100%;
        margin: -40px 0 0 0;
        flex-direction: column;
        padding: 40px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
    }

    .jbs-wp-divider {
        width: 100%;
        height: 2px;
        margin: 30px 0;
    }

    .jbs-wp-right {
        flex: auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .jbs-girl-image {
        height: 220px;
        top: 150px;
    }

    .jbs-blue-panel {
        min-height: 240px;
    }

    .jbs-white-panel {
        padding: 30px 20px;
    }

    .jbs-title {
        font-size: 2.5rem;
    }
}


/* --- Before Footer Features --- */
.before-footer-features {
    padding: 60px 0;
}

.bff-top-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.bff-caps-box {
    flex: 0 0 350px;
    background: #090b28;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bff-caps-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.bff-flag {
    width: 48px;
    height: 32px;
    border-radius: 4px;
}

.bff-caps-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.02em;
    color: #fff;
}

.bff-caps-content p {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.bff-btn {
    background: #00d2b5;
    color: #090b28;
    font-weight: 700;
    border-radius: 999px;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 0.95rem;
}

.bff-btn:hover {
    background: #00ebd2;
    transform: translateY(-2px);
}

.bff-caps-decor {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.9;
}

.bff-features-box {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 16px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.bff-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.bff-f-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.bff-feature-item span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.bff-bottom-row {
    background: #fbbc13;
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.bff-diversity-content {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.bff-d-title {
    flex: 0 0 auto;
    position: relative;
}

.bff-d-title h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.1;
    margin: 0;
}

.bff-divider {
    width: 2px;
    height: 80px;
    background: rgba(30, 58, 138, 0.2);
}

.bff-d-text {
    flex: 1;
    max-width: 420px;
}

.bff-d-text p {
    color: #1e3a8a;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.bff-diversity-image {
    flex: 0 0 450px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
}

.bff-diversity-image img {
    height: 110%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
    margin-bottom: -10px;
}

@media (max-width: 1024px) {
    .bff-top-row {
        flex-direction: column;
    }

    .bff-caps-box {
        flex: auto;
    }

    .bff-features-box {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .bff-feature-item {
        flex: 0 0 calc(33.333% - 24px);
    }

    .bff-bottom-row {
        flex-direction: column;
    }

    .bff-diversity-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .bff-divider {
        width: 100%;
        height: 2px;
    }

    .bff-diversity-image {
        flex: auto;
        height: 250px;
        border-radius: 0 0 20px 20px;
    }

    .bff-diversity-image img {
        height: 100%;
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .bff-feature-item {
        flex: 0 0 calc(50% - 24px);
    }

    .ele-title {
        font-size: 26px !important;
        margin-bottom: 24px;
    }

    .ls-title {
        font-size: 1.5rem !important;
    }

    .ls-card {
        width: 150px;
        padding: 15px;
    }

    .pfp-bc-center h2 {
        font-size: 1.5rem;
    }

    .pfp-highlight-title {
        font-size: 1.8rem;
    }

    .slider_section .prm-custom-3 img {
        border-radius: 12px;
    }

    .promo-banner__inner {
        flex-direction: column;
        padding: 15px;
    }

    .jbs-title {
        font-size: 2.2rem;
    }

    .jbs-white-panel {
        padding: 24px 16px;
    }
}

@media (max-width: 400px) {
    .ele-card {
        width: 130px;
        height: 130px;
    }

    .ls-card {
        width: 140px;
    }

    .bff-feature-item {
        flex: 0 0 100%;
    }
}