/* eSkoolio — Public marketing homepage (public/index.php only).
   Extends app.css: reuses its CSS variables (--primary/--bg/--surface/...),
   fonts, and shared components (.btn-*, .card, .stat-card, .chart-card,
   .subject-chip, .tt-drop-cell). This file only adds marketing-specific
   layout that doesn't exist elsewhere in the app. */

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

.mkt-page { margin: 0; }

.mkt-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Nav */
.mkt-nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.mkt-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding: 14px 32px;
}
.mkt-nav-logo { display: flex; align-items: center; }
.mkt-nav-logo img { height: 26px; width: auto; display: block; }
.mkt-nav-links {
    display: flex; align-items: center; gap: 28px;
    list-style: none; margin: 0; padding: 0; flex: 1; justify-content: center;
}
.mkt-nav-links a {
    color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500;
}
.mkt-nav-links a:hover { color: var(--primary); }
.mkt-nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.mkt-nav-actions .btn-login { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 600; padding: 10px 8px; }
.mkt-nav-actions .btn-login:hover { color: var(--primary); }

/* Section rhythm */
.mkt-section { padding: 88px 0; }
.mkt-section-alt { background: var(--surface); }
.mkt-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 12px;
}
.mkt-section-head { max-width: 640px; margin: 0 0 48px; }
.mkt-section-head.is-centered { margin-left: auto; margin-right: auto; text-align: center; }
.mkt-section-head h2 { font-size: 32px; margin: 0 0 12px; line-height: 1.2; }
.mkt-section-head p { color: var(--text-muted); font-size: 16px; line-height: 1.6; margin: 0; }

/* Hero */
.mkt-hero { padding: 76px 0 96px; overflow: hidden; }
.mkt-hero-grid {
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 56px; align-items: center;
}
.mkt-hero-copy h1 {
    font-size: 46px; line-height: 1.15; margin: 0 0 20px;
}
.mkt-hero-copy h1 span {
    color: var(--primary);
}
.mkt-type-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    margin-left: 3px;
    vertical-align: -0.1em;
    background: var(--primary);
    opacity: 0;
}
.mkt-type-cursor.is-typing {
    opacity: 1;
    animation: mkt-cursor-blink 0.8s step-end infinite;
}
@keyframes mkt-cursor-blink {
    50% { opacity: 0; }
}
.mkt-hero-copy p.mkt-hero-sub {
    font-size: 17px; line-height: 1.65; color: var(--text-muted); margin: 0 0 32px; max-width: 480px;
}
.mkt-hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.mkt-hero-ctas .btn-primary, .mkt-hero-ctas .btn-secondary { padding: 13px 24px; font-size: 15px; }
.mkt-hero-trust { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 13px; }
.mkt-hero-trust i { color: var(--success); font-size: 16px; }

/* Product mockup (built from real app component classes, not an illustration) */
.mockup-frame {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(43, 38, 34, 0.16);
    overflow: hidden;
    transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}
.mockup-frame-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px; background: var(--surface); border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.mockup-frame-bar .mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-frame-bar .mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-frame-bar .mockup-dot:nth-child(3) { background: #28c840; }
.mockup-frame-url {
    margin: 0 auto; font-size: 11px; color: var(--text-muted);
    background: var(--bg); border-radius: 6px; padding: 3px 12px;
}
.mockup-frame-body { display: flex; }
.mockup-sidebar {
    width: 56px; flex-shrink: 0; background: var(--sidebar-bg);
    padding: 14px 0; display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.mockup-sidebar i { color: var(--sidebar-text); font-size: 16px; opacity: 0.55; }
.mockup-sidebar i.is-active { color: var(--primary); opacity: 1; }
.mockup-content { flex: 1; min-width: 0; padding: 16px; }
.mockup-stat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 12px;
}
.mockup-stat-grid .stat-card { padding: 12px; gap: 2px; }
.mockup-stat-grid .stat-value { font-size: 19px; }
.mockup-stat-grid .stat-label { font-size: 10px; }
.mockup-chart-card.chart-card { padding: 14px; }
.mockup-chart-card h3 { margin: 0 0 12px; font-size: 12px; }
.mockup-bars {
    display: flex; align-items: flex-end; gap: 8px; height: 110px;
}
.mockup-bars span {
    flex: 1; background: linear-gradient(180deg, var(--primary) 0%, rgba(249, 92, 75, 0.35) 100%);
    border-radius: 4px 4px 0 0;
}

@media (max-width: 900px) {
    .mockup-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Feature module groups (7 groups) */
.mkt-module-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.mkt-module-card { display: flex; flex-direction: column; }
.mkt-module-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(249, 92, 75, 0.10); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
    margin-bottom: 16px;
}
.mkt-module-card h3 { margin: 0 0 10px; font-size: 17px; }
.mkt-module-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mkt-module-card li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text-muted); line-height: 1.4; }
.mkt-module-card li i { color: var(--success); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* Differentiators */
.mkt-diff-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.mkt-diff-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    overflow: hidden; padding: 0;
}
.mkt-diff-copy { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.mkt-diff-copy .mkt-module-icon { margin-bottom: 14px; }
.mkt-diff-copy h3 { margin: 0 0 8px; font-size: 18px; }
.mkt-diff-copy p { margin: 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.mkt-diff-visual {
    background: var(--bg); border-left: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; padding: 20px;
}

/* Differentiator mini mockups */
.diff-mock-permissions { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.diff-mock-perm-row {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
    padding: 8px 10px; font-size: 11px; color: var(--text);
}
.diff-mock-perm-row .toggle-pill {
    width: 30px; height: 16px; border-radius: 20px; background: var(--border); position: relative; flex-shrink: 0;
}
.diff-mock-perm-row .toggle-pill.is-on { background: var(--primary); }
.diff-mock-perm-row .toggle-pill::after {
    content: ''; position: absolute; top: 2px; left: 2px; width: 12px; height: 12px;
    border-radius: 50%; background: #fff; transition: transform 0.15s ease;
}
.diff-mock-perm-row .toggle-pill.is-on::after { transform: translateX(14px); }

.diff-mock-campus { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.diff-mock-campus-chip {
    display: flex; align-items: center; gap: 10px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px;
}
.diff-mock-campus-chip i { color: var(--primary); font-size: 16px; }
.diff-mock-campus-chip .campus-name { font-size: 12.5px; font-weight: 600; }
.diff-mock-campus-chip .campus-meta { font-size: 11px; color: var(--text-muted); margin-left: auto; }

.diff-mock-ai { width: 100%; }
.diff-mock-ai-btn {
    display: inline-flex; align-items: center; gap: 6px; background: var(--primary); color: #fff;
    padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; margin-bottom: 10px;
}
.diff-mock-ai-row { display: flex; gap: 6px; margin-bottom: 6px; }
.diff-mock-ai-cell {
    flex: 1; height: 26px; border-radius: 6px; background: var(--surface); border: 1px solid var(--border);
}
.diff-mock-ai-cell.is-filled { background: rgba(249, 92, 75, 0.10); border-color: var(--primary); }

/* Reuse real .subject-chip / .tt-drop-cell look for the drag-and-drop card */
.diff-mock-dnd { display: flex; gap: 10px; width: 100%; align-items: flex-start; }
.diff-mock-dnd .subject-chip { width: 92px; cursor: default; }
.diff-mock-dnd-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.diff-mock-dnd-grid .tt-drop-cell {
    border: 1px dashed var(--border); border-radius: 6px; min-height: 40px;
}

@media (max-width: 900px) {
    .mkt-diff-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .mkt-diff-card { grid-template-columns: 1fr; }
    .mkt-diff-visual { border-left: none; border-top: 1px solid var(--border); }
}

/* Multi-campus banner */
.mkt-campus-banner {
    border-radius: 20px; overflow: hidden; position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff; padding: 56px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.mkt-campus-banner::before, .mkt-campus-banner::after {
    content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.10); pointer-events: none;
}
.mkt-campus-banner::before { width: 320px; height: 320px; top: -140px; right: -80px; }
.mkt-campus-banner::after { width: 220px; height: 220px; bottom: -100px; left: -60px; background: rgba(255,255,255,0.08); }
.mkt-campus-copy { position: relative; z-index: 1; }
.mkt-campus-copy h2 { font-size: 28px; margin: 0 0 14px; color: #fff; }
.mkt-campus-copy p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.88); margin: 0 0 24px; max-width: 460px; }
.mkt-campus-copy .btn-secondary { background: #fff; border-color: #fff; }
.mkt-campus-visual { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.mkt-campus-node {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px; padding: 12px 16px; backdrop-filter: blur(2px);
}
.mkt-campus-node i { font-size: 18px; }
.mkt-campus-node .campus-node-name { font-weight: 600; font-size: 14px; }
.mkt-campus-node .campus-node-stat { margin-left: auto; font-size: 12px; color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
    .mkt-campus-banner { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* Pricing */
.mkt-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mkt-pricing-card { display: flex; flex-direction: column; position: relative; }
.mkt-pricing-card.is-featured { border-color: var(--primary); box-shadow: 0 12px 30px rgba(249, 92, 75, 0.14); }
.mkt-pricing-badge {
    position: absolute; top: -12px; left: 24px;
    background: var(--primary); color: #fff; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px; letter-spacing: 0.02em;
}
.mkt-pricing-tier { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 10px; }
.mkt-pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.mkt-pricing-price .amount { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 700; color: var(--text); }
.mkt-pricing-price .period { font-size: 13px; color: var(--text-muted); }
.mkt-pricing-placeholder-note {
    font-size: 11.5px; color: var(--text-muted); font-style: italic; margin: 0 0 20px;
}
.mkt-pricing-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.mkt-pricing-card li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text); }
.mkt-pricing-card li i { color: var(--success); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.mkt-pricing-card .btn, .mkt-pricing-card .btn-primary, .mkt-pricing-card .btn-secondary { width: 100%; }

@media (max-width: 900px) {
    .mkt-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* Final CTA */
.mkt-final-cta {
    text-align: center; border-radius: 20px;
    background: var(--surface); border: 1px solid var(--border);
    padding: 64px 32px;
}
.mkt-final-cta h2 { font-size: 30px; margin: 0 0 12px; }
.mkt-final-cta p { color: var(--text-muted); font-size: 15px; margin: 0 0 28px; }
.mkt-final-cta .mkt-hero-ctas { justify-content: center; margin-bottom: 0; }

/* Talk to Sales */
.mkt-section-tight { padding-top: 0; }
.mkt-sales-card {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    padding: 28px 32px;
}
.mkt-sales-avatar {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(249, 92, 75, 0.10); color: var(--primary); font-size: 24px;
}
.mkt-sales-info { flex: 1; min-width: 180px; }
.mkt-sales-info .mkt-eyebrow { margin-bottom: 4px; }
.mkt-sales-name { font-size: 16px; font-weight: 700; margin: 0; color: var(--text); }
.mkt-sales-title { font-size: 13.5px; color: var(--text-muted); margin: 2px 0 0; }
.mkt-sales-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mkt-sales-actions .btn-primary, .mkt-sales-actions .btn-secondary { padding: 11px 20px; font-size: 14px; white-space: nowrap; }

@media (max-width: 640px) {
    .mkt-sales-card { flex-direction: column; text-align: center; padding: 28px 20px; }
    .mkt-sales-actions { flex-direction: column; align-items: stretch; width: 100%; }
    .mkt-sales-actions .btn-primary, .mkt-sales-actions .btn-secondary { width: 100%; justify-content: center; }
}

/* Legal pages (privacy / terms / refund policy) — plain long-form prose,
   not marketing cards. Reuses .mkt-nav / .mkt-footer / .mkt-section for
   consistent chrome, but content sits in a narrower reading column. */
.mkt-legal { padding: 56px 0 96px; }
.mkt-legal-inner { max-width: 720px; margin: 0 auto; }
.mkt-legal-inner h1 { font-size: 34px; margin: 0 0 8px; line-height: 1.2; }
.mkt-legal-updated { color: var(--text-muted); font-size: 13.5px; margin: 0 0 40px; }
.mkt-legal-inner h2 { font-size: 20px; margin: 40px 0 14px; line-height: 1.3; }
.mkt-legal-inner h2:first-of-type { margin-top: 0; }
.mkt-legal-inner p { font-size: 15.5px; line-height: 1.75; color: var(--text); margin: 0 0 16px; }
.mkt-legal-inner ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.mkt-legal-inner li { font-size: 15.5px; line-height: 1.7; color: var(--text); }
.mkt-legal-inner a { color: var(--primary); }
.mkt-legal-inner strong { font-weight: 600; }

@media (max-width: 480px) {
    .mkt-legal { padding: 40px 0 64px; }
    .mkt-legal-inner h1 { font-size: 26px; }
    .mkt-legal-inner h2 { font-size: 18px; }
}

/* Footer */
.mkt-footer { border-top: 1px solid var(--border); padding: 48px 0 28px; }
.mkt-footer-top {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 32px;
    flex-wrap: wrap; margin-bottom: 32px;
}
.mkt-footer-brand img { height: 24px; width: auto; margin-bottom: 10px; }
.mkt-footer-brand p { color: var(--text-muted); font-size: 13px; max-width: 260px; margin: 0; line-height: 1.5; }
.mkt-footer-col h4 { font-size: 13px; margin: 0 0 12px; color: var(--text); }
.mkt-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mkt-footer-col a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
.mkt-footer-col a:hover { color: var(--primary); }
.mkt-footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.mkt-footer-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
    padding-top: 24px; border-top: 1px solid var(--border);
    color: var(--text-muted); font-size: 12.5px;
}
.mkt-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.mkt-footer-legal a { color: var(--text-muted); text-decoration: none; font-size: 12.5px; }
.mkt-footer-legal a:hover { color: var(--primary); }
.mkt-footer-social { display: flex; gap: 12px; }
.mkt-footer-social a {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none;
}
.mkt-footer-social a:hover { border-color: var(--primary); color: var(--primary); }

/* ============ Animations ============ */

/* Hero load-in sequence (staggered fade + slide up) */
.mkt-hero-copy .mkt-eyebrow,
.mkt-hero-copy h1,
.mkt-hero-copy p.mkt-hero-sub,
.mkt-hero-copy .mkt-hero-ctas,
.mkt-hero-copy .mkt-hero-trust {
    animation: mkt-fade-up 0.45s ease backwards;
}
.mkt-hero-copy .mkt-eyebrow { animation-delay: 0ms; }
.mkt-hero-copy h1 { animation-delay: 70ms; }
.mkt-hero-copy p.mkt-hero-sub { animation-delay: 140ms; }
.mkt-hero-copy .mkt-hero-ctas { animation-delay: 210ms; }
.mkt-hero-copy .mkt-hero-trust { animation-delay: 260ms; }
.mkt-hero-visual { animation: mkt-fade-up 0.45s ease 280ms backwards; }

@keyframes mkt-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveal — JS (marketing.js) adds .is-visible via IntersectionObserver,
   staggered per group. Starts already visible so content isn't hidden without JS. */
.mkt-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.mkt-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Hover lift for feature/differentiator/pricing cards — same pattern as .stat-card in app.css */
.mkt-module-card, .mkt-diff-card, .mkt-pricing-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mkt-module-card:hover, .mkt-diff-card:hover, .mkt-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

/* Featured pricing tier — soft persistent pulse so it stands out among the plans */
.mkt-pricing-card.is-featured { animation: mkt-pulse-border 2.4s ease-in-out infinite; }
.mkt-pricing-card.is-featured:hover { animation-play-state: paused; box-shadow: 0 14px 32px rgba(249, 92, 75, 0.30); }
@keyframes mkt-pulse-border {
    0%, 100% { box-shadow: 0 12px 30px rgba(249, 92, 75, 0.14); }
    50% { box-shadow: 0 12px 30px rgba(249, 92, 75, 0.32); }
}

/* CTA button hover polish (marketing page only) */
.mkt-page .btn-primary, .mkt-page .btn-secondary {
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.mkt-page .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(249, 92, 75, 0.28); }
.mkt-page .btn-secondary:hover { transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
    .mkt-hero-copy .mkt-eyebrow, .mkt-hero-copy h1, .mkt-hero-copy p.mkt-hero-sub,
    .mkt-hero-copy .mkt-hero-ctas, .mkt-hero-copy .mkt-hero-trust, .mkt-hero-visual {
        animation: none;
    }
    .mkt-type-cursor {
        animation: none;
        opacity: 0;
    }
    .mkt-reveal { opacity: 1; transform: none; transition: none; }
    .mkt-module-card, .mkt-diff-card, .mkt-pricing-card,
    .mkt-page .btn-primary, .mkt-page .btn-secondary {
        transition: none;
    }
    .mkt-module-card:hover, .mkt-diff-card:hover, .mkt-pricing-card:hover,
    .mkt-page .btn-primary:hover, .mkt-page .btn-secondary:hover {
        transform: none;
    }
    .mkt-pricing-card.is-featured { animation: none; }
}

/* Responsive: tablet */
@media (max-width: 900px) {
    .mkt-hero-grid { grid-template-columns: 1fr; }
    .mkt-hero-copy { text-align: center; }
    .mkt-hero-copy p.mkt-hero-sub { margin-left: auto; margin-right: auto; }
    .mkt-hero-ctas { justify-content: center; }
    .mkt-hero-trust { justify-content: center; }
    .mockup-frame { transform: none; max-width: 480px; margin: 0 auto; }
    .mkt-section { padding: 64px 0; }
}

@media (max-width: 768px) {
    .mkt-nav-links { display: none; }
    .mkt-container { padding: 0 20px; }
    .mkt-nav-inner { padding: 14px 20px; }
    .mkt-hero-copy h1 { font-size: 34px; }
    .mkt-section-head h2 { font-size: 26px; }
    .mkt-footer-top { flex-direction: column; }
}

/* Responsive: phone (375px/390px conventions) */
@media (max-width: 480px) {
    .mkt-hero { padding: 48px 0 64px; }
    .mkt-hero-copy h1 { font-size: 28px; }
    .mkt-hero-ctas { flex-direction: column; align-items: stretch; }
    .mkt-hero-ctas .btn-primary, .mkt-hero-ctas .btn-secondary { width: 100%; }
    .mockup-sidebar { display: none; }
    .mockup-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .mkt-campus-banner { padding: 32px 20px; }
    .mkt-final-cta { padding: 40px 20px; }
    .mkt-final-cta .mkt-hero-ctas { flex-direction: column; }
    .mkt-footer-cols { gap: 28px; }
}
