:root {
    --clr-base: #0A0D14;
    --clr-base-alt: #0F1219;
    --clr-card: #161B26;
    --clr-surface: #ECEEF2;
    --clr-white: #FFFFFF;
    --clr-muted: #8B92A0;
    --clr-body: #5C6373;
    --clr-dark-text: #232730;
    --clr-primary: #7C3AED;
    --clr-primary-glow: #A78BFA;
    --clr-accent: #06B6D4;
    --clr-accent-soft: #67E8F9;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Karla', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 14px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--clr-base);
    color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 13, 20, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 36px;
    max-width: 1320px;
    margin: 0 auto;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--clr-white);
}

.logo-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav-menu a:hover {
    color: var(--clr-white);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary-glow);
    transition: width 0.3s var(--ease);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--clr-primary);
    color: var(--clr-white) !important;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
    background: var(--clr-primary-glow);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.nav-cta::after {
    display: none !important;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(124, 58, 237, 0.18), transparent),
        radial-gradient(ellipse 60% 50% at 75% 60%, rgba(6, 182, 212, 0.12), transparent),
        radial-gradient(ellipse 40% 40% at 50% 20%, rgba(167, 139, 250, 0.08), transparent);
}

.hero-bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 140px 36px 60px;
}

.hero-content {
    max-width: 860px;
    text-align: center;
    animation: heroReveal 1s var(--ease) both;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-label {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 28px;
    font-weight: 600;
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 128px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -3px;
}

.hero-heading-row {
    display: block;
    background: linear-gradient(135deg, var(--clr-white) 30%, var(--clr-primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rowSlide 0.7s var(--ease) both;
}

.hero-heading-row:nth-child(1) { animation-delay: 0.15s; }
.hero-heading-row:nth-child(2) { animation-delay: 0.3s; }
.hero-heading-row:nth-child(3) { animation-delay: 0.45s; }

@keyframes rowSlide {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-text {
    font-size: 19px;
    color: var(--clr-muted);
    max-width: 640px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.35s var(--ease);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background: var(--clr-primary-glow);
    box-shadow: 0 10px 32px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 17px;
}

.hero-stats-bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(124, 58, 237, 0.12);
    background: rgba(15, 18, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-counters {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px 0;
}

.hero-counter {
    text-align: center;
}

.hero-counter-val {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    color: var(--clr-primary-glow);
    letter-spacing: -1px;
}

.hero-counter-lbl {
    font-size: 14px;
    color: var(--clr-muted);
    margin-top: 6px;
}

.section-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: rgba(124, 58, 237, 0.12);
    letter-spacing: 2px;
    display: block;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 56px;
}

.sec-why {
    padding: 110px 0;
    background: var(--clr-surface);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.why-body .section-num {
    color: rgba(124, 58, 237, 0.1);
}

.why-body .section-heading {
    color: var(--clr-dark-text);
    margin-bottom: 28px;
}

.why-paragraph {
    font-size: 17px;
    line-height: 1.85;
    color: var(--clr-body);
    margin-bottom: 20px;
}

.why-figures {
    display: flex;
    gap: 36px;
    margin-top: 44px;
}

.why-figure {
    text-align: center;
}

.why-figure-val {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: -1px;
}

.why-figure-lbl {
    font-size: 13px;
    color: var(--clr-body);
    margin-top: 6px;
}

.why-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    position: relative;
}

.why-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), transparent 60%);
}

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

.sec-programs {
    padding: 110px 0;
    background: var(--clr-base-alt);
}

.programs-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.program-tile {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 40px 36px;
    border-top: 3px solid var(--clr-primary);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.program-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.program-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
}

.program-tile:hover::before {
    opacity: 1;
}

.program-tile-highlight {
    border-top-color: var(--clr-accent);
    background: linear-gradient(160deg, var(--clr-card), #1a2233);
}

.program-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--clr-accent);
    color: var(--clr-base);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 26px;
    color: var(--clr-primary-glow);
}

.program-name {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.program-info {
    color: var(--clr-muted);
    margin-bottom: 22px;
    line-height: 1.75;
    font-size: 15px;
}

.program-checklist {
    margin-bottom: 28px;
}

.program-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--clr-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14px;
}

.program-checklist li:last-child {
    border-bottom: none;
}

.program-checklist i {
    color: var(--clr-accent);
    font-size: 15px;
}

.program-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-primary-glow);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.program-more:hover {
    gap: 12px;
    color: var(--clr-accent-soft);
}

.sec-process {
    padding: 110px 0;
    background: var(--clr-surface);
}

.sec-process .section-num {
    color: rgba(124, 58, 237, 0.1);
}

.sec-process .section-heading {
    color: var(--clr-dark-text);
}

.process-track {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.process-track::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-primary), var(--clr-accent));
}

.process-node {
    display: flex;
    gap: 36px;
    margin-bottom: 52px;
    position: relative;
}

.process-node:last-child {
    margin-bottom: 0;
}

.process-dot {
    width: 56px;
    height: 56px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-white);
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.15);
    position: relative;
    z-index: 1;
}

.process-body {
    flex: 1;
    padding-top: 6px;
}

.process-label {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--clr-dark-text);
    margin-bottom: 10px;
}

.process-desc {
    color: var(--clr-body);
    font-size: 16px;
    line-height: 1.8;
}

.sec-testimonials {
    padding: 110px 0;
    background: var(--clr-base-alt);
}

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 40px 36px;
    border-left: 4px solid var(--clr-primary);
    transition: all 0.35s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    color: var(--clr-muted);
    margin-bottom: 24px;
}

.testimonial-author {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--clr-accent);
}

.sec-previews {
    padding: 110px 0;
    background: var(--clr-base);
}

.previews-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.preview-block {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    transition: transform 0.4s var(--ease);
}

.preview-block:hover {
    transform: scale(1.02);
}

.preview-img {
    position: absolute;
    inset: 0;
}

.preview-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10, 13, 20, 0.92));
    z-index: 1;
}

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

.preview-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.preview-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 4px;
}

.preview-sub {
    color: var(--clr-muted);
    font-size: 14px;
}

.sec-cta {
    padding: 110px 0;
    background: var(--clr-base-alt);
    position: relative;
    overflow: hidden;
}

.sec-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 19px;
    color: var(--clr-muted);
    margin-bottom: 44px;
}

.footer {
    background: var(--clr-base);
    padding: 72px 0 36px;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 52px;
    margin-bottom: 52px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-about-text {
    color: var(--clr-muted);
    line-height: 1.75;
    font-size: 14px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--clr-muted);
    font-size: 14px;
    transition: all 0.3s var(--ease);
}

.footer-nav a:hover {
    color: var(--clr-white);
    padding-left: 6px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--clr-muted);
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--clr-primary-glow);
    margin-top: 3px;
    font-size: 15px;
}

.footer-company {
    margin: 52px 0 36px;
    padding: 36px;
    background: rgba(124, 58, 237, 0.04);
    border-radius: 12px;
    border-left: 4px solid var(--clr-primary);
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.company-block h5 {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--clr-primary-glow);
    margin-bottom: 14px;
    font-weight: 600;
}

.company-block p {
    color: var(--clr-muted);
    font-size: 13px;
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    color: var(--clr-muted);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--clr-muted);
    font-size: 13px;
    transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
    color: var(--clr-white);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.96);
    transition: all 0.45s var(--ease);
}

.cookie-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.cookie-card {
    width: 400px;
    max-width: calc(100vw - 48px);
    background: rgba(22, 27, 38, 0.88);
    backdrop-filter: blur(28px) saturate(1.5);
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cookie-shield {
    font-size: 22px;
    color: var(--clr-accent);
}

.cookie-header h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-white);
}

.cookie-desc {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cookie-desc a {
    color: var(--clr-primary-glow);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-toggles {
    margin-bottom: 20px;
}

.cookie-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cookie-toggle-row:last-child {
    border-bottom: none;
}

.cookie-toggle-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-white);
    display: block;
}

.cookie-toggle-hint {
    font-size: 11px;
    color: var(--clr-muted);
}

.cookie-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: background 0.3s var(--ease);
}

.cookie-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--clr-white);
    border-radius: 50%;
    transition: transform 0.3s var(--ease);
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--clr-primary);
}

.cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(20px);
}

.cookie-switch-locked .cookie-slider {
    background: var(--clr-accent);
    cursor: default;
    opacity: 0.7;
}

.cookie-switch-locked .cookie-slider::before {
    transform: translateX(20px);
}

.cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cookie-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.cookie-btn-accept {
    grid-column: 1 / -1;
    background: var(--clr-primary);
    color: var(--clr-white);
}

.cookie-btn-accept:hover {
    background: var(--clr-primary-glow);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
}

.cookie-btn-save {
    background: rgba(6, 182, 212, 0.1);
    color: var(--clr-accent);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cookie-btn-save:hover {
    background: rgba(6, 182, 212, 0.2);
}

.page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, var(--clr-base) 0%, var(--clr-base-alt) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 25% 40%, rgba(124, 58, 237, 0.25), transparent),
        radial-gradient(2px 2px at 75% 60%, rgba(6, 182, 212, 0.18), transparent);
    background-size: 200% 200%;
    animation: driftDots 22s ease-in-out infinite;
}

@keyframes driftDots {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    animation: heroReveal 1s var(--ease) both;
}

.page-hero .page-label {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 22px;
    font-weight: 600;
    display: inline-block;
}

.page-hero .page-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.page-hero .page-subtitle {
    font-size: 18px;
    color: var(--clr-muted);
    line-height: 1.8;
    max-width: 640px;
}

.speaking-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 170px 0 110px;
}

.speaking-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A0D14 0%, #151a2a 50%, #0A0D14 100%);
    z-index: 0;
}

.speaking-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(124, 58, 237, 0.35), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(6, 182, 212, 0.25), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(167, 139, 250, 0.2), transparent);
    background-size: 200% 200%;
    animation: driftDots 22s ease-in-out infinite;
}

.speaking-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(124, 58, 237, 0.2), transparent 60%);
}

.speaking-hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    animation: heroReveal 1s var(--ease) both;
}

.speaking-hero-content .page-label,
.speaking-hero-content .page-title,
.speaking-hero-content .page-subtitle {
    max-width: 700px;
}

.speaking-hero-content .page-title {
    background: linear-gradient(135deg, var(--clr-white) 0%, var(--clr-primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.speaking-hero-content .page-subtitle {
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.benefits-section,
.speaking-benefits {
    padding: 110px 0;
    background: var(--clr-base-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: var(--clr-card);
    padding: 36px;
    border-radius: var(--radius);
    transition: all 0.35s var(--ease);
    border-left: 4px solid var(--clr-primary);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--clr-primary-glow);
    margin-bottom: 20px;
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-desc {
    color: var(--clr-muted);
    line-height: 1.75;
    font-size: 15px;
}

.programs-section,
.programs {
    padding: 110px 0;
    background: var(--clr-base);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.program-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 44px 36px;
    transition: all 0.35s var(--ease);
    position: relative;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.2);
}

.program-featured {
    background: linear-gradient(160deg, var(--clr-card), #1a2030);
    border-color: var(--clr-primary);
}

.program-card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--clr-accent);
    color: var(--clr-base);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.program-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
}

.program-price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--clr-primary-glow);
}

.program-desc {
    color: var(--clr-muted);
    margin-bottom: 28px;
    line-height: 1.75;
    font-size: 15px;
}

.program-features {
    margin-bottom: 28px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--clr-muted);
    font-size: 14px;
}

.program-features i {
    color: var(--clr-accent);
}

.process-section,
.process {
    padding: 110px 0;
    background: var(--clr-surface);
}

.process-section .section-heading,
.process .section-heading {
    color: var(--clr-dark-text);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 36px;
}

.process-step {
    text-align: center;
}

.process-number {
    width: 72px;
    height: 72px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--clr-white);
    margin: 0 auto 22px;
}

.process-step-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--clr-dark-text);
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step-desc {
    color: var(--clr-body);
    line-height: 1.8;
    font-size: 15px;
}

.contact-section {
    padding: 72px 0 110px;
    background: var(--clr-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
}

.contact-form-wrapper {
    background: var(--clr-white);
    padding: 44px;
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--clr-dark-text);
    margin-bottom: 28px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--clr-dark-text);
    margin-bottom: 7px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid #e2e4e8;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s var(--ease);
    background: var(--clr-white);
    color: var(--clr-dark-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 13px;
    color: var(--clr-body);
}

.form-checkbox a {
    color: var(--clr-primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-card {
    background: var(--clr-white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--clr-primary);
    margin-bottom: 14px;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--clr-dark-text);
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-info-text {
    color: var(--clr-body);
    line-height: 1.75;
    font-size: 14px;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.legal-hero {
    padding: 170px 0 72px;
    background: linear-gradient(135deg, var(--clr-base) 0%, var(--clr-base-alt) 100%);
    text-align: center;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 700;
    margin-bottom: 14px;
}

.legal-date {
    color: var(--clr-muted);
    font-size: 15px;
}

.legal-content {
    padding: 72px 0 110px;
    background: var(--clr-surface);
}

.legal-wrapper {
    max-width: 860px;
    margin: 0 auto;
    background: var(--clr-white);
    padding: 56px;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.legal-wrapper h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--clr-dark-text);
    margin: 44px 0 20px;
    font-weight: 700;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--clr-dark-text);
    margin: 28px 0 14px;
    font-weight: 600;
}

.legal-wrapper p {
    color: var(--clr-body);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 15px;
}

.legal-wrapper ul {
    color: var(--clr-body);
    line-height: 1.8;
    margin: 14px 0 14px 22px;
    list-style: disc;
    font-size: 15px;
}

.legal-wrapper a {
    color: var(--clr-primary);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-base) 0%, var(--clr-base-alt) 100%);
    padding: 140px 36px 100px;
    text-align: center;
}

.thanks-inner {
    max-width: 560px;
}

.thanks-icon {
    font-size: 56px;
    color: var(--clr-accent);
    margin-bottom: 28px;
}

.thanks-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 18px;
}

.thanks-text {
    color: var(--clr-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.faq-section {
    padding: 72px 0 110px;
    background: var(--clr-surface);
}

.faq-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--clr-white);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s var(--ease);
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-dark-text);
    text-align: left;
    transition: color 0.3s var(--ease);
}

.faq-question:hover {
    color: var(--clr-primary);
}

.faq-question i {
    font-size: 18px;
    color: var(--clr-primary);
    transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--clr-body);
    line-height: 1.8;
    font-size: 15px;
}

.faq-answer a {
    color: var(--clr-primary);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .nav {
        padding: 18px 24px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--clr-base-alt);
        flex-direction: column;
        padding: 36px;
        transition: left 0.4s var(--ease);
        gap: 22px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-counters {
        gap: 40px;
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .programs-row,
    .programs-grid,
    .benefits-grid,
    .testimonials-row {
        grid-template-columns: 1fr;
    }

    .previews-mosaic {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-company {
        padding: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        padding: 130px 24px 48px;
    }

    .hero-heading {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-counters {
        flex-direction: column;
        gap: 28px;
        padding: 32px 0;
    }

    .section-num {
        font-size: 44px;
    }

    .section-heading {
        font-size: 28px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .why-figures {
        flex-direction: column;
        gap: 20px;
    }

    .process-track::before {
        left: 18px;
    }

    .process-dot {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .process-node {
        gap: 22px;
    }

    .cookie-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .cookie-card {
        width: 100%;
        max-width: 100%;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }

    .legal-wrapper {
        padding: 36px 22px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .page-hero {
        padding: 140px 0 72px;
    }

    .speaking-hero {
        padding: 140px 0 72px;
    }

    .speaking-hero-content {
        padding: 0 20px;
    }

    .hero-cta {
        flex-direction: column;
    }
}

.act-programs {
    padding: 110px 0;
    background: var(--clr-base);
}

.act-intro {
    color: var(--clr-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 48px;
}

.act-intro-light {
    color: var(--clr-body);
}

.act-price-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}

.act-price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--clr-primary-glow);
    display: block;
    letter-spacing: -1px;
}

.act-price-note {
    font-size: 13px;
    color: var(--clr-muted);
    margin-top: 4px;
    display: block;
}

.act-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.act-interviews {
    padding: 110px 0;
    background: var(--clr-surface);
}

.act-interviews .section-num {
    color: rgba(124, 58, 237, 0.12);
}

.act-interviews .section-heading {
    color: var(--clr-dark-text);
}

.act-card-light {
    background: var(--clr-white);
    border-color: #e2e4e8;
}

.act-card-light:hover {
    border-color: var(--clr-primary);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.1);
}

.act-card-accent {
    background: linear-gradient(160deg, var(--clr-white), #f4f0ff);
    border-color: var(--clr-primary);
}

.act-price-block-light {
    border-bottom-color: rgba(124, 58, 237, 0.1);
}

.act-price-block-light .act-price {
    color: var(--clr-primary);
}

.act-price-block-light .act-price-note {
    color: var(--clr-body);
}

.act-desc-light {
    color: var(--clr-body);
}

.act-features-light li {
    color: var(--clr-body);
}

.act-features-light i {
    color: var(--clr-primary);
}

.act-card-light .program-title {
    color: var(--clr-dark-text);
}

.act-card-light .program-card-badge {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.act-cta {
    padding: 110px 0;
    background: linear-gradient(160deg, var(--clr-base) 0%, #110d20 100%);
    position: relative;
    overflow: hidden;
}

.act-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 65%);
    pointer-events: none;
}

.act-cta-inner {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    z-index: 1;
}

.act-cta-badge {
    width: 64px;
    height: 64px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--clr-accent);
    margin-bottom: 28px;
}

.act-cta-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.act-cta-text {
    color: var(--clr-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.act-cta-perks {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.act-cta-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-muted);
    font-size: 14px;
}

.act-cta-perk i {
    color: var(--clr-accent);
    font-size: 18px;
}

.ct-response-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(124, 58, 237, 0.06);
    border-radius: 10px;
    border-left: 3px solid var(--clr-primary);
    color: var(--clr-body);
    font-size: 14px;
    font-weight: 500;
}

.ct-response-note i {
    color: var(--clr-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.appr-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-base);
    position: relative;
    overflow: hidden;
    padding: 40px 24px;
}

.appr-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.appr-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.appr-bg-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--clr-primary);
    top: -150px;
    right: -100px;
    opacity: 0.08;
}

.appr-bg-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--clr-accent);
    bottom: -120px;
    left: -80px;
    opacity: 0.06;
}

.appr-card {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 520px;
    width: 100%;
    background: rgba(22, 27, 38, 0.6);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 20px;
    padding: 56px 44px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    animation: apprReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes apprReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.appr-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(124, 58, 237, 0.15));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--clr-accent);
    margin-bottom: 28px;
}

.appr-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.appr-text {
    color: var(--clr-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.appr-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.appr-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(124, 58, 237, 0.06);
    border-radius: 10px;
    font-size: 14px;
    color: var(--clr-muted);
    text-align: left;
}

.appr-detail i {
    color: var(--clr-accent);
    font-size: 18px;
    flex-shrink: 0;
}

.appr-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1024px) {
    .act-cta-perks {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .act-programs,
    .act-interviews,
    .act-cta {
        padding: 80px 0;
    }

    .act-price {
        font-size: 30px;
    }

    .act-cta-perks {
        align-items: flex-start;
    }

    .appr-card {
        padding: 40px 28px;
    }

    .appr-title {
        font-size: 26px;
    }

    .appr-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
}

.legal-subtitle {
    color: var(--clr-muted);
    font-size: 17px;
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .legal-wrapper {
        padding: 36px 22px;
    }
}
