:root {
    --bg: #050505;
    --bg-soft: #0b0b0b;
    --panel: #121212;
    --panel-soft: #181818;
    --gold: #f4cf12;
    --gold-dark: #b8940a;
    --gold-deep: #7a5a00;
    --text: #f5f5f5;
    --muted: #a7a7a7;
    --border-gold: rgba(244, 207, 18, 0.35);
    --line-soft: rgba(244, 207, 18, 0.12);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 20px;
    --container: min(1200px, calc(100% - 48px));
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: "Cairo", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 10%, rgba(244, 207, 18, 0.08), transparent 22%),
        radial-gradient(circle at 85% 14%, rgba(184, 148, 10, 0.08), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%),
        var(--bg);
    line-height: 1.8;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.22;
    pointer-events: none;
    z-index: -2;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.site-shell,
main,
section,
.container,
.hero__copy,
.hero__media,
.about-layout,
.split-grid,
.platform-layout,
.platform-copy,
.platform-visual,
.course-card,
.about-proof-panel {
    max-width: 100%;
    min-width: 0;
}

.section {
    padding: clamp(82px, 9vw, 126px) 0;
}

.section--soft {
    position: relative;
}

.section--soft::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.025));
    border-block: 1px solid rgba(244, 207, 18, 0.08);
    pointer-events: none;
}

.course-section {
    padding-top: clamp(70px, 7vw, 110px) !important;
}

.course-section .course-card {
    margin-top: 0;
}

.contact-info-section {
    padding-top: 32px !important;
    padding-bottom: clamp(56px, 6vw, 88px) !important;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
}

.section-title,
.page-title {
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 4rem);
    line-height: 1.15;
    font-weight: 800;
}

.page-title {
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    max-width: 14ch;
    line-height: 1.28;
    font-weight: 800;
}

.section-text,
.page-subtitle,
.content-card p,
.course-card p,
.course-row p,
.contact-card p,
.contact-form span,
.footer-brand p,
.disclaimer,
.hero__copy p,
.feature-card p,
.platform-copy p {
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    backdrop-filter: blur(18px);
    background: rgba(5, 5, 5, 0.74);
    border-bottom: 1px solid rgba(244, 207, 18, 0.08);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__logo {
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    flex: 0 0 50px;
}

.brand__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand__fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.08em;
}

.brand__text {
    display: grid;
    gap: 2px;
}

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

.brand__text small {
    color: var(--muted);
    font-size: 0.8rem;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 1.45vw, 20px);
    flex-wrap: wrap;
}

.site-nav a {
    position: relative;
    padding: 6px 0;
    color: rgba(245, 245, 245, 0.84);
    font-size: 0.98rem;
    transition: color 0.3s var(--ease);
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), opacity 0.35s var(--ease);
}

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

.button--primary {
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 16px 38px rgba(244, 207, 18, 0.18);
}

.button--secondary,
.button--ghost {
    color: var(--text);
    border-color: rgba(244, 207, 18, 0.24);
    background: rgba(255, 255, 255, 0.03);
}

.button--ghost {
    padding-inline: 18px;
}

.button__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.button__icon img {
    width: 100%;
    height: 100%;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 7px 14px 7px 16px;
    border: 1px solid rgba(244, 207, 18, 0.55);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.whatsapp-btn__icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(244, 207, 18, 0.5);
}

.whatsapp-btn__icon img {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
    transform: scale(1.12);
}

.whatsapp-btn__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
    line-height: 1.2;
}

.whatsapp-btn__text span {
    color: var(--gold);
    font-size: 0.86rem;
    font-weight: 700;
}

.whatsapp-btn__text strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
    white-space: nowrap;
}

.phone-number,
[dir="ltr"].phone-number {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
    text-align: left;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(244, 207, 18, 0.18);
    background: rgba(255, 255, 255, 0.02);
    padding: 0;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    right: 11px;
    left: 11px;
    height: 1px;
    background: var(--text);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 29px; }

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative;
    padding: clamp(32px, 5vw, 68px) 0 40px;
    overflow: hidden;
    min-height: clamp(760px, 88vh, 860px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.68) 36%, rgba(5, 5, 5, 0.84)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 24%);
    z-index: 1;
}

.hero__background,
.hero-visual,
.hero__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__background {
    background:
        radial-gradient(circle at 18% 58%, rgba(244, 207, 18, 0.16), transparent 28%),
        radial-gradient(circle at 72% 22%, rgba(244, 207, 18, 0.08), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%);
    z-index: 0;
    overflow: hidden;
}

.hero__glow {
    z-index: 0;
    background:
        radial-gradient(circle at 22% 56%, rgba(244, 207, 18, 0.16), transparent 26%),
        radial-gradient(circle at 66% 26%, rgba(244, 207, 18, 0.07), transparent 20%);
    filter: blur(8px);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.hero-visual {
    z-index: 0;
    overflow: hidden;
}

.hero-layer {
    position: absolute;
    inset: 0;
    display: block;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.hero-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
}

.hero-layer-grid {
    z-index: 0;
    opacity: 0.34;
    mix-blend-mode: screen;
}

.hero-layer-numbers {
    z-index: 1;
    opacity: 0.28;
    mix-blend-mode: screen;
}

.hero-layer-bars {
    z-index: 2;
    opacity: 0.44;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 22px rgba(244, 207, 18, 0.08));
}

.hero__inner,
.hero-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
    align-items: end;
    gap: clamp(18px, 4vw, 54px);
    min-height: clamp(560px, 68vh, 620px);
}

.hero__media {
    position: relative;
    align-self: end;
    min-height: 420px;
    display: flex;
    align-items: end;
    justify-content: center;
    z-index: 3;
}

.hero__person {
    position: relative;
    z-index: 2;
    width: min(100%, 510px);
    max-height: 660px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.42));
}

.hero__copy {
    display: grid;
    gap: 14px;
    align-self: center;
    padding-bottom: 38px;
    max-width: 580px;
    position: relative;
    z-index: 5;
}

.hero__name,
.hero-title {
    margin: 0;
    color: var(--gold);
    font-size: clamp(3.4rem, 5.8vw, 6.2rem);
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 0 28px rgba(244, 207, 18, 0.08);
    margin-bottom: 12px;
    overflow: visible;
    padding-block: 0.08em;
}

.hero__name-mask {
    overflow: hidden;
    padding-top: 0.12em;
    padding-bottom: 0.18em;
}

.hero__name span,
.text-reveal {
    display: inline-block;
    will-change: transform, opacity;
}

.hero__titles,
.hero-subtitle {
    display: grid;
    gap: 6px;
    font-size: clamp(1.45rem, 2vw, 2.25rem);
    line-height: 1.45;
    margin: 0 0 18px;
    overflow: visible;
}

.hero__titles strong {
    font-size: inherit;
    line-height: inherit;
}

.hero__titles span {
    font-size: inherit;
    line-height: inherit;
    color: rgba(245, 245, 245, 0.86);
}

.hero-description {
    margin: 0;
    font-size: clamp(0.95rem, 1vw, 1.15rem);
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 28px;
}

.hero__actions {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero__actions .button {
    position: relative;
    z-index: 7;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-stats-wrap {
    position: relative;
    z-index: 5;
    margin-top: -20px;
    padding-bottom: 48px;
}

.hero__feature-strip {
    position: relative;
    z-index: 2;
    margin-top: 0;
    background: rgba(14, 14, 14, 0.78);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    max-width: 1240px;
    margin-inline: auto;
}

.hero__feature-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 207, 18, 0.04), transparent 44%);
    pointer-events: none;
}

.feature-grid,
.hero-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    background: rgba(12, 12, 12, 0.82);
    min-height: auto;
}

.feature-card,
.hero-stat-card {
    position: relative;
    display: grid;
    text-align: center;
    padding: 24px 22px 22px;
    min-height: 138px;
    gap: 6px;
    transform: none;
    transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.hero-stat-card.is-visible {
    transform: none !important;
}

.hero-stat-card:not(:last-child)::after,
.feature-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(244, 207, 18, 0.35), transparent);
}

.feature-card__icon,
.hero-stat-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon img,
.hero-stat-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.feature-card strong {
    font-size: clamp(1rem, 1.15vw, 1.25rem);
    line-height: 1.45;
    margin: 0 0 6px;
    font-weight: 800;
    overflow: visible;
    color: var(--gold);
}

.feature-card p {
    margin: 0;
    line-height: 1.65;
    font-size: clamp(0.9rem, 0.95vw, 1rem);
    color: var(--text);
    max-width: 220px;
}

.hero-stat-card {
    display: grid;
    grid-template-rows: 46px 58px minmax(58px, auto);
    justify-items: center;
    align-content: start;
    text-align: center;
    padding: 34px 24px 28px;
    min-height: 190px;
    gap: 8px;
}

.hero-stat-card .hero-stat-icon {
    grid-row: 1;
    width: 46px;
    height: 46px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-card .hero-stat-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.hero-stat-card > strong {
    grid-row: 2;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: clamp(1rem, 1.15vw, 1.28rem);
    line-height: 1.35;
    font-weight: 800;
    margin: 0;
    padding: 0;
}

.hero-stat-card > p {
    grid-row: 3;
    align-self: start;
    margin: 0;
    max-width: 230px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(0.92rem, 0.95vw, 1.02rem);
    line-height: 1.75;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 18px 34px rgba(244, 207, 18, 0.08);
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(26px, 4vw, 60px);
}

.about-panel,
.glass-panel,
.platform-visual,
.content-card,
.contact-card,
.contact-form,
.course-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.platform-visual {
    border: 0;
}

.about-panel,
.glass-panel,
.platform-visual {
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.about-panel {
    padding: 34px;
}

.about-panel::before,
.glass-panel::before,
.platform-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(244, 207, 18, 0.14), transparent 18%),
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent 36%);
    pointer-events: none;
}

.about-panel__bars {
    position: absolute;
    inset: auto 24px 24px 24px;
    height: 42%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 12px;
}

.about-panel__bars span {
    display: block;
    background: linear-gradient(180deg, rgba(244, 207, 18, 0.9), rgba(122, 90, 0, 0.3));
    border-radius: 999px 999px 10px 10px;
}

.about-panel__bars span:nth-child(1) { height: 34%; }
.about-panel__bars span:nth-child(2) { height: 56%; }
.about-panel__bars span:nth-child(3) { height: 72%; }
.about-panel__bars span:nth-child(4) { height: 48%; }
.about-panel__bars span:nth-child(5) { height: 84%; }
.about-panel__bars span:nth-child(6) { height: 62%; }

.about-panel__content,
.glass-panel__content,
.platform-copy {
    position: relative;
    z-index: 2;
    padding: 34px;
}

.about-section {
    padding-top: 18px;
}

.about-copy {
    max-width: 980px;
    margin-inline: auto;
}

.about-editorial {
    display: grid;
    gap: 20px;
    max-width: 960px;
    margin-inline: auto;
    text-align: right;
}

.about-editorial .section-text {
    margin: 0;
    font-size: 1.08rem;
    line-height: 2.05;
    color: rgba(245, 245, 245, 0.78);
}

.about-editorial strong {
    color: var(--gold);
    font-weight: 800;
}

.course-card {
    max-width: 980px;
    margin-inline: auto;
    padding: clamp(26px, 4vw, 38px);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(244, 207, 18, 0.18);
    border-radius: inherit;
    pointer-events: none;
}

.course-card__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}

.course-card__header h3 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 2.8vw, 3.2rem);
    line-height: 1.35;
    overflow: visible;
    padding-block: 0.08em;
}

.course-card__rows {
    display: grid;
}

.course-row {
    display: grid;
    grid-template-columns: 42px minmax(130px, 180px) 1fr;
    align-items: start;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid rgba(244, 207, 18, 0.1);
}

.course-row__icon {
    width: 22px;
    height: 22px;
    margin-top: 4px;
}

.course-row__icon img {
    width: 100%;
    height: 100%;
}

.course-row span {
    color: var(--gold);
    font-weight: 700;
}

.course-row p {
    margin: 0;
}

.course-card__footer {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-top: 28px;
}

.course-card__footer small {
    color: var(--muted);
}

.feature-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.feature-list li {
    position: relative;
    padding-inline-start: 28px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 0 0 6px rgba(244, 207, 18, 0.07);
}

.signup-section {
    position: relative;
    overflow: hidden;
}

.signup-section::before {
    content: "";
    position: absolute;
    inset: 12% auto auto 7%;
    width: min(34vw, 420px);
    height: min(34vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 207, 18, 0.12), transparent 68%);
    filter: blur(18px);
    pointer-events: none;
}

.signup-section__header {
    max-width: 720px;
    margin-bottom: clamp(32px, 4vw, 52px);
}

.signup-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: center;
    gap: clamp(28px, 4vw, 54px);
}

.signup-copy,
.signup-visual {
    min-width: 0;
}

.signup-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.signup-point {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding: 20px 20px 20px 18px;
    border: 1px solid rgba(244, 207, 18, 0.14);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        rgba(10, 10, 10, 0.72);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
    backdrop-filter: blur(10px);
}

.signup-point__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 900;
    background:
        radial-gradient(circle at 30% 30%, rgba(244, 207, 18, 0.18), transparent 55%),
        rgba(8, 8, 8, 0.92);
    border: 1px solid rgba(244, 207, 18, 0.24);
    box-shadow: 0 0 0 8px rgba(244, 207, 18, 0.04);
}

.signup-point p {
    margin: 0;
    color: rgba(255,255,255,0.86);
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    line-height: 1.95;
}

.signup-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(244, 207, 18, 0.16);
    box-shadow: 0 32px 80px rgba(0,0,0,0.42);
}

.signup-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(244, 207, 18, 0.14), transparent 26%, transparent 72%, rgba(244, 207, 18, 0.08)),
        linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.28));
    pointer-events: none;
    z-index: 1;
}

.signup-visual__glow {
    position: absolute;
    inset: auto auto 12% 8%;
    width: min(42%, 220px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 207, 18, 0.26), transparent 72%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
}

.signup-visual__image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.platforms-page .hero__actions,
.platforms-page .platform-actions,
.platforms-page .page-actions {
    margin-top: clamp(32px, 4vw, 52px);
}

.platforms-page .feature-list {
    margin-bottom: 0;
}

.platforms-page .feature-list li + li {
    margin-top: 14px;
}

.platform-section {
    position: relative;
}

.platform-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: center;
}

.platform-visual {
    min-height: 0;
    padding: 0;
}

.platform-screen {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(244, 207, 18, 0.12);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        rgba(0, 0, 0, 0.26);
    overflow: hidden;
}

.platform-screen__image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.platform-screen::before {
    content: "";
    position: absolute;
    inset: 12% 12% auto;
    height: 42%;
    background:
        radial-gradient(circle at 30% 20%, rgba(244, 207, 18, 0.16), transparent 18%),
        repeating-linear-gradient(90deg, transparent, transparent 58px, rgba(244, 207, 18, 0.05) 58px, rgba(244, 207, 18, 0.05) 59px);
    border-radius: 18px;
}

.platform-screen__candles {
    position: absolute;
    inset: auto 12% 16%;
    height: 48%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 14px;
}

.platform-screen__candles span {
    display: block;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold), rgba(244, 207, 18, 0.2));
    box-shadow: 0 0 24px rgba(244, 207, 18, 0.18);
}

.platform-screen__candles span:nth-child(1) { height: 58%; }
.platform-screen__candles span:nth-child(2) { height: 78%; }
.platform-screen__candles span:nth-child(3) { height: 44%; }
.platform-screen__candles span:nth-child(4) { height: 88%; }
.platform-screen__candles span:nth-child(5) { height: 61%; }
.platform-screen__candles span:nth-child(6) { height: 72%; }

.page-hero {
    padding-top: 96px;
}

.page-hero__inner {
    display: grid;
    gap: 14px;
}

.page-hero__inner .section-text,
.section-copy .section-text,
.platform-copy .section-text {
    font-size: 1rem;
    line-height: 1.9;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.content-card {
    padding: 28px;
}

.content-card__tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(244, 207, 18, 0.1);
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.content-card h2,
.contact-card h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    line-height: 1.35;
    overflow: visible;
    padding-block: 0.08em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
}

.contact-grid--single {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
    display: grid;
    place-items: center;
}

.contact-grid--single .contact-card {
    width: min(100%, 720px);
}

.contact-card,
.contact-form {
    padding: 30px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(244, 207, 18, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 14px 16px;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(244, 207, 18, 0.34);
    box-shadow: 0 0 0 3px rgba(244, 207, 18, 0.08);
}

.site-footer {
    background: rgba(0, 0, 0, 0.24);
    border-top: 1px solid rgba(244, 207, 18, 0.08);
    padding: 38px 0 24px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(244, 207, 18, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
}

.footer-socials a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-meta {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(244, 207, 18, 0.08);
}

.disclaimer {
    font-size: 0.88rem;
    margin: 0 0 10px;
}

.copyright {
    margin: 0;
    color: var(--muted);
}

.reveal-right,
.reveal-left,
.reveal-up {
    will-change: transform, opacity;
}

@media (max-width: 1120px) {
    .hero__inner,
    .hero-main,
    .split-grid,
    .platform-layout,
    .contact-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero__inner,
    .hero-main {
        min-height: auto;
    }

    .hero-layer-grid {
        opacity: 0.28;
    }

    .hero-layer-numbers {
        opacity: 0.22;
    }

    .hero-layer-bars {
        opacity: 0.36;
    }

    .hero__media {
        order: 2;
        min-height: 360px;
    }

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

    .hero-stats-wrap {
        margin-top: -16px;
    }

    .hero-stat-card:nth-child(2)::after,
    .feature-card:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 920px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }

    .menu-toggle {
        display: inline-block;
        justify-self: end;
    }

    .site-nav {
        display: none;
    }

    .whatsapp-btn {
        display: inline-flex;
        justify-self: start;
        padding: 10px 12px;
        min-height: 52px;
    }

    .whatsapp-btn__text span {
        font-size: 0.74rem;
    }

    .whatsapp-btn__text strong {
        font-size: 0.82rem;
    }

    .site-nav.is-open {
        display: grid;
        position: absolute;
        top: calc(100% + 10px);
        right: 24px;
        left: 24px;
        gap: 8px;
        padding: 18px;
        border-radius: 24px;
        border: 1px solid rgba(244, 207, 18, 0.12);
        background: rgba(10, 10, 10, 0.96);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open a {
        padding: 10px 0;
    }

    .hero {
        padding-top: 30px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --container: min(100% - 28px, 1200px);
    }

    .hero__name,
    .hero-title {
        font-size: clamp(2.7rem, 9vw, 4.6rem);
    }

    .hero__titles strong {
        font-size: 1.35rem;
    }

    .hero__titles span {
        font-size: 1.05rem;
    }

    .hero__actions,
    .course-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .feature-grid,
    .hero-stats,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero-stat-card::after,
    .feature-card::after {
        display: none !important;
    }

    .hero-stats-wrap {
        margin-top: 18px;
    }

    .hero-visual {
        opacity: 0.88;
    }

    .course-row {
        grid-template-columns: 34px 1fr;
    }

    .course-row span {
        grid-column: 2;
    }

    .course-row p {
        grid-column: 1 / -1;
    }

    .footer-grid,
    .footer-brand {
        align-items: start;
    }

    .footer-socials {
        width: 100%;
    }

    .about-editorial .section-text {
        font-size: 1rem;
        line-height: 1.95;
    }
}

@media (max-width: 640px) {
    .site-header__inner {
        grid-template-columns: 1fr auto auto;
    }

    .brand__text small {
        display: none;
    }

    .whatsapp-btn {
        width: 46px;
        height: 46px;
        min-height: 46px;
        padding: 0;
        border-radius: 14px;
        justify-content: center;
    }

    .whatsapp-btn__icon {
        width: 32px;
        height: 32px;
        margin: 0;
    }

    .whatsapp-btn__text {
        display: none;
    }

    .hero {
        padding-bottom: 26px;
    }

    .hero-layer-grid {
        opacity: 0.2;
    }

    .hero-layer-numbers {
        opacity: 0.16;
    }

    .hero-layer-bars {
        opacity: 0.22;
    }

    .page-title {
        max-width: 100%;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero__glow,
    .hero-layer {
        transform: none !important;
    }
}

/* ==================================================
   Final stability + premium editorial patch
   Applied after HTML review to prevent Arabic clipping,
   improve section rhythm, and add richer section design.
================================================== */
:root {
    --section-padding-lg: clamp(96px, 9vw, 156px);
    --section-padding-md: clamp(76px, 7vw, 118px);
    --content-gap-lg: clamp(48px, 6vw, 96px);
    --content-gap-md: clamp(32px, 4vw, 64px);
    --content-gap-sm: 24px;
}

body {
    text-rendering: optimizeLegibility;
}

.section {
    padding-block: var(--section-padding-lg) !important;
}

.contact-info-section {
    padding-top: 32px !important;
    padding-bottom: clamp(56px, 6vw, 88px) !important;
    padding-inline: 0 !important;
}

.section-header,
.section-copy--center {
    max-width: 1120px;
    margin-inline: auto;
    margin-bottom: clamp(44px, 5vw, 78px);
}

.section-copy--center {
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px !important;
    line-height: 1.6;
}

.section-title,
.page-title,
.hero__name,
.hero-title,
.course-card__header h3,
.content-card h2,
.contact-card h2,
.glass-panel h3,
.proof-panel-header h3 {
    overflow: visible !important;
    text-wrap: balance;
}

.section-title {
    font-size: clamp(2.15rem, 3.15vw, 3.75rem) !important;
    line-height: 1.34 !important;
    font-weight: 900 !important;
    letter-spacing: -0.015em;
    margin: 0 0 24px !important;
    padding-block: 0.12em !important;
}

.hero__name,
.hero-title {
    font-size: clamp(3.05rem, 5.2vw, 5.8rem) !important;
    line-height: 1.24 !important;
    padding-block: 0.12em !important;
}

.hero__titles,
.hero-subtitle {
    line-height: 1.55 !important;
    gap: 8px !important;
}

.text-mask {
    display: block;
    overflow: hidden;
    padding-block: 0.18em 0.26em;
}

.text-mask h1,
.text-mask h2,
.text-mask h3 {
    margin-bottom: 0 !important;
}

.text-reveal {
    display: inline-block;
    will-change: transform, opacity;
}

p,
.section-text,
.section-lead,
.about-copy p,
.course-card p,
.course-row p,
.feature-copy,
.platform-copy p,
.glass-panel p,
.footer-brand p,
.disclaimer {
    line-height: 2.08 !important;
}

.section-text,
.section-lead,
.about-copy p,
.course-card p,
.platform-copy p,
.glass-panel p {
    font-size: clamp(1rem, 1.06vw, 1.16rem);
    color: rgba(245, 245, 245, 0.74);
}

.section-lead {
    max-width: 1040px;
    margin-inline: auto;
}

.gold-highlight {
    color: var(--gold);
    background: transparent;
    font-weight: 900;
    padding-inline: 0.04em;
}

/* Editorial About section */
.about-section {
    position: relative;
    padding-top: var(--section-padding-md) !important;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 6% 0 auto;
    height: 58%;
    background:
        radial-gradient(circle at 78% 24%, rgba(244, 207, 18, 0.08), transparent 24%),
        linear-gradient(90deg, transparent, rgba(244, 207, 18, 0.035), transparent);
    pointer-events: none;
}

.about-layout {
    position: relative;
    z-index: 2;
    display: block;
}

.about-content {
    position: relative;
    padding-inline-start: clamp(22px, 3vw, 42px);
    max-width: 980px;
    margin-inline: auto;
}

.about-section .eyebrow {
    margin-bottom: 22px !important;
}

.about-accent-line {
    position: absolute;
    top: 4px;
    right: 0;
    width: 2px;
    height: 100%;
    min-height: 220px;
    transform-origin: top;
    background: linear-gradient(to bottom, transparent, rgba(244,207,18,0.82), rgba(244,207,18,0.12), transparent);
}

.about-title {
    margin-bottom: 26px !important;
}

.about-copy {
    display: grid;
    gap: 26px;
    max-width: 980px;
    margin: 0;
    text-align: right;
}

.about-section .about-copy {
    margin-top: 0;
}

.about-copy .section-text {
    margin: 0;
    max-width: 980px;
    line-height: 2.05 !important;
}

.about-section .about-copy strong,
.about-section .section-text strong,
.about-section .about-copy .gold-highlight,
.about-section .section-text .gold-highlight,
.about-section mark.gold-highlight {
    color: inherit !important;
    font-weight: inherit !important;
    background: transparent !important;
    padding: 0 !important;
}

.about-proof-panel {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: clamp(30px, 3.2vw, 44px);
    border-radius: 30px;
    border: 1px solid rgba(244, 207, 18, 0.18);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
        rgba(12, 12, 12, 0.72);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
    isolation: isolate;
}

.about-proof-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 16%, rgba(244,207,18,0.15), transparent 22%),
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: auto, 46px 46px, 46px 46px;
    opacity: 0.68;
    z-index: -1;
}

.about-watermark {
    position: absolute;
    top: 20px;
    left: 22px;
    color: rgba(244,207,18,0.045);
    font-size: clamp(5rem, 8vw, 9rem);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.proof-panel-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.proof-panel-header h3 {
    margin: 0 0 12px;
    font-size: clamp(1.45rem, 2vw, 2.15rem);
    line-height: 1.45;
}

.proof-panel-header p:last-child {
    margin: 0;
    color: rgba(245,245,245,0.68);
}

.about-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
}

.proof-card {
    min-width: 0;
    min-height: 158px;
    padding: 28px 22px 26px;
    border-radius: 24px;
    border: 1px solid rgba(244, 207, 18, 0.13);
    background: rgba(0,0,0,0.22);
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 10px;
    overflow: hidden;
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.proof-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 207, 18, 0.34);
    box-shadow: 0 18px 40px rgba(244, 207, 18, 0.08);
}

.proof-card strong,
.proof-number {
    display: block;
    max-width: 100%;
    color: var(--gold);
    font-size: clamp(1.4rem, 1.82vw, 2.2rem);
    line-height: 1.22;
    font-weight: 900;
    margin: 0 0 14px;
    padding: 0;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.proof-card span:not(.proof-number) {
    display: block;
    max-width: 160px;
    font-size: clamp(0.95rem, 1vw, 1.08rem);
    color: rgba(245,245,245,0.78);
    line-height: 1.75;
    margin-inline: auto;
}

/* Course section comfort */
.course-card {
    max-width: 1080px !important;
    padding: clamp(40px, 5.4vw, 74px) !important;
    border-radius: 30px !important;
}

.course-card::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -45%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(244,207,18,0.09), transparent);
    transform: skewX(-12deg) translateX(-120%);
    pointer-events: none;
}

.course-card.is-shining::after {
    animation: card-shine 1.25s var(--ease) forwards;
}

@keyframes card-shine {
    to { transform: skewX(-12deg) translateX(460%); }
}

.course-card__header {
    max-width: 820px !important;
    margin-bottom: clamp(34px, 4vw, 52px) !important;
}

.course-card__header h3 {
    font-size: clamp(2rem, 2.8vw, 3.35rem) !important;
    line-height: 1.38 !important;
    margin-bottom: 18px !important;
}

.course-row {
    position: relative;
    grid-template-columns: 42px minmax(155px, 210px) minmax(0, 1fr) !important;
    gap: 22px !important;
    padding: 27px 0 !important;
    min-height: 90px;
    border-top: 0 !important;
}

.course-row::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: linear-gradient(90deg, transparent, rgba(244, 207, 18, 0.18), transparent);
}

.course-row.separator-in::before {
    transform: scaleX(1);
    transition: transform 0.9s var(--ease);
}

.course-row__icon {
    width: 25px !important;
    height: 25px !important;
    margin-top: 8px !important;
}

.course-row span:not(.course-row__icon) {
    line-height: 1.85;
    color: var(--gold);
    font-weight: 800;
}

.course-row p {
    font-size: 1.05rem;
    margin: 0;
}

/* Account process + platform mockup */
.split-grid,
.platform-layout {
    gap: var(--content-gap-lg) !important;
}

.glass-panel__content,
.platform-copy {
    padding: clamp(34px, 4.5vw, 54px) !important;
}

.glass-panel__content h3 {
    margin: 0 0 16px;
    font-size: clamp(1.55rem, 2.2vw, 2.4rem);
    line-height: 1.45;
}

.process-steps {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(244,207,18,0.12);
    border-radius: 16px;
    background: rgba(0,0,0,0.18);
}

.process-step span {
    direction: ltr;
    color: var(--gold);
    font-weight: 900;
    min-width: 34px;
}

.process-step strong {
    color: rgba(245,245,245,0.86);
    line-height: 1.6;
}

.trading-dashboard {
    padding: 24px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
}

.dashboard-topbar {
    display: flex;
    gap: 8px;
}

.dashboard-topbar span {
    width: 42px;
    height: 8px;
    border-radius: 999px;
    background: rgba(244,207,18,0.28);
}

.dashboard-chart {
    width: 100%;
    min-height: 180px;
    overflow: visible;
}

.dashboard-grid-line {
    fill: none;
    stroke: rgba(244,207,18,0.08);
    stroke-width: 1;
}

.dashboard-chart-line {
    fill: none;
    stroke: var(--gold);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 14px rgba(244,207,18,0.22));
}

.dashboard-rows {
    display: grid;
    gap: 10px;
}

.dashboard-rows span {
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(244,207,18,0.24), rgba(255,255,255,0.06));
}

.dashboard-rows span:nth-child(2) { width: 72%; }
.dashboard-rows span:nth-child(3) { width: 86%; }

/* WhatsApp final icon sizing */
.whatsapp-btn__icon {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
}

.whatsapp-btn__icon img {
    width: 30px !important;
    height: 30px !important;
    transform: scale(1.15) !important;
}

/* Rich animation initial states are handled by GSAP. Keep layout natural. */
.reveal-about-copy,
.reveal-about-panel,
.reveal-section-header,
.reveal-course-header,
.reveal-split-copy,
.reveal-process-card,
.reveal-platform-visual,
.reveal-signup-visual,
.signup-point {
    will-change: transform, opacity;
}

@media (max-width: 1100px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-proof-panel {
        min-height: auto;
        max-width: 720px;
        margin-inline: auto;
    }

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

    .proof-card strong,
    .proof-number {
        font-size: clamp(1.2rem, 1.68vw, 1.82rem);
    }

    .about-content {
        padding-inline-start: 0;
        padding-inline-end: 24px;
    }

    .about-accent-line {
        right: 0;
    }

    .signup-layout {
        grid-template-columns: 1fr;
    }

    .signup-visual {
        max-width: 760px;
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .about-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .section {
        padding-block: clamp(72px, 14vw, 104px) !important;
    }

    .section-title {
        font-size: clamp(2rem, 8.5vw, 3rem) !important;
        line-height: 1.38 !important;
    }

    .hero__name,
    .hero-title {
        font-size: clamp(2.55rem, 12vw, 4rem) !important;
    }

    .about-copy {
        gap: 22px;
    }

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

    .course-card {
        padding: 30px 22px !important;
    }

    .course-row {
        grid-template-columns: 34px 1fr !important;
        gap: 12px !important;
        padding: 23px 0 !important;
    }

    .course-row p {
        grid-column: 1 / -1;
        padding-inline-start: 0;
    }

    .feature-card,
    .hero-stat-card {
        min-height: auto;
        padding: 32px 22px !important;
    }
}

@media (max-width: 640px) {
    .about-proof-panel {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .about-proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-proof-panel {
        padding: 28px 20px;
    }

    .about-proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-card {
        min-height: auto;
        padding: 30px 24px;
    }
}

@media (max-width: 767px) {
    .contact-info-section {
        padding-top: 32px !important;
        padding-bottom: clamp(56px, 6vw, 88px) !important;
        padding-inline: 0 !important;
    }

    .course-section {
        padding-top: 64px !important;
    }

    .hero {
        overflow: hidden;
    }

    .hero__inner,
    .hero-main {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        padding-inline: 20px;
        text-align: right;
    }

    .hero__copy,
    .hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
        transform: none;
        padding-bottom: 18px;
    }

    .hero__name,
    .hero-title {
        font-size: clamp(3rem, 15vw, 4.5rem) !important;
        line-height: 1.2 !important;
        max-width: 100%;
        overflow: visible;
    }

    .hero__titles,
    .hero-subtitle,
    .hero-description {
        max-width: 100%;
    }

    .hero__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 26px;
        opacity: 1;
        visibility: visible;
    }

    .hero__actions .button {
        min-width: 150px;
    }

    .hero__media {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        min-height: auto;
    }

    .hero__person {
        max-width: min(90vw, 420px);
        width: 100%;
        margin-inline: auto;
    }

    .hero-stats-wrap {
        margin-top: 0;
        padding-inline: 20px;
        padding-bottom: 42px;
    }

    .hero__feature-strip {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        border-radius: 22px;
        overflow: hidden;
        border: 1px solid rgba(244,207,18,0.35);
        background: rgba(8,8,8,0.86);
    }

    .hero-stat-card {
        min-height: 132px;
        padding: 20px 14px 18px !important;
        display: grid !important;
        grid-template-rows: 34px 38px auto;
        gap: 6px;
        align-content: start;
        justify-items: center;
        text-align: center;
        border: 0;
    }

    .hero-stat-icon {
        width: 34px;
        height: 34px;
        margin: 0;
    }

    .hero-stat-icon img {
        width: 28px;
        height: 28px;
    }

    .hero-stat-card > strong {
        font-size: 0.95rem;
        line-height: 1.35;
        min-height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .hero-stat-card > p {
        font-size: 0.82rem;
        line-height: 1.6;
        max-width: 140px;
        margin: 0;
    }

    .hero-stat-card::after {
        display: none !important;
    }

    .hero-stat-card:nth-child(odd) {
        border-left: 1px solid rgba(244,207,18,0.18);
    }

    .hero-stat-card:nth-child(1),
    .hero-stat-card:nth-child(2) {
        border-bottom: 1px solid rgba(244,207,18,0.18);
    }

    .platforms-page .hero__actions {
        margin-top: 30px;
        gap: 14px;
    }

    .signup-section__header {
        margin-bottom: 28px;
    }

    .signup-layout {
        gap: 22px;
    }

    .signup-copy {
        order: 2;
    }

    .signup-visual {
        order: 1;
        border-radius: 24px;
    }

    .signup-point {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding: 16px 16px 16px 14px;
        border-radius: 18px;
    }

    .signup-point__icon {
        width: 44px;
        height: 44px;
        font-size: 1.18rem;
    }

    .signup-point p {
        font-size: 0.94rem;
        line-height: 1.85;
    }
}

@media (max-width: 380px) {
    .hero-stat-card {
        min-height: 124px;
        padding: 18px 10px 16px !important;
    }

    .hero-stat-card > strong {
        font-size: 0.88rem;
    }

    .hero-stat-card > p {
        font-size: 0.78rem;
    }
}

@media (max-width: 767px) {
    .about-content {
        position: relative;
        padding-right: 24px;
        padding-left: 0;
    }

    .about-content::before,
    .about-accent-line {
        right: 0;
    }

    .about-copy,
    .about-editorial {
        max-width: 100%;
    }

    .about-editorial p,
    .about-copy p,
    .about-section .section-text {
        line-height: 2.05;
    }

    .course-card {
        padding: 30px 20px !important;
        border-radius: 24px;
    }

    .course-card__header {
        text-align: center;
        margin-bottom: 22px !important;
    }

    .course-card__header h3 {
        font-size: clamp(1.7rem, 8vw, 2.5rem) !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
    }

    .course-card__header p {
        font-size: 0.98rem;
        line-height: 1.9;
    }

    .course-row {
        display: flex !important;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        column-gap: 12px;
        row-gap: 10px;
        padding: 22px 0 !important;
        text-align: right;
        min-height: 0 !important;
    }

    .course-row__icon {
        flex: 0 0 28px;
        width: 28px !important;
        height: 28px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 2px 0 0 !important;
    }

    .course-row__icon img {
        width: 22px;
        height: 22px;
    }

    .course-row > span:not(.course-row__icon) {
        flex: 1 1 calc(100% - 44px);
        min-width: 0;
        color: var(--gold);
        font-weight: 800;
        font-size: 1.05rem;
        line-height: 1.5;
        margin: 0;
    }

    .course-row > p {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-right: 40px;
        font-size: 0.98rem;
        line-height: 1.9;
        color: rgba(255,255,255,0.72);
        text-align: right;
    }

    .course-row + .course-row {
        border-top: 1px solid rgba(244,207,18,0.12);
    }
}

@media (max-width: 380px) {
    .course-card {
        padding: 28px 16px !important;
    }

    .course-row > p {
        padding-right: 0;
    }
}

.text-mask + .section-text,
.text-mask + .section-lead,
.text-mask + .about-copy,
.course-card__header .text-mask + p {
    margin-top: 18px !important;
}

.course-card__header .text-mask {
    margin-bottom: 2px;
}
