:root {
    --primary: #c0392b;
    --primary-dark: #a93226;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --dark: #1a1a2e;
    --text: #555555;
    --text-light: #888888;
    --white: #ffffff;
    --light-bg: #fef5f3;
    --light-bg2: #fff8f0;
    --border: #e8e8e8;
    --radius: 12px;
    --radius-lg: 20px;
    --japan-red: #c0392b;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Epilogue', sans-serif;
    color: var(--dark);
    line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

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

.section { padding: 80px 0; }
.light-section { background: var(--light-bg); }

.section-subtitle {
    font-family: 'Epilogue', sans-serif;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: var(--accent); color: var(--white); }
.btn-secondary:hover { background: #d68910; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; border: 2px solid var(--white); color: var(--white); padding: 14px 32px; border-radius: 50px; font-family: 'Epilogue', sans-serif; font-weight: 600; font-size: 15px; transition: 0.3s; }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-arrow::after { content: '\2192'; font-size: 18px; }

/* LOGO */
.logo-text {
    font-family: 'Epilogue', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}
.logo-white { color: var(--white); }

/* HEADER */
.site-header {
    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 2px 20px rgba(0,0,0,0.06);
}

.header-top {
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a { color: var(--white); }
.header-top a:hover { color: var(--accent); }

.header-top-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-top-center {
    color: rgba(255,255,255,0.9);
}

.header-top-center span {
    background: var(--accent);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.header-main { padding: 15px 0; }

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    position: relative;
}

.main-nav a:hover { color: var(--primary); }
.main-nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: 0.3s; }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; gap: 15px; align-items: center; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* HERO */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fde8e5 100%);
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; line-height: 1.15; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 17px; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 40px; }
.hero-stat h3 { font-size: 32px; color: var(--primary); }
.hero-stat p { font-size: 14px; color: var(--text-light); }

.hero-image img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }

/* URGENCY BANNER */
.urgency-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #e67e22 100%);
    padding: 25px 0;
    color: var(--white);
}

.urgency-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.urgency-text h3 { font-size: 20px; color: var(--white); margin-bottom: 5px; }
.urgency-text p { font-size: 15px; color: rgba(255,255,255,0.9); }

/* ===== COURSES SECTION ===== */
.courses-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.courses-header { text-align: center; margin-bottom: 55px; }
.courses-header .section-desc { margin: 0 auto; }

/* COMBO FEATURED CARD */
.combo-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    margin-bottom: 50px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(192,57,43,0.08);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.combo-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    z-index: -1;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

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

.combo-card-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.combo-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), #e67e22);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Epilogue', sans-serif;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(243,156,18,0.3);
}

.combo-card-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
}

.combo-card-left {
    padding: 40px 35px;
}

.combo-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: 'Epilogue', sans-serif;
    font-weight: 800;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 12px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.combo-card-left h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--dark);
    line-height: 1.3;
}

.combo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.combo-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--light-bg);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    border: 1px solid var(--border);
}

.combo-meta-chip svg { color: var(--primary); flex-shrink: 0; }

.combo-schedule {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 15px 20px;
    border: 1px solid var(--border);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.schedule-row + .schedule-row { border-top: 1px dashed var(--border); }

.schedule-days {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.schedule-time {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.combo-card-right {
    background: linear-gradient(135deg, #fef5f3, #fff0ed);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-left: 1px solid var(--border);
}

.discount-badge-stack {
    display: flex;
    gap: 15px;
    width: 100%;
}

.discount-badge {
    flex: 1;
    background: var(--white);
    border-radius: 16px;
    padding: 22px 15px;
    text-align: center;
    border: 2px solid var(--border);
    transition: 0.3s;
}

.discount-badge:hover { border-color: var(--primary); transform: translateY(-3px); }

.discount-badge-highlight { border-color: var(--primary); background: linear-gradient(135deg, #fef0ed, #fff5f2); }

.discount-badge-value {
    font-family: 'Epilogue', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.discount-badge-value span { font-size: 20px; }

.discount-badge-label {
    font-family: 'Epilogue', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin: 4px 0 8px;
}

.discount-badge-cond { font-size: 11px; color: var(--text-light); line-height: 1.4; }

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(192,57,43,0); }
}

/* INDIVIDUAL LEVEL CARDS */
.level-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.level-card-v2 {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 22px 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.level-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border);
    transition: 0.4s;
}

.level-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(192,57,43,0.12);
    border-color: var(--primary);
}

.level-card-v2:hover::before { background: var(--primary); }

.lc-level-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-family: 'Epilogue', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    position: relative;
    transition: 0.4s;
}

.level-card-v2:hover .lc-level-ring { transform: scale(1.1) rotate(5deg); }

.lc-n5 { background: linear-gradient(135deg, #3498db, #2980b9); }
.lc-n4 { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.lc-n3 { background: linear-gradient(135deg, #f39c12, #e67e22); }
.lc-n2 { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.lc-n1 { background: linear-gradient(135deg, #8e44ad, #6c3483); }

.lc-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.level-card-v2 h3 { font-size: 20px; margin-bottom: 10px; }
.level-card-v2 p { font-size: 13px; color: var(--text-light); margin-bottom: 20px; line-height: 1.65; flex: 1; }

.lc-footer { margin-top: auto; }

/* ===== VISA CARDS ===== */
.visa-section { background: var(--white); }

.visa-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.visa-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px 25px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.visa-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border);
    transition: 0.4s;
}

.visa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(192,57,43,0.1);
    border-color: var(--primary);
}

.visa-card:hover::after { background: var(--primary); }

.visa-card-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.visa-card:hover .visa-card-icon-wrap { transform: scale(1.1); }

.visa-student { background: linear-gradient(135deg, #ebf5fb, #d4efdf); color: #2980b9; }
.visa-ssw { background: linear-gradient(135deg, #fef5e7, #fdebd0); color: #e67e22; }
.visa-titp { background: linear-gradient(135deg, #fdedec, #f9ebea); color: #c0392b; }
.visa-intl { background: linear-gradient(135deg, #f4ecf7, #ebdef0); color: #8e44ad; }

.visa-card h3 { font-size: 18px; margin-bottom: 10px; }
.visa-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 18px; }

.visa-card-link {
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: 0.3s;
}

.visa-card-link:hover { color: var(--primary-dark); gap: 5px; }

.visa-cta { text-align: center; }

/* BENEFITS */
.categories-header { text-align: center; margin-bottom: 50px; }
.categories-header .section-desc { margin: 0 auto; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    transition: 0.3s;
}

.benefit-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 15px 35px rgba(192,57,43,0.1); }

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.benefit-card h3 { font-size: 17px; margin-bottom: 10px; }
.benefit-card p { font-size: 14px; color: var(--text-light); }

/* VISA / ABOUT TEACHER */
.about-teacher-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.teacher-image img { border-radius: var(--radius-lg); width: 100%; }
.teacher-info h2 { margin-bottom: 15px; }
.teacher-info p { margin-bottom: 15px; }

.visa-list { margin-top: 20px; }

.visa-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.visa-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.visa-item h4 { font-size: 16px; margin-bottom: 4px; }
.visa-item p { font-size: 13px; color: var(--text-light); margin: 0; }

/* OFFER / APP SECTION */
.app-section {
    background: var(--primary);
    color: var(--white);
}

.app-section .container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.app-section .section-subtitle { color: var(--accent); }
.app-section h2 { color: var(--white); font-size: 32px; margin-bottom: 15px; }
.app-section p { color: rgba(255,255,255,0.85); margin-bottom: 15px; }

.discount-cards { display: flex; gap: 15px; margin-top: 20px; }

.discount-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 20px 25px;
    text-align: center;
    flex: 1;
}

.discount-value { font-size: 28px; font-weight: 800; color: var(--accent); font-family: 'Epilogue', sans-serif; }
.discount-condition { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 5px; }

.eligibility-list { margin-top: 10px; }
.eligibility-list li {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    padding-left: 5px;
}

/* FAQ */
.faq { background: var(--light-bg); }
.faq-header { text-align: center; margin-bottom: 50px; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    padding: 18px 25px;
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
}

.faq-question::after { content: '+'; font-size: 22px; color: var(--primary); font-weight: 300; flex-shrink: 0; margin-left: 15px; transition: 0.3s; }
.faq-item.active .faq-question::after { content: '\2212'; }
.faq-item.active .faq-question { color: var(--primary); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 25px 18px; font-size: 14px; line-height: 1.8; color: var(--text); }

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #922b21 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta h2 { color: var(--white); font-size: 38px; margin-bottom: 15px; }
.cta p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

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

.footer-about .site-logo { margin-bottom: 15px; }
.footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: 0.3s;
}

.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 17px; margin-bottom: 20px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--accent); }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-icon { color: var(--accent); font-size: 16px; margin-top: 3px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 13px; }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

/* RESPONSIVE */
/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.fade-up {
    transform: translateY(35px);
}

.animate-on-scroll.scale-in {
    transform: scale(0.85);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 38px; }
    .section-title { font-size: 32px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .level-cards-row { grid-template-columns: repeat(3, 1fr); }
    .visa-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .combo-card-inner { grid-template-columns: 1fr; }
    .combo-card-right { border-left: none; border-top: 1px solid var(--border); }
    .combo-card-badge { top: 15px; right: 15px; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .main-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 999; }
    .mobile-toggle { display: block; }

    .hero { padding: 100px 0 60px; }
    .hero .container { grid-template-columns: 1fr; gap: 30px; }
    .hero-content h1 { font-size: 32px; }
    .hero-image { order: -1; }

    .urgency-inner { flex-direction: column; text-align: center; }

    .level-cards-row { grid-template-columns: 1fr 1fr; }
    .visa-cards-grid { grid-template-columns: 1fr 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .about-teacher-grid { grid-template-columns: 1fr; }

    .app-section .container { flex-direction: column; }
    .discount-cards { flex-direction: column; }
    .discount-badge-stack { flex-direction: column; }

    .footer-grid { grid-template-columns: 1fr; }
    .section, .courses-section { padding: 50px 0; }
    .section-title { font-size: 28px; }
    .hero-stats { gap: 20px; }
    .cta h2 { font-size: 28px; }
    .combo-card-left { padding: 30px 20px; }
    .combo-card-right { padding: 25px 20px; }
    .combo-card-left h3 { font-size: 22px; }
}

@media (max-width: 480px) {
    .level-cards-row { grid-template-columns: 1fr; }
    .visa-cards-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .combo-meta { flex-direction: column; }
}
