* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #141414;
    color: #ffffff;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    color: #f47521;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #ff8533;
}
.Header {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.Header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0;
    height: 64px;
}
.Header-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.Header-logoAccent {
    color: #f47521;
}
.Header-list {
    display: flex;
    align-items: center;
    gap: 0;
}
.Header-link {
    color: #d1d1d1;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}
.Header-link:hover {
    color: #f47521;
}
.Header-link--cta {
    background: #f47521;
    color: #ffffff;
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 600;
    margin-left: 4px;
}
.Header-link--cta:hover {
    background: #ff8533;
    color: #ffffff;
}
.Header-link--login {
    color: #f47521;
    font-weight: 600;
}
.Header-toggle span {
    background: #ffffff;
}
.Hero {
    position: relative;
    width: 100%;
    min-height: min(600px, 55vh);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.Hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.Hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.55) 50%, transparent 100%);
    z-index: 1;
}
.Hero-inner {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5% 0;
}
.Hero-label {
    display: inline-block;
    background: rgba(244,117,33,0.15);
    color: #f47521;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.Hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    max-width: 600px;
    margin-bottom: 16px;
}
.Hero-subtitle {
    font-size: 1.15rem;
    color: #d1d1d1;
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.7;
}
.Hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.Btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 14px 28px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.Btn--primary {
    background: #f47521;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(244,117,33,0.3);
}
.Btn--primary:hover {
    background: #ff8533;
    box-shadow: 0 6px 20px rgba(244,117,33,0.4);
    transform: translateY(-1px);
}
.Btn--ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.25);
}
.Btn--ghost:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}
.Metrics {
    background: #1a1a1a;
    padding: 4% 5%;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.Metrics-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}
.Metrics-item {
    flex: 1 1 calc(25% - 18px);
    min-width: 180px;
    text-align: center;
    padding: 20px 0;
}
.Metrics-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}
.Metrics-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #f47521;
    line-height: 1.1;
}
.Metrics-label {
    font-size: 0.85rem;
    color: #9a9a9a;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.Featured {
    background: #141414;
    padding: 4% 0;
}
.Featured-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.Featured .Section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.Row {
    margin-bottom: 36px;
}
.Row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.Row-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}
.Row-more {
    color: #9a9a9a;
    font-size: 0.85rem;
    font-weight: 500;
}
.Row-more:hover {
    color: #f47521;
}
.Row-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}
.Row-scroll::-webkit-scrollbar {
    display: none;
}
.VideoCard {
    flex: 0 0 calc(20% - 6.4px);
    min-width: 200px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, z-index 0s 0.3s;
}
.VideoCard:hover {
    transform: scale(1.05);
    z-index: 5;
    transition: transform 0.3s ease, z-index 0s;
}
.VideoCard-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    display: block;
    background: #212121;
}
.VideoCard-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.75);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 3px;
}
.VideoCard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
}
.VideoCard:hover .VideoCard-overlay {
    opacity: 1;
}
.VideoCard-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}
.VideoCard-meta {
    font-size: 0.72rem;
    color: #9a9a9a;
    margin-top: 4px;
}
.VideoCard-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(244,117,33,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.VideoCard:hover .VideoCard-play {
    opacity: 1;
}
.VideoCard-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 3px;
}
.VideoCard-lock {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.8rem;
    background: rgba(0,0,0,0.6);
    padding: 3px 6px;
    border-radius: 3px;
}
.Categories {
    background: #1a1a1a;
    padding: 4% 5%;
}
.Categories-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.Categories .Section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 28px;
}
.Categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.CategoryCard {
    flex: 1 1 calc(33.333% - 11px);
    min-width: 260px;
    background: #212121;
    border-radius: 10px;
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.04);
}
.CategoryCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.CategoryCard-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.CategoryCard-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.CategoryCard-count {
    font-size: 0.82rem;
    color: #9a9a9a;
}
.CategoryCard-level {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #f47521;
    background: rgba(244,117,33,0.1);
    padding: 3px 10px;
    border-radius: 12px;
}
.Features {
    background: #141414;
    padding: 4% 5%;
}
.Features-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.Features .Section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.Features .Section-subtitle {
    color: #9a9a9a;
    margin-bottom: 36px;
    max-width: 560px;
}
.Features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.FeatureCard {
    flex: 1 1 calc(25% - 15px);
    min-width: 220px;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 28px 22px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.3s ease;
}
.FeatureCard:hover {
    border-color: rgba(244,117,33,0.25);
}
.FeatureCard-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}
.FeatureCard-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.FeatureCard-desc {
    font-size: 0.85rem;
    color: #9a9a9a;
    line-height: 1.6;
}
.Pricing {
    background: #1a1a1a;
    padding: 4% 5%;
}
.Pricing-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.Pricing .Section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.Pricing .Section-subtitle {
    color: #9a9a9a;
    margin-bottom: 36px;
}
.Pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.PriceCard {
    flex: 1 1 calc(25% - 15px);
    min-width: 240px;
    max-width: 300px;
    background: #212121;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.04);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.PriceCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.PriceCard--popular {
    border-color: #f47521;
    box-shadow: 0 0 30px rgba(244,117,33,0.15);
}
.PriceCard-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f47521;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 12px;
    letter-spacing: 0.8px;
}
.PriceCard-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}
.PriceCard-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f47521;
    line-height: 1.1;
}
.PriceCard-period {
    font-size: 0.85rem;
    color: #9a9a9a;
    margin-bottom: 20px;
}
.PriceCard-features {
    list-style: none;
    margin-bottom: 24px;
}
.PriceCard-features li {
    padding: 7px 0;
    font-size: 0.85rem;
    color: #d1d1d1;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.PriceCard-features li::before {
    content: '✓';
    color: #f47521;
    margin-right: 8px;
    font-weight: 700;
}
.PriceCard .Btn {
    width: 100%;
    justify-content: center;
    padding: 12px 0;
}
.Cancellation {
    background: #141414;
    padding: 4% 5%;
}
.Cancellation-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.Cancellation .Section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 28px;
}
.Cancellation-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.CancelStep {
    flex: 1 1 calc(25% - 15px);
    min-width: 200px;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.04);
}
.CancelStep-num {
    width: 44px;
    height: 44px;
    background: rgba(244,117,33,0.12);
    color: #f47521;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.CancelStep-text {
    font-size: 0.9rem;
    color: #d1d1d1;
    line-height: 1.5;
}
.Payment {
    background: #1a1a1a;
    padding: 4% 5%;
    text-align: center;
}
.Payment-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.Payment .Section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 28px;
}
.Payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}
.PaymentIcon {
    background: #212121;
    border-radius: 10px;
    padding: 18px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d1d1d1;
    border: 1px solid rgba(255,255,255,0.04);
}
.Payment-secure {
    font-size: 0.82rem;
    color: #9a9a9a;
}
.Faq {
    background: #141414;
    padding: 4% 5%;
}
.Faq-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.Faq .Section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
}
.FaqItem {
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
}
.FaqItem-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.FaqItem-question:hover {
    color: #f47521;
}
.FaqItem-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #9a9a9a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}
.FaqItem.is-open .FaqItem-question::after {
    transform: rotate(45deg);
    color: #f47521;
}
.FaqItem-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.FaqItem-answer p {
    padding: 0 22px 18px;
    font-size: 0.9rem;
    color: #9a9a9a;
    line-height: 1.7;
}
.Register {
    background: linear-gradient(135deg, #f47521 0%, #e05500 100%);
    padding: 5% 5%;
    text-align: center;
}
.Register-container {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
}
.Register .Section-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 14px;
}
.Register-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    line-height: 1.7;
}
.Register .Btn--white {
    background: #ffffff;
    color: #141414;
    font-weight: 700;
    padding: 16px 36px;
    font-size: 1.05rem;
}
.Register .Btn--white:hover {
    background: #f0f0f0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.Contact {
    background: #1a1a1a;
    padding: 4% 5%;
}
.Contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.Contact .Section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 28px;
}
.Contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.Contact-info {
    flex: 1 1 calc(40% - 20px);
    min-width: 280px;
}
.Contact-infoItem {
    margin-bottom: 20px;
}
.Contact-infoLabel {
    font-size: 0.8rem;
    color: #9a9a9a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.Contact-infoValue {
    font-size: 1rem;
    color: #d1d1d1;
}
.Contact-infoValue a {
    color: #f47521;
}
.Contact-form {
    flex: 1 1 calc(60% - 20px);
    min-width: 300px;
}
.ContactModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
}
.ContactModal.is-visible {
    display: flex;
}
.ContactModal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
}
.ContactModal-body {
    position: relative;
    z-index: 1;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 36px 32px;
    width: 90%;
    max-width: 480px;
    border: 1px solid rgba(255,255,255,0.08);
}
.ContactModal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #9a9a9a;
    font-size: 1.6rem;
    cursor: pointer;
}
.ContactModal-close:hover {
    color: #ffffff;
}
.ContactModal-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.Form-group {
    margin-bottom: 16px;
}
.Form-label {
    display: block;
    font-size: 0.82rem;
    color: #9a9a9a;
    margin-bottom: 6px;
    font-weight: 500;
}
.Form-input {
    width: 100%;
    padding: 12px 14px;
    background: #212121;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}
.Form-input:focus {
    outline: none;
    border-color: #f47521;
}
textarea.Form-input {
    resize: vertical;
    min-height: 100px;
}
.Form-submit {
    width: 100%;
    margin-top: 8px;
}
.Form-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.Form-message--success {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.2);
}
.Form-message--error {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.2);
}
.Footer {
    background: #0a0a0a;
    padding: 4% 5% 2%;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.Footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.Footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 36px;
}
.Footer-brand {
    flex: 1 1 calc(30% - 27px);
    min-width: 240px;
}
.Footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 8px;
}
.Footer-logoAccent {
    color: #f47521;
}
.Footer-tagline {
    color: #9a9a9a;
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.Footer-disclaimer {
    font-size: 0.78rem;
    color: #666666;
    line-height: 1.6;
}
.Footer-links {
    flex: 1 1 calc(15% - 27px);
    min-width: 130px;
}
.Footer-heading {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.Footer-list {
    list-style: none;
}
.Footer-list li {
    margin-bottom: 8px;
}
.Footer-list a {
    color: #9a9a9a;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.Footer-list a:hover {
    color: #f47521;
}
.Footer-contact {
    flex: 1 1 calc(25% - 27px);
    min-width: 200px;
}
.Footer-contact p {
    font-size: 0.82rem;
    color: #9a9a9a;
    margin-bottom: 4px;
    line-height: 1.5;
}
.Footer-contact a {
    color: #f47521;
}
.Footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.Footer-bottom p {
    font-size: 0.78rem;
    color: #666666;
}
.Footer-cookieBtn {
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: #9a9a9a;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.Footer-cookieBtn:hover {
    color: #f47521;
    border-color: #f47521;
}
.Legal {
    background: #141414;
    padding: 4% 5%;
}
.Legal-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.Legal-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.Legal-updated {
    font-size: 0.85rem;
    color: #9a9a9a;
    margin-bottom: 32px;
}
.Legal-container h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #f47521;
}
.Legal-container h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}
.Legal-container p {
    font-size: 0.95rem;
    color: #d1d1d1;
    line-height: 1.8;
    margin-bottom: 14px;
}
.Legal-container ul {
    margin-left: 20px;
    margin-bottom: 14px;
}
.Legal-container li {
    font-size: 0.95rem;
    color: #d1d1d1;
    line-height: 1.7;
    margin-bottom: 6px;
}
.Instructors {
    background: #141414;
    padding: 4% 5%;
}
.Instructors-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.Instructors .Section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 28px;
}
.Instructors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.InstructorCard {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
    transition: transform 0.3s ease;
}
.InstructorCard:hover {
    transform: translateY(-4px);
}
.InstructorCard-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    display: block;
}
.InstructorCard-body {
    padding: 20px;
}
.InstructorCard-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.InstructorCard-role {
    font-size: 0.82rem;
    color: #f47521;
    font-weight: 600;
    margin-bottom: 10px;
}
.InstructorCard-bio {
    font-size: 0.85rem;
    color: #9a9a9a;
    line-height: 1.6;
    margin-bottom: 12px;
}
.InstructorCard-stats {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: #666666;
}
.InstructorCard-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}
.VideoModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.VideoModal.is-visible {
    display: flex;
}
.VideoModal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(18px) saturate(0.6);
}
.VideoModal-player {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 820px;
    aspect-ratio: 16/9;
    background: rgba(10,10,10,0.85);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 32px 80px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.04);
    overflow: hidden;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 280ms cubic-bezier(0.25,0.46,0.45,0.94), opacity 280ms cubic-bezier(0.25,0.46,0.45,0.94);
    background-size: cover;
    background-position: center;
}
.VideoModal.is-visible .VideoModal-player {
    transform: scale(1);
    opacity: 1;
}
.VideoModal-playBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255,255,255,0.15);
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}
.VideoModal-playBtn:hover {
    background: rgba(255,255,255,0.22);
    transform: translate(-50%, -50%) scale(1.1);
}
.VideoModal-playBtn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255,255,255,0.15); }
    50% { box-shadow: 0 0 50px rgba(255,255,255,0.3); }
}
.VideoModal-playBtn {
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.VideoModal-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 0 16px 10px;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    z-index: 2;
}
.VideoModal-progress {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
}
.VideoModal-progressFill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35%;
    background: #ffffff;
    border-radius: 2px;
}
.VideoModal-closeBtn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.3s ease;
}
.VideoModal-closeBtn:hover {
    background: rgba(255,255,255,0.18);
}
.PageHero {
    background: #1a1a1a;
    padding: 4% 5%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.PageHero-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.PageHero-subtitle {
    color: #9a9a9a;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animated {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}
.animated[data-delay="1"] { animation-delay: 0.1s; }
.animated[data-delay="2"] { animation-delay: 0.2s; }
.animated[data-delay="3"] { animation-delay: 0.3s; }
.animated[data-delay="4"] { animation-delay: 0.4s; }
@media (max-width: 768px) {
    .Hero-title {
        font-size: 2.4rem;
    }
    .Hero-subtitle {
        font-size: 1rem;
    }
    .Metrics-item {
        flex: 1 1 calc(50% - 12px);
    }
    .VideoCard {
        flex: 0 0 calc(45% - 4px);
        min-width: 160px;
    }
    .CategoryCard {
        flex: 1 1 100%;
    }
    .FeatureCard {
        flex: 1 1 calc(50% - 10px);
    }
    .PriceCard {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .CancelStep {
        flex: 1 1 calc(50% - 10px);
    }
    .Contact-grid {
        flex-direction: column;
    }
    .Footer-grid {
        flex-direction: column;
    }
    .InstructorCard {
        flex: 1 1 100%;
    }
    .PageHero-title {
        font-size: 2rem;
    }
    .secondary-content {
        display: none;
    }
    .decoration {
        display: none;
    }
}
@media (max-width: 480px) {
    .Hero-title {
        font-size: 1.8rem;
    }
    .Metrics-value {
        font-size: 1.6rem;
    }
    .VideoCard {
        flex: 0 0 calc(70% - 4px);
    }
    .FeatureCard {
        flex: 1 1 100%;
    }
    .CancelStep {
        flex: 1 1 100%;
    }
}
