/* =====================================================
   Cultura Francesa — Sistema de Matrículas
   Design: Branco institucional + vinho #6B1A2E
   Fonte: Outfit (sans) — Google Fonts
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ─── Tokens ─────────────────────────────────────── */
:root {
    --wine:         #6B1A2E;
    --wine-dark:    #4E1220;
    --wine-light:   #8C2240;
    --wine-pale:    #F9EFF2;
    --gold:         #C9963A;
    --white:        #FFFFFF;
    --off-white:    #FAF9F8;
    --gray-50:      #F5F4F3;
    --gray-100:     #ECEAE8;
    --gray-200:     #D8D4D0;
    --gray-400:     #9B9591;
    --gray-600:     #6B6560;
    --gray-800:     #2E2A27;
    --black:        #1A1714;

    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    20px;
    --radius-pill:  100px;

    --shadow-sm:    0 1px 3px rgba(107,26,46,.08);
    --shadow:       0 4px 16px rgba(107,26,46,.12);
    --shadow-lg:    0 12px 40px rgba(107,26,46,.18);

    --transition:   .22s cubic-bezier(.4,0,.2,1);

    --nav-h:        72px;
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Utilities ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Navigation ─────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    display: flex; align-items: center;
    transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
    display: flex; align-items: center; gap: 12px;
    font-weight: 700; font-size: 1.05rem; color: var(--wine);
    letter-spacing: -.01em;
}
.nav__logo-mark {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--wine);
    display: grid; place-items: center;
}
.nav__logo-mark svg { width: 20px; height: 20px; }
.nav__links {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
}
.nav__links a {
    font-size: .9rem; font-weight: 500; color: var(--gray-600);
    transition: color var(--transition);
}
.nav__links a:hover { color: var(--wine); }
.nav__cta {
    display: flex; align-items: center; gap: 12px;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px; border-radius: var(--radius-pill);
    font-size: .9rem; font-weight: 600; line-height: 1;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
    background: var(--wine); color: var(--white);
    box-shadow: 0 2px 8px rgba(107,26,46,.35);
}
.btn-primary:hover { background: var(--wine-dark); box-shadow: var(--shadow); }

.btn-secondary {
    background: var(--white); color: var(--wine);
    border: 1.5px solid var(--wine);
}
.btn-secondary:hover { background: var(--wine-pale); }

.btn-ghost {
    background: transparent; color: var(--gray-600); padding: 11px 16px;
}
.btn-ghost:hover { color: var(--wine); }

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Hero ───────────────────────────────────────── */
.hero {
    min-height: 100dvh;
    display: flex; align-items: center;
    padding-top: var(--nav-h);
    background: linear-gradient(160deg, var(--off-white) 0%, var(--wine-pale) 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(107,26,46,.07) 0%, transparent 70%);
}
.hero__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
    position: relative; z-index: 1;
}
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-pill); padding: 6px 14px;
    font-size: .78rem; font-weight: 600;
    color: var(--wine); letter-spacing: .04em; text-transform: uppercase;
    margin-bottom: 24px;
}
.hero__badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--wine); animation: pulse 2s infinite; }
.hero__h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -.03em; color: var(--black);
    margin-bottom: 20px;
}
.hero__h1 em {
    font-style: normal; color: var(--wine);
}
.hero__sub {
    font-size: 1.05rem; color: var(--gray-600);
    max-width: 440px; line-height: 1.7; margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__img {
    border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Section titles ─────────────────────────────── */
.section { padding: 96px 0; }
.section--alt { background: var(--off-white); }
.section__title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800; letter-spacing: -.025em; color: var(--black);
    margin-bottom: 12px;
}
.section__title span { color: var(--wine); }
.section__sub {
    font-size: 1.05rem; color: var(--gray-600);
    max-width: 520px; line-height: 1.65;
    margin-bottom: 52px;
}
.section__header { margin-bottom: 52px; }

/* ─── Course Cards ────────────────────────────────── */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex; flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}
.card__img {
    aspect-ratio: 16/9; overflow: hidden;
    position: relative;
}
.card__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.card:hover .card__img img { transform: scale(1.04); }
.card__badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--wine); color: var(--white);
    font-size: .72rem; font-weight: 700;
    padding: 4px 10px; border-radius: var(--radius-pill);
    letter-spacing: .04em; text-transform: uppercase;
}
.card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card__title {
    font-size: 1.2rem; font-weight: 700;
    color: var(--black); margin-bottom: 8px;
    letter-spacing: -.01em;
}
.card__desc {
    font-size: .9rem; color: var(--gray-600);
    line-height: 1.6; margin-bottom: 20px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}
.card__pricing {
    display: flex; align-items: flex-end;
    justify-content: space-between; gap: 12px;
    margin-bottom: 20px;
    padding: 16px; background: var(--gray-50);
    border-radius: var(--radius); border: 1px solid var(--gray-100);
}
.price-block { display: flex; flex-direction: column; gap: 2px; }
.price-label { font-size: .72rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .04em; }
.price-value { font-size: 1.35rem; font-weight: 800; color: var(--wine); letter-spacing: -.02em; }
.price-suffix { font-size: .75rem; color: var(--gray-400); }
.price-divider { width: 1px; height: 36px; background: var(--gray-200); }

/* ─── Stats / How it works ───────────────────────── */
.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
}
.step {
    display: flex; flex-direction: column; gap: 14px;
    padding: 28px; border-radius: var(--radius-lg);
    background: var(--white); border: 1px solid var(--gray-100);
    position: relative;
}
.step__num {
    width: 44px; height: 44px; border-radius: var(--radius);
    background: var(--wine); color: var(--white);
    display: grid; place-items: center;
    font-weight: 800; font-size: 1.1rem;
}
.step__title { font-size: 1rem; font-weight: 700; color: var(--black); }
.step__desc { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }
.step::after {
    content: '→';
    position: absolute; right: -18px; top: 50%;
    transform: translateY(-50%);
    color: var(--gray-200); font-size: 1.2rem;
}
.step:last-child::after { display: none; }

/* ─── Testimonials ───────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 28px;
    box-shadow: var(--shadow-sm);
}
.testimonial__stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial__text { font-size: .95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--wine-pale); display: grid; place-items: center;
    font-weight: 700; color: var(--wine); font-size: .9rem;
}
.testimonial__name { font-weight: 700; font-size: .9rem; color: var(--black); }
.testimonial__role { font-size: .78rem; color: var(--gray-400); }

/* ─── Forms ──────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
    font-size: .85rem; font-weight: 600; color: var(--gray-800);
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit; font-size: .95rem;
    color: var(--black); background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--wine);
    box-shadow: 0 0 0 3px rgba(107,26,46,.12);
}
.form-input::placeholder { color: var(--gray-400); }
.form-error { font-size: .8rem; color: #C0392B; margin-top: 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-col-full { grid-column: 1 / -1; }

/* ─── Checkout Steps ─────────────────────────────── */
.checkout-steps {
    display: flex; gap: 0; margin-bottom: 40px;
    border-bottom: 2px solid var(--gray-100);
}
.checkout-step {
    flex: 1; display: flex; align-items: center; gap: 10px;
    padding: 16px 0; position: relative;
    font-size: .88rem; font-weight: 600; color: var(--gray-400);
}
.checkout-step.active { color: var(--wine); }
.checkout-step.done { color: var(--gray-600); }
.checkout-step.active::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--wine); border-radius: 2px;
}
.step-badge {
    width: 28px; height: 28px; border-radius: 50%;
    display: grid; place-items: center;
    font-size: .78rem; font-weight: 800;
    background: var(--gray-100); color: var(--gray-600);
    transition: all var(--transition);
}
.checkout-step.active .step-badge { background: var(--wine); color: var(--white); }
.checkout-step.done .step-badge { background: #27AE60; color: var(--white); }

/* ─── Payment Options ────────────────────────────── */
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.payment-option {
    position: relative; cursor: pointer;
}
.payment-option input[type=radio] { position: absolute; opacity: 0; }
.payment-option__label {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; padding: 20px 16px;
    border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
    transition: all var(--transition); text-align: center;
}
.payment-option input:checked + .payment-option__label {
    border-color: var(--wine); background: var(--wine-pale);
}
.payment-option__icon { font-size: 1.8rem; }
.payment-option__name { font-size: .9rem; font-weight: 700; color: var(--black); }
.payment-option__desc { font-size: .78rem; color: var(--gray-400); }

/* ─── Summary Box ────────────────────────────────── */
.summary-box {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--nav-h) + 24px);
}
.summary-box__title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 16px; }
.summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid var(--gray-100);
    font-size: .9rem; color: var(--gray-600);
}
.summary-row:last-of-type { border: none; }
.summary-row strong { color: var(--black); font-weight: 700; }
.summary-total {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--wine);
}
.summary-total .label { font-size: 1rem; font-weight: 700; color: var(--black); }
.summary-total .amount { font-size: 1.5rem; font-weight: 800; color: var(--wine); }

/* ─── Status / Obrigado ──────────────────────────── */
.status-hero {
    min-height: calc(100dvh - var(--nav-h));
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, var(--off-white) 0%, var(--wine-pale) 100%);
    padding: 80px 24px;
}
.status-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 48px; max-width: 560px; width: 100%;
    box-shadow: var(--shadow-lg); text-align: center;
}
.status-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: #EAFAF2; display: grid; place-items: center;
    font-size: 2rem; margin: 0 auto 20px;
}
.status-icon.pending { background: #FEF9EC; }
.status-card__title { font-size: 1.8rem; font-weight: 800; color: var(--black); margin-bottom: 10px; }
.status-card__sub { color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }

/* ─── Admin Layout ───────────────────────────────── */
.admin-body { background: var(--gray-50); min-height: 100vh; }
.admin-layout { display: flex; min-height: 100vh; }

.sidebar {
    width: 260px; background: var(--wine-dark); flex-shrink: 0;
    position: fixed; top: 0; left: 0; bottom: 0;
    display: flex; flex-direction: column;
    z-index: 50; overflow-y: auto;
}
.sidebar__logo {
    display: flex; align-items: center; gap: 12px;
    padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.08);
    color: var(--white); font-size: 1rem; font-weight: 700;
}
.sidebar__logo-mark {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,.12);
    display: grid; place-items: center; flex-shrink: 0;
}
.sidebar__nav { flex: 1; padding: 16px 12px; }
.sidebar__section-title {
    font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.35);
    text-transform: uppercase; letter-spacing: .08em;
    padding: 8px 8px 4px; margin-top: 8px;
}
.sidebar__link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--radius);
    color: rgba(255,255,255,.65); font-size: .9rem; font-weight: 500;
    transition: all var(--transition); margin-bottom: 2px;
}
.sidebar__link:hover { background: rgba(255,255,255,.08); color: var(--white); }
.sidebar__link.active { background: rgba(255,255,255,.14); color: var(--white); }
.sidebar__link svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar__footer { padding: 16px 12px; border-top: 1px solid rgba(255,255,255,.08); }

.admin-main { margin-left: 260px; flex: 1; min-width: 0; }
.admin-topbar {
    height: 64px; background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px; position: sticky; top: 0; z-index: 40;
}
.admin-topbar__title { font-size: 1.1rem; font-weight: 700; color: var(--black); }
.admin-content { padding: 32px; }

/* ─── Dashboard Cards ────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 22px 24px;
    box-shadow: var(--shadow-sm);
}
.stat-card__label { font-size: .8rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.stat-card__value { font-size: 2rem; font-weight: 800; color: var(--black); letter-spacing: -.03em; }
.stat-card__delta { font-size: .82rem; color: var(--gray-400); margin-top: 4px; }
.stat-card--wine .stat-card__value { color: var(--wine); }
.stat-card--green .stat-card__value { color: #27AE60; }
.stat-card--amber .stat-card__value { color: #D4A017; }

/* ─── Admin Table ────────────────────────────────── */
.table-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.table-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; border-bottom: 1px solid var(--gray-100);
}
.table-header__title { font-size: 1rem; font-weight: 700; color: var(--black); }
table { width: 100%; border-collapse: collapse; }
thead th {
    text-align: left; font-size: .78rem; font-weight: 600;
    color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em;
    padding: 12px 20px; background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}
tbody tr {
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition);
}
tbody tr:last-child { border: none; }
tbody tr:hover { background: var(--gray-50); }
tbody td { padding: 14px 20px; font-size: .9rem; color: var(--gray-800); vertical-align: middle; }
.table-empty { text-align: center; padding: 48px; color: var(--gray-400); }

/* ─── Badges ─────────────────────────────────────── */
.badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; border-radius: var(--radius-pill);
    font-size: .74rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
}
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .8; }
.badge--green  { background: #EAFAF2; color: #1A7340; }
.badge--wine   { background: var(--wine-pale); color: var(--wine); }
.badge--amber  { background: #FEF9EC; color: #92600A; }
.badge--red    { background: #FDEDED; color: #922B21; }
.badge--gray   { background: var(--gray-100); color: var(--gray-600); }

/* ─── Filters ────────────────────────────────────── */
.filters {
    display: flex; gap: 12px; flex-wrap: wrap;
    padding: 16px 24px; border-bottom: 1px solid var(--gray-100);
    background: var(--white);
}
.filter-input {
    padding: 8px 14px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius); font-family: inherit; font-size: .88rem;
    color: var(--black); outline: none;
    transition: border-color var(--transition);
}
.filter-input:focus { border-color: var(--wine); }

/* ─── Detail Page ────────────────────────────────── */
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; }
.info-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.info-card__title {
    font-size: 1rem; font-weight: 700; color: var(--black);
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}
.info-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 10px 0; border-bottom: 1px solid var(--gray-100);
    font-size: .9rem;
}
.info-row:last-child { border: none; }
.info-label { color: var(--gray-400); font-weight: 500; flex-shrink: 0; }
.info-value { color: var(--black); font-weight: 600; text-align: right; max-width: 200px; word-break: break-word; }

/* ─── Chart container ────────────────────────────── */
.chart-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.chart-card__title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 20px; }

/* ─── Alert / Flash ──────────────────────────────── */
.flash {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: var(--radius);
    font-size: .9rem; font-weight: 500; margin-bottom: 16px;
}
.flash--success { background: #EAFAF2; color: #1A7340; border: 1px solid #A9DFBF; }
.flash--error   { background: #FDEDED; color: #922B21; border: 1px solid #F1948A; }
.flash--info    { background: #EBF5FB; color: #1A5276; border: 1px solid #85C1E9; }

/* ─── Footer ─────────────────────────────────────── */
.footer {
    background: var(--black); color: rgba(255,255,255,.5);
    padding: 48px 0;
}
.footer__inner {
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 32px;
}
.footer__brand { color: var(--white); font-weight: 700; font-size: 1rem; }
.footer__copy { font-size: .82rem; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: .85rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }

/* ─── Animations ─────────────────────────────────── */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .5s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__img { order: -1; }
    .nav__links { display: none; }
    .courses-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .admin-layout { flex-direction: column; }
    .sidebar { width: 100%; position: relative; height: auto; }
    .admin-main { margin-left: 0; }
    .footer__inner { grid-template-columns: 1fr; text-align: center; }
    .footer__links { justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; }
    .step::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
