/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a3a8f;
    --primary-dark: #0f2460;
    --primary-light: #3a5abf;
    --accent: #c8a44e;
    --accent-light: #e8d49e;
    --text: #2d2d2d;
    --text-light: #666;
    --bg: #ffffff;
    --bg-light: #f8f9fc;
    --bg-alt: #eef1f8;
    --border: #dde2ed;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

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

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.center {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

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

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

.btn-accent:hover {
    background: #b8943e;
    border-color: #b8943e;
    color: #fff;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.15rem;
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--primary);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.06);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-alt);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.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(--text);
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 72px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.82) 0%, rgba(26,58,143,0.72) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 40px 24px;
    max-width: 800px;
}

.hero-logo {
    width: 140px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.8;
}

.hero-tagline {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 40px;
    font-style: italic;
}

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

/* ===== ABOUT ===== */
.about {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ===== STYLES ===== */
.styles {
    background: var(--bg);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.style-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
    overflow: hidden;
}

.style-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.style-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.style-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.style-card:hover .style-photo img {
    transform: scale(1.05);
}

.style-card h3 {
    font-size: 1.2rem;
    margin: 16px 20px 8px;
    color: var(--primary-dark);
}

.style-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0 20px 20px;
}

/* ===== GALLERY ===== */
.gallery {
    background: #0a1628;
    padding: 80px 0;
}

.gallery .section-title {
    color: #fff;
}

.gallery .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.gallery-large {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: unset;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

/* ===== LEVELS ===== */
.levels {
    background: var(--bg-light);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.level-card {
    background: var(--bg);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all var(--transition);
}

.level-card:hover {
    border-color: var(--primary-light);
}

.level-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.level-badge.amateur {
    background: #e8f5e9;
    color: #2e7d32;
}

.level-badge.advanced {
    background: #e3f2fd;
    color: #1565c0;
}

.level-badge.higher {
    background: #fce4ec;
    color: #c62828;
}

.level-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.level-card p {
    color: var(--text-light);
}

/* ===== PRICING ===== */
.pricing {
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.price-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.price-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.price-card:hover {
    box-shadow: var(--shadow);
}

.price-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.price-card p {
    color: var(--text-light);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.cta .btn-primary:hover {
    background: #b8943e;
    border-color: #b8943e;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a1628;
    color: #ccc;
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #aaa;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* ===== RULES PAGE ===== */
.page-header {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a8f 100%);
    padding: 120px 0 60px;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.page-header p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.rules-content {
    padding: 60px 0;
}

.rules-nav {
    position: sticky;
    top: 80px;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}

.rules-nav h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.rules-nav ul {
    list-style: none;
}

.rules-nav ul li {
    margin-bottom: 8px;
}

.rules-nav ul li a {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 6px 12px;
    display: block;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.rules-nav ul li a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.rules-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.rules-section {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}

.rules-section h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.rules-section h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 20px 0 12px;
}

.rules-section p, .rules-section li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.rules-section ul, .rules-section ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.rules-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.rules-table th {
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.rules-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.rules-table tr:nth-child(even) {
    background: var(--bg-light);
}

.rules-table tr:hover {
    background: var(--bg-alt);
}

.rules-note {
    background: #fff3cd;
    border-left: 4px solid var(--warning);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-size: 0.95rem;
}

.rules-important {
    background: #f8d7da;
    border-left: 4px solid var(--error);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-size: 0.95rem;
}

/* ===== REGISTRATION PAGE ===== */
.registration-page {
    padding-top: 72px;
    min-height: 100vh;
    background: var(--bg-light);
}

.registration-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* Progress bar */
.progress-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-step .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--border);
    color: var(--text-light);
    transition: all var(--transition);
}

.progress-step .step-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.progress-step.active .step-number {
    background: var(--primary);
    color: #fff;
}

.progress-step.active .step-label {
    color: var(--primary);
}

.progress-step.completed .step-number {
    background: var(--success);
    color: #fff;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: var(--border);
    align-self: center;
    margin: 0 12px;
    transition: background var(--transition);
}

.progress-line.active {
    background: var(--primary);
}

/* Form card */
.form-card {
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
    border: 1px solid var(--border);
}

.form-card h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-card .form-desc {
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group label .required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition);
}

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

.form-group input.error,
.form-group select.error {
    border-color: var(--error);
}

.form-group .error-msg {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 4px;
    display: none;
}

.form-group .error-msg.visible {
    display: block;
}

.form-group .hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Radio/checkbox groups */
.radio-group, .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.radio-option, .checkbox-option {
    position: relative;
}

.radio-option input,
.checkbox-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-option label,
.checkbox-option label {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition);
}

.radio-option input:checked + label,
.checkbox-option input:checked + label {
    border-color: var(--primary);
    background: var(--bg-alt);
    color: var(--primary);
}

.radio-option label:hover,
.checkbox-option label:hover {
    border-color: var(--primary-light);
}

/* Form buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 16px;
}

.form-buttons .btn {
    min-width: 140px;
}

/* Step panels */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Summary */
.summary-section {
    margin-bottom: 24px;
}

.summary-section h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-alt);
}

.summary-row .label {
    color: var(--text-light);
    font-weight: 500;
}

.summary-row .value {
    color: var(--text);
    font-weight: 600;
}

.summary-total {
    background: var(--bg-alt);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.summary-total .total-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-total .total-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.terms-check {
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.terms-check label {
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
}

/* PayPal */
#paypal-button-container {
    margin-top: 24px;
    min-height: 45px;
}

/* Success message */
.success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.success-message.visible {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success);
    color: #fff;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-message h2 {
    color: var(--success);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 8px;
}

/* Category detail cards */
.category-detail {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.category-detail strong {
    color: var(--text);
}

/* ===== PAYMENT OPTIONS ===== */
.payment-methods {
    margin-bottom: 16px;
}

.payment-details {
    animation: fadeIn 0.3s ease;
}

.payment-info-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 16px;
}

.payment-info-box p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.rib-image {
    max-width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
    margin: 12px 0;
}

.rib-image:hover {
    box-shadow: var(--shadow);
    transform: scale(1.01);
}

.payment-notice {
    background: #fff3cd;
    border-left: 4px solid var(--warning);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 16px;
}

.payment-notice p {
    color: #856404;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.2s ease;
}

.modal-content {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: var(--radius);
    padding: 16px;
}

.modal-content img {
    width: 100%;
    border-radius: var(--radius-sm);
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background var(--transition);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .rules-layout {
        grid-template-columns: 1fr;
    }
    .rules-nav {
        position: static;
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform var(--transition);
        gap: 4px;
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-banner {
        max-width: 300px;
    }

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

    .about-image {
        order: -1;
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
    }

    .about-stats {
        justify-content: center;
    }

    .styles-grid,
    .levels-grid,
    .pricing-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .price-card.featured {
        transform: none;
    }

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

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px;
    }

    .progress-step .step-label {
        display: none;
    }

    .progress-line {
        width: 30px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}
