/* GrepX Computer Academy — Revamp Styles */

:root {
    --primary:      #1C6DFF;
    --primary-dark: #0B4CC0;
    --accent:       #FF6B35;
    --ink:          #0A0F1E;
    --ink-soft:     #101629;
    --page-bg:      #F5F7FB;
    --surface:      #FFFFFF;
    --muted:        #9AA4BF;
    --text:         #141B2D;
    --gray-50:      #EEF1F7;
    --gray-100:     #E3E8F3;
    --gray-200:     #CDD6E5;
    --cyan:         #6EE7F3;
    --shadow:       0 10px 30px rgba(8, 13, 27, 0.12);
}

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

body {
    font-family: "Inter", sans-serif;
    background: var(--page-bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
}

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

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

.container {
    width: min(1200px, 100% - 3rem);
    margin: 0 auto;
}

.no-scroll { overflow: hidden; }

/* ─── NAV ─────────────────────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ink);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.nav--scrolled {
    background: rgba(10, 15, 30, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 18px rgba(8, 12, 24, 0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-text {
    font-weight: 800;
    color: var(--surface);
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    color: var(--surface);
}

.nav-links a {
    font-weight: 600;
    opacity: 0.88;
    transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
    background: var(--accent);
    border: none;
    color: var(--surface);
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: #e85a20;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--surface);
    border-radius: 999px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.97);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.nav-overlay.is-open { display: flex; }

.nav-overlay-content {
    width: min(90%, 420px);
    background: var(--ink-soft);
    padding: 2rem;
    border-radius: 16px;
    color: var(--surface);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.06);
}

.nav-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.nav-close {
    background: none;
    border: none;
    color: var(--surface);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.nav-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.nav-overlay-links a,
.nav-overlay-links button {
    font-size: 1.15rem;
    font-weight: 600;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: #e85a20;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}

.btn-secondary {
    background: var(--surface);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--surface);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.btn-hero {
    padding: 1rem 2.2rem;
    font-size: 1rem;
    border-radius: 12px;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
    background: var(--ink);
    color: var(--surface);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Subtle ambient gradient behind everything */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(28,109,255,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 70%, rgba(110,231,243,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.3px;
}

/* Gradient shimmer on the headline text only */
.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(
        90deg,
        #FFFFFF   0%,
        var(--cyan) 30%,
        #FFFFFF   50%,
        var(--primary) 75%,
        #FFFFFF   100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 5s linear infinite;
    line-height: 1.15;
}

.hero-lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.hero-subline {
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Flashing "Seats Filling Fast" pill */
.pill-flash {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    animation: pill-flash 1.5s ease-in-out infinite;
    font-weight: 700;
}

.price-box {
    position: relative;
    background: rgba(255,255,255,0.06);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,179,71,0.35);
    margin-bottom: 2rem;
    max-width: 340px;
}

.price-box-light {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-strike {
    color: #8A95B0;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 1.05rem;
}

.price-current {
    font-size: 2.6rem;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 0 24px rgba(255,255,255,0.25);
    line-height: 1;
}

/* Override for light pricing card */
.price-light {
    color: var(--text) !important;
    text-shadow: none !important;
}

.price-badge {
    position: absolute;
    top: -13px;
    right: 16px;
    background: #FFB347;
    color: #1A1A1A;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: flash-badge 1.2s ease-in-out infinite;
}

.price-countdown {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Hero Visual Panel ── */
.hero-visual {
    background: radial-gradient(circle at 50% 40%, rgba(110,231,243,0.14) 0%, transparent 65%);
    border-radius: 24px;
    border: 1px solid rgba(110,231,243,0.1);
    padding: 2.5rem;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.hero-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    border-radius: 24px;
}

.hero-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    opacity: 0.22;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Spread icons across the visual panel */
.icon-1 { top: 12%; left: 10%;  animation-delay: 0s;   }
.icon-2 { top: 8%;  right: 14%; animation-delay: 1.2s; }
.icon-3 { top: 42%; left: 18%;  animation-delay: 2.4s; }
.icon-4 { top: 36%; right: 10%; animation-delay: 3.6s; }
.icon-5 { bottom: 20%; left: 28%; animation-delay: 0.8s; }
.icon-6 { bottom: 14%; right: 18%; animation-delay: 4.5s; }
.icon-7 { top: 68%; left: 5%;   animation-delay: 1.8s; }
.icon-8 { top: 20%; left: 50%;  animation-delay: 3s;   }

/* ─── SECTIONS ────────────────────────────────────────── */
.section {
    padding: 4.5rem 0;
    background: var(--surface);
}

.section-muted { background: var(--gray-50); }

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 2rem;
}

/* ─── TOOL ICON SCROLL ───────────────────────────────── */
.scroll-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.scroll-label-spacer { margin-top: 3rem; }

.scroll-track {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.icon-strip {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    padding: 0.5rem 0;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.75rem;
    transition: transform 0.2s ease;
}

.icon-item:hover { transform: translateY(-4px); }

.icon-item img {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: contain;
}

.icon-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    white-space: nowrap;
}

.scroll-right .icon-strip {
    animation: scroll-right 22s linear infinite;
}

.scroll-left .icon-strip {
    animation: scroll-left 22s linear infinite;
}

.scroll-track:hover .icon-strip {
    animation-play-state: paused;
}

/* ─── TRACKS ──────────────────────────────────────────── */
.tracks-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.track-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 2.2rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(8,13,27,0.14);
}

.track-card.flagship {
    border: 2px solid var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255,107,53,0.15);
}

.track-card.flagship:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(255,107,53,0.2);
}

.track-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 0.85rem;
}

.track-tag-accent {
    background: rgba(255,107,53,0.15);
    color: var(--accent);
}

.track-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.track-meta {
    color: var(--muted);
    margin: 0.4rem 0 1.25rem;
    font-size: 0.92rem;
}

.track-price-strike {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 0.85rem;
}

.track-price {
    color: var(--text);
    font-weight: 800;
    font-size: 1.05rem;
    margin-left: 0.2rem;
}

.track-price-accent {
    color: var(--accent);
}

.track-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.track-list li {
    font-size: 0.92rem;
    color: var(--text);
    padding-left: 1.2rem;
    position: relative;
}

.track-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.ribbon {
    position: absolute;
    top: -13px;
    right: 16px;
    background: var(--primary);
    color: var(--surface);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
}

/* ─── OUTCOMES / CAREER DARK SECTION ─────────────────── */
.outcomes-dark {
    background: var(--ink);
    color: var(--surface);
    padding: 5rem 0;
}

.outcomes-title {
    color: var(--surface);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 0.75rem;
    line-height: 1.18;
}

.outcomes-sub {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.support-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(110,231,243,0.12);
    border-radius: 16px;
    padding: 2rem 1.25rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: default;
}

.support-item:hover {
    background: rgba(110,231,243,0.07);
    border-color: rgba(110,231,243,0.4);
    box-shadow: 0 0 24px rgba(110,231,243,0.12);
    transform: translateY(-4px);
}

.support-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.support-icon {
    font-size: 2.2rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(110,231,243,0.4));
}

.support-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.2px;
}

/* ─── ABOUT ───────────────────────────────────────────── */
.about-section {
    background: var(--surface);
}

.about-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text .section-title {
    margin-bottom: 1rem;
}

.about-p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
    font-size: 0.98rem;
}

.about-pillars {
    display: grid;
    gap: 1rem;
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
}

.about-pillar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
}

.pillar-icon {
    color: var(--primary);
    font-size: 0.5rem;
}

/* ─── PRICING ─────────────────────────────────────────── */
.apply-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
}

.apply-subtext {
    color: var(--muted);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

.apply-card .price-box {
    max-width: 100%;
    margin-bottom: 1.75rem;
    text-align: left;
}

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
    color: var(--surface);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(28,109,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
    background: var(--ink);
    color: var(--surface);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    margin-top: 0.5rem;
}

.footer-logo { height: 44px; margin-bottom: 0.5rem; }

.footer-grid h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.9rem;
}

.footer-grid ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.footer-grid ul a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-grid ul a:hover { color: var(--surface); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2.5rem;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ─── MODAL ──────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.modal.active { display: flex; }

.modal-card {
    background: var(--surface);
    width: min(420px, 92vw);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    overflow: hidden;
}

.modal-header {
    padding: 1.5rem;
    background: var(--ink);
    color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 { font-size: 1.25rem; }

.modal-close {
    background: none;
    border: none;
    color: var(--surface);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.modal-close:hover { opacity: 1; }

.modal-body { padding: 1.75rem; }

.modal-subtext {
    color: var(--muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.modal-body label {
    display: block;
    margin-top: 1.1rem;
    font-weight: 600;
    font-size: 0.88rem;
}

.modal-body input {
    width: 100%;
    margin-top: 0.45rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.modal-body input:focus {
    outline: none;
    border-color: var(--primary);
}

.modal-body .btn {
    margin-top: 1.25rem;
    width: 100%;
}

.form-success {
    margin-top: 0.75rem;
    color: #10A37F;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* ─── WHATSAPP ───────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 900;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }

/* ─── SUB-PAGE HERO ─────────────────────────────────── */
.page-hero {
    background: var(--ink);
    color: var(--surface);
    padding: 4rem 0 3rem;
    text-align: center;
}

/* ─── REDIRECT ───────────────────────────────────────── */
.redirect-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--page-bg);
}

.redirect-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

/* ─── LINK BUTTON (footer contact) ──────────────────── */
.link-button {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

/* ─── ANIMATIONS ─────────────────────────────────────── */

/* Gradient shimmer sweeping across hero headline */
@keyframes text-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* Price badge flashing amber ↔ orange */
@keyframes flash-badge {
    0%,100% { background: #FFB347; transform: scale(1); box-shadow: none; }
    50%      { background: var(--accent); transform: scale(1.1); box-shadow: 0 0 10px rgba(255,107,53,0.5); }
}

/* "Seats Filling Fast" pill flash */
@keyframes pill-flash {
    0%,100% {
        background: var(--accent);
        box-shadow: 0 0 0 0 rgba(255,107,53,0.4);
        transform: scale(1);
    }
    50% {
        background: #FF3000;
        box-shadow: 0 0 0 6px rgba(255,107,53,0);
        transform: scale(1.06);
    }
}

/* Hero icon float */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* Icon strip scrolls */
@keyframes scroll-right {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes scroll-left {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid,
    .about-inner,
    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual { min-height: 260px; }

    .track-card.flagship { transform: none; }

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

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

    /* Only hero and CTA buttons go full-width on mobile */
    .hero-actions .btn,
    .cta-section .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

@media (max-width: 480px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}
