﻿:root {
    --primary: #ee140a;
    --primary-dark: #b80e08;
    --black: #070707;
    --ink: #151515;
    --muted: #666666;
    --line: #e8e8e8;
    --paper: #ffffff;
    --soft: #f7f7f7;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 92px;
}

[id] {
    scroll-margin-top: 96px;
}

main {
    padding-bottom: 18px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 12%, rgba(238, 20, 10, 0.08), transparent 26%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0 1px, transparent 1px 100%);
    background-size: auto, 34px 34px;
    z-index: -1;
}

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

iframe {
    border: 0;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px clamp(18px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
}

.brand {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    flex: 0 0 62px;
    padding: 6px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(238, 20, 10, 0.18);
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #222;
    font-size: 14px;
    font-weight: 800;
}

.mobile-nav-toggle {
    display: none;
}

.nav-links a,
.header-cta {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.header-cta {
    border: 2px solid var(--black);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
}

.header-cta:hover {
    color: #fff;
    background: var(--black);
    transform: translateY(-2px);
}

main {
    overflow: hidden;
}

.hero,
.section,
.final-cta,
.site-footer {
    padding-left: clamp(18px, 5vw, 72px);
    padding-right: clamp(18px, 5vw, 72px);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
    min-height: calc(100vh - 78px);
    padding-top: clamp(44px, 7vw, 90px);
    padding-bottom: clamp(48px, 7vw, 86px);
    background: linear-gradient(135deg, #fff 0%, #fff 45%, #111 45.2%, #050505 100%);
}

.hero-copy {
    max-width: 690px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    color: var(--black);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    color: var(--black);
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    color: var(--black);
    font-size: 21px;
    line-height: 1.16;
}

.hero-text {
    max-width: 620px;
    color: #393939;
    font-size: clamp(16px, 1.6vw, 19px);
}

.hero-actions,
.course-card .btn,
.video-copy .btn,
.final-cta .btn {
    margin-top: 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    padding: 14px 24px;
    border: 2px solid transparent;
    font-weight: 950;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(238, 20, 10, 0.24);
}

.btn-primary {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    color: var(--black);
    background: #fff;
    border-color: var(--black);
}

.btn-dark {
    color: #fff;
    background: var(--black);
    border-color: var(--black);
}

.btn-light {
    color: var(--primary);
    background: #fff;
    border-color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.hero-stats div {
    min-height: 106px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero-stats strong {
    display: block;
    color: var(--primary);
    font-size: 32px;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.hero-media {
    position: relative;
    isolation: isolate;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 28px -14px -18px 28px;
    border-radius: 25px;
    background: var(--primary);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-media video,
.hero-media iframe {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 8px solid #fff;
    border-radius: 25px;
    box-shadow: var(--shadow);
    background: #000;
}

.hero-media iframe {
    display: block;
}

.floating-note {
    position: absolute;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    animation: floatNote 3.8s ease-in-out infinite;
}

.note-one {
    top: 8%;
    left: -20px;
}

.note-two {
    right: -16px;
    bottom: 28%;
    animation-delay: 1s;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 14px 8px 0;
    padding: 14px 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    color: var(--primary);
    font-weight: 950;
}

.hero-badge strong {
    text-align: right;
}

.section {
    padding-top: clamp(70px, 9vw, 120px);
    padding-bottom: clamp(70px, 9vw, 120px);
}

.section-heading {
    max-width: 840px;
    margin-bottom: 36px;
}

.section-heading.compact {
    max-width: 720px;
}

.feature-grid,
.course-grid,
.video-grid,
.legacy-stats,
.schedule-grid {
    display: grid;
    gap: 22px;
}

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

.feature-card,
.course-card,
.video-placeholder,
.student-video-card,
.booking-panel,
.faq-item,
.timing-card {
    border-radius: 25px;
}

.feature-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.feature-card:hover,
.course-card:hover,
.schedule-grid div:hover,
.video-placeholder:hover,
.student-video-card:hover,
.faq-item:hover {
    transform: translateY(-8px);
    border-color: rgba(238, 20, 10, 0.5);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.12);
}

.feature-card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    color: #fff;
    background: var(--black);
    border-radius: 50%;
    font-weight: 950;
}

.feature-card p,
.course-card li,
.booking-panel p,
.video-copy p,
.legacy-copy p,
.timing-card p,
.site-footer p,
.final-cta p {
    color: var(--muted);
}

.legacy-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: center;
    background: #fff;
}

.legacy-copy {
    max-width: 760px;
}

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

.legacy-stats div {
    min-height: 190px;
    display: grid;
    align-content: center;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: 25px;
    background:
        linear-gradient(135deg, rgba(238, 20, 10, 0.08), transparent 46%),
        var(--soft);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.legacy-stats div:hover {
    transform: translateY(-8px);
    border-color: rgba(238, 20, 10, 0.5);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.12);
}

.legacy-stats strong {
    display: block;
    color: var(--primary);
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1;
}

.legacy-stats span {
    display: block;
    margin-top: 12px;
    color: var(--black);
    font-weight: 950;
}

.timing-section {
    background: var(--black);
}

.timing-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 32px;
    align-items: center;
    padding: clamp(26px, 5vw, 54px);
    background: #fff;
    box-shadow: var(--shadow);
}

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

.schedule-grid div {
    min-height: 118px;
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--soft);
    border-radius: 22px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.schedule-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.schedule-grid strong {
    display: block;
    margin-top: 10px;
    color: var(--black);
    font-size: 24px;
    line-height: 1.1;
}

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

.course-card {
    position: relative;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.course-card.featured {
    color: #fff;
    background: var(--black);
    border-color: var(--black);
}

.course-card.featured h3,
.course-card.featured .price,
.course-card.featured li {
    color: #fff;
}

.course-card.featured .price span {
    color: rgba(255, 255, 255, 0.72);
}

.course-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: var(--primary);
    border-radius: 50%;
    font-size: 31px;
}

.price {
    color: var(--primary);
    font-size: 40px;
    font-weight: 950;
    line-height: 1;
}

.price span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 16px;
}

.course-card ul {
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.course-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    font-weight: 750;
}

.course-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.video-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 34px;
    align-items: center;
    background: var(--soft);
}

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

.video-placeholder {
    min-height: 310px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.68)),
        radial-gradient(circle at 28% 22%, rgba(238, 20, 10, 0.85), transparent 32%),
        #111;
    box-shadow: var(--shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.student-video-card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    display: grid;
    grid-template-rows: minmax(260px, 1fr) auto;
    color: #fff;
    background: #080808;
    border: 1px solid rgba(238, 20, 10, 0.22);
    box-shadow: var(--shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.student-video-card video,
.student-video-card iframe {
    width: 100%;
    height: 100%;
    min-height: 310px;
    display: block;
    background:
        radial-gradient(circle at 28% 22%, rgba(238, 20, 10, 0.5), transparent 32%),
        #080808;
}

.student-video-card strong {
    padding: 12px 14px;
    color: #fff;
    background: #080808;
    text-align: center;
}

.video-placeholder span {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    padding-left: 4px;
    color: var(--primary);
    background: #fff;
    border-radius: 50%;
    font-size: 28px;
}

.video-placeholder strong {
    font-size: 20px;
}

.booking-section {
    background: linear-gradient(135deg, #111, #050505);
}

.booking-panel {
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px);
    background: #fff;
    box-shadow: var(--shadow);
}

.booking-panel h2 {
    max-width: 780px;
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.booking-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.booking-points li {
    min-height: 92px;
    padding: 18px;
    color: var(--ink);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 22px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.booking-points li:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
}

.faq-section {
    background: #fff;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
    max-width: none;
}

.faq-item {
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.faq-item+.faq-item {
    margin-top: 0;
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
    padding: 18px 22px;
    border: 0;
    color: var(--black);
    background: #fff;
    cursor: pointer;
    text-align: left;
    font: inherit;
    font-weight: 950;
}

.faq-item button::after {
    content: "+";
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
}

.faq-item.is-open button::after {
    content: "-";
}

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

.faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
}

.final-cta {
    text-align: center;
    padding-top: clamp(70px, 9vw, 110px);
    padding-bottom: clamp(86px, 10vw, 130px);
    color: #fff;
    background: var(--primary);
}

.final-cta h2,
.final-cta p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(240px, 1.1fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 42px;
    background: #fff;
    border-top: 1px solid var(--line);
}

.site-footer img {
    width: 62px;
    height: 62px;
    padding: 6px;
    object-fit: cover;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.site-footer p,
.site-footer h3 {
    margin: 0;
}

.site-footer h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-brand,
.footer-contact,
.footer-policies,
.footer-social {
    display: grid;
    gap: 8px;
    align-content: start;
}

.footer-contact a,
.footer-policies a,
.developed-by a {
    color: var(--black);
    font-weight: 850;
}

.footer-contact a:hover,
.footer-policies a:hover,
.developed-by a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(238, 20, 10, 0.22);
}

.social-icons svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-icons a[aria-label="YouTube"] svg path,
.social-icons a[aria-label="WhatsApp"] svg path:first-child {
    fill: currentColor;
    stroke: none;
}

.social-icons a[aria-label="YouTube"] svg path:last-child,
.social-icons a[aria-label="WhatsApp"] svg path:last-child {
    fill: #fff;
    stroke: none;
}

.developed-by {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.policy-page {
    padding-bottom: 0;
}

.policy-page main {
    overflow: visible;
}

.policy-nav {
    margin-left: auto;
}

.policy-hero {
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: clamp(44px, 6vw, 74px);
    background: linear-gradient(135deg, #fff 0%, #fff 56%, #111 56.2%, #050505 100%);
}

.policy-hero h1 {
    max-width: 820px;
}

.policy-hero p:not(.eyebrow) {
    color: var(--muted);
    font-weight: 800;
}

.policy-content {
    padding-top: clamp(46px, 7vw, 78px);
    background: var(--soft);
}

.policy-content article {
    padding: clamp(26px, 5vw, 54px);
    border: 1px solid var(--line);
    border-radius: 25px;
    background: #fff;
    box-shadow: var(--shadow);
}

.policy-content h2 {
    margin-top: 34px;
    margin-bottom: 10px;
    font-size: clamp(22px, 2.2vw, 30px);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--muted);
}

.policy-content a {
    color: var(--primary);
    font-weight: 900;
}

.cookie-consent {
    position: fixed;
    left: clamp(14px, 4vw, 42px);
    right: clamp(14px, 4vw, 42px);
    bottom: 96px;
    z-index: 60;
    display: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    color: #fff;
    background: rgba(7, 7, 7, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.cookie-consent.is-visible {
    display: grid;
}

.cookie-consent strong {
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
}

.cookie-consent p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-actions a {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-accept {
    min-height: 44px;
    padding: 12px 20px;
    color: #fff;
    background: var(--primary);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 950;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.fixed-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px clamp(14px, 4vw, 42px);
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
}

.fixed-actions a {
    min-height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-weight: 950;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.fixed-actions a:hover {
    transform: translateY(-2px);
    filter: brightness(0.96);
}

.fixed-book {
    color: #fff;
    background: var(--primary);
}

.fixed-whatsapp {
    color: #fff;
    background: #101010;
}

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

.section-reveal.is-visible {
    animation: sectionFade 0.7s ease both;
}

@keyframes sectionFade {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@keyframes floatNote {

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

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

@keyframes pulseGlow {

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

    50% {
        transform: translate(8px, -6px);
    }
}

@media (prefers-reduced-motion: reduce) {

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

@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        background: linear-gradient(180deg, #fff 0%, #fff 58%, #101010 58.2%, #050505 100%);
    }

    .hero-copy {
        max-width: 820px;
    }

    .hero-media {
        max-width: 760px;
        margin: 0 auto;
    }

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

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

@media (max-width: 820px) {
    body {
        padding-bottom: 92px;
    }

    .site-header {
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .brand {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        padding: 5px;
    }

    .brand img {
        width: 100%;
    }

    .mobile-nav-toggle {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        gap: 4px;
        margin-left: auto;
        padding: 10px;
        background: var(--black);
        border-radius: 50%;
        cursor: pointer;
    }

    .mobile-nav-toggle span {
        width: 18px;
        height: 2px;
        display: block;
        background: #fff;
        border-radius: 99px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-nav-toggle.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

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

    .mobile-nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-links {
        order: 5;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 0;
        transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.2s ease;
    }

    .site-header.nav-open .nav-links {
        max-height: fit-content;
        padding-top: 10px;
        opacity: 1;
    }

    .nav-links a {
        display: block;
        padding: 12px 14px;
        background: var(--soft);
        border: 1px solid var(--line);
        border-radius: 16px;
    }

    .header-cta {
        order: 3;
        padding: 9px 14px;
        font-size: 14px;
    }

    .hero-stats,
    .feature-grid,
    .course-grid,
    .legacy-section,
    .legacy-stats,
    .timing-card,
    .video-section,
    .video-grid,
    .schedule-grid,
    .booking-points,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .hero-media::before {
        inset: 18px -8px -12px 16px;
    }

    .hero-badge {
        margin: 12px 0 0;
        color: var(--black);
        background: #fff;
        border-color: var(--line);
    }

    .floating-note {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .note-one {
        left: -8px;
    }

    .note-two {
        right: -6px;
    }

    .video-placeholder,
    .student-video-card,
    .student-video-card video,
    .student-video-card iframe {
        min-height: 230px;
    }

    .site-footer {
        display: grid;
        text-align: left;
        grid-template-columns: 1fr;
    }

    .site-footer p {
        text-align: left;
    }

    .fixed-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .fixed-actions a {
        min-height: 54px;
        font-size: 14px;
    }

    .policy-nav {
        display: flex;
        order: 3;
        width: auto;
        max-height: none;
        opacity: 1;
        overflow: visible;
    }

    .policy-nav a {
        background: transparent;
        border: 0;
        padding: 0;
    }

    .policy-hero {
        background: #fff;
    }

    .cookie-consent {
        grid-template-columns: 1fr;
        bottom: 92px;
    }

    .cookie-actions {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 19px;
    }

    body {
        font-size: 15px;
    }

    .hero {
        padding-top: 28px;
    }

    .section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .btn,
    .hero-actions .btn,
    .booking-actions .btn {
        width: 100%;
    }

    .feature-card,
    .course-card,
    .booking-panel,
    .timing-card {
        padding: 22px;
    }

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