: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: var(--text);
}

/* --- 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 {
    margin-top: 40px;
    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);
    }

    body {
        padding-bottom: 96px;
    }
}

/* ============================================================
   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;
  }
}