/* ============================================================
   Archetype B - "Grid" Base Template
   Class prefix: msc-
   Theme: Magazine / Dashboard aesthetic with card-based layout
   ============================================================ */

/* --- CSS Variables & Reset --- */
:root {
    --primary-color: #6d4aff;
    --secondary-color: #00d4aa;
    --bg-base: #f8f9fc;
    --bg-white: #ffffff;
    --bg-dark: #1a1a2e;
    --bg-muted: #eef0f6;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-muted: #7a7a96;
    --text-inverse: #ffffff;
    --border-color: #e2e4ed;
    --border-light: #f0f1f7;
    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.1);
    --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.14);
    --shadow-lg: 0 8px 32px rgba(26, 26, 46, 0.18);
    --shadow-xl: 0 16px 48px rgba(26, 26, 46, 0.22);
    --radius-sm: 2px;
    --radius-md: 3px;
    --radius-lg: 6px;
    --radius-xl: 50px;
    --font-sans: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --header-h: 72px;
    --section-py: 88px;
    --wrap-max: 1180px;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

ul, ol {
    list-style: none;
}

figure {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700;
}

/* --- Utility: Section Wrapper --- */
.msc-section-wrap {
    max-width: var(--wrap-max);
    margin: 0 auto;
    padding: 0 24px;
}

.msc-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.msc-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.msc-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Buttons --- */
.msc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
    text-decoration: none;
    gap: 8px;
}

.msc-btn-solid {
    background-color: var(--primary-color);
    color: var(--text-inverse);
    border-color: var(--primary-color);
}

.msc-btn-solid:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.msc-btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.msc-btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-inverse);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.msc-btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.msc-btn-block {
    width: 100%;
    text-align: center;
}

/* ============================================================
   HEADER
   ============================================================ */
.msc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition-base);
    height: var(--header-h);
}

.msc-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.msc-header-bar {
    max-width: var(--wrap-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 24px;
}

/* Brand */
.msc-brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.msc-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.msc-brand-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* Hamburger - 2 bars */
.msc-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 6px;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
    margin-left: auto;
}

.msc-menu-toggle:hover {
    background-color: var(--bg-muted);
}

.msc-menu-bar {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.msc-menu-toggle[aria-expanded="true"] .msc-menu-bar:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.msc-menu-toggle[aria-expanded="true"] .msc-menu-bar:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Nav Group */
.msc-nav-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.msc-nav-item {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.msc-nav-item:hover {
    color: var(--primary-color);
    background-color: var(--bg-muted);
}

/* Header Actions */
.msc-header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1rem;
}

.msc-header-actions .msc-btn {
    padding: 10px 22px;
    font-size: 0.875rem;
}

/* ============================================================
   HERO
   ============================================================ */
.msc-hero-panel {
    padding-top: calc(var(--header-h) + 64px);
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-base) 100%);
}

.msc-hero-grid {
    max-width: var(--wrap-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.msc-hero-heading {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.msc-hero-subheading {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.msc-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Graphic Placeholder */
.msc-hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.msc-hero-placeholder {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 0.85;
    background: linear-gradient(135deg, var(--bg-muted) 0%, var(--bg-white) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.msc-hero-grid-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 40px;
    width: 100%;
}

.msc-hero-grid-visual span {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    opacity: 0.12;
    transition: opacity var(--transition-base);
}

.msc-hero-grid-visual span:nth-child(2),
.msc-hero-grid-visual span:nth-child(5),
.msc-hero-grid-visual span:nth-child(7) {
    opacity: 0.25;
}

.msc-hero-grid-visual span:nth-child(5) {
    background: var(--primary-color);
    opacity: 0.5;
}

/* ============================================================
   FEATURES / BENEFITS
   ============================================================ */
.msc-benefits {
    padding: var(--section-py) 0;
    background-color: var(--bg-base);
}

.msc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.msc-benefit-tile {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(24px);
}

.msc-benefit-tile.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.msc-benefit-tile:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.msc-benefit-tile.is-visible:hover {
    transform: translateY(-4px);
}

.msc-benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--text-inverse);
}

.msc-benefit-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.msc-benefit-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ============================================================
   STATS / NUMBERS
   ============================================================ */
.msc-numbers {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #16213e 100%);
}

.msc-numbers-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.msc-number-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.msc-number-cell:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

.msc-number-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-inverse);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.msc-number-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ============================================================
   PRICING / PACKAGES
   ============================================================ */
.msc-packages {
    padding: var(--section-py) 0;
    background-color: var(--bg-base);
}

.msc-packages-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.msc-package-col {
    opacity: 0;
    transform: translateY(24px);
}

.msc-package-col.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.msc-package-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.msc-package-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Featured package */
.msc-package-featured .msc-package-card {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.msc-package-featured .msc-package-card:hover {
    box-shadow: var(--shadow-xl);
}

.msc-package-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-inverse);
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 6px 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.msc-package-featured .msc-package-header {
    padding-top: 20px;
}

.msc-package-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.msc-package-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.msc-package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.msc-package-save {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.04);
    padding: 4px 12px;
    border-radius: 100px;
}

.msc-package-features {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msc-package-features li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
}

.msc-package-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.12;
}

.msc-package-features li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 11px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(-45deg);
}

.msc-package-action {
    margin-top: auto;
}

.msc-packages-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================================
   FAQ / ANSWERS
   ============================================================ */
.msc-answers {
    padding: var(--section-py) 0;
    background-color: var(--bg-white);
}

.msc-answers-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msc-answer-item {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.msc-answer-item.is-expanded {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.msc-answer-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    gap: 16px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.msc-answer-trigger:hover {
    background-color: var(--bg-muted);
}

.msc-answer-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.msc-answer-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
}

.msc-answer-icon::before,
.msc-answer-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--text-secondary);
    transition: all var(--transition-base);
}

.msc-answer-icon::before {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.msc-answer-icon::after {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.msc-answer-item.is-expanded .msc-answer-icon {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.msc-answer-item.is-expanded .msc-answer-icon::before {
    background: var(--text-inverse);
}

.msc-answer-item.is-expanded .msc-answer-icon::after {
    background: var(--text-inverse);
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.msc-answer-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.msc-answer-item.is-expanded .msc-answer-body {
    max-height: 800px;
    padding: 0 24px 24px;
}

.msc-answer-body p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.msc-cta-block {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.msc-cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.06;
}

.msc-cta-block::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.05;
}

.msc-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.msc-cta-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-inverse);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.msc-cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.msc-page-footer {
    padding: 64px 0 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.msc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.msc-footer-brand .msc-brand-link {
    margin-bottom: 16px;
}

.msc-footer-about {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 340px;
}

.msc-footer-heading {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.msc-footer-link {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.msc-footer-link:hover {
    color: var(--primary-color);
}

.msc-footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
}

.msc-copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
@keyframes msc-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msc-benefit-tile.is-visible {
    animation: msc-fade-up 0.6s var(--transition-base) forwards;
}

.msc-package-col.is-visible {
    animation: msc-fade-up 0.6s var(--transition-base) forwards;
}

/* Stagger animation delays for benefit tiles */
.msc-benefit-tile:nth-child(1).is-visible { animation-delay: 0s; }
.msc-benefit-tile:nth-child(2).is-visible { animation-delay: 0.08s; }
.msc-benefit-tile:nth-child(3).is-visible { animation-delay: 0.16s; }
.msc-benefit-tile:nth-child(4).is-visible { animation-delay: 0.24s; }
.msc-benefit-tile:nth-child(5).is-visible { animation-delay: 0.32s; }
.msc-benefit-tile:nth-child(6).is-visible { animation-delay: 0.4s; }

/* Stagger animation delays for package columns */
.msc-package-col:nth-child(1).is-visible { animation-delay: 0s; }
.msc-package-col:nth-child(2).is-visible { animation-delay: 0.12s; }
.msc-package-col:nth-child(3).is-visible { animation-delay: 0.24s; }

/* ============================================================
   MOBILE RESPONSIVE - 768px breakpoint
   ============================================================ */
@media (max-width: 768px) {

    :root {
        --section-py: 64px;
        --header-h: 64px;
    }

    /* Header Mobile */
    .msc-menu-toggle {
        display: flex;
    }

    .msc-nav-group {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        z-index: 999;
    }

    .msc-nav-group.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .msc-nav-item {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
        width: 100%;
    }

    .msc-nav-item:hover {
        background-color: var(--bg-muted);
    }

    .msc-header-actions {
        display: none;
    }

    .msc-header-bar {
        gap: 12px;
    }

    /* Hero Mobile */
    .msc-hero-panel {
        padding-top: calc(var(--header-h) + 40px);
        padding-bottom: 48px;
    }

    .msc-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .msc-hero-heading {
        font-size: 2.25rem;
    }

    .msc-hero-subheading {
        font-size: 1.0625rem;
        margin-left: auto;
        margin-right: auto;
    }

    .msc-hero-actions {
        justify-content: center;
    }

    .msc-hero-graphic {
        order: -1;
    }

    .msc-hero-placeholder {
        max-width: 320px;
    }

    /* Features Mobile */
    .msc-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .msc-benefit-tile {
        padding: 24px 20px;
        flex-direction: column;
    }

    /* Section Headers Mobile */
    .msc-section-title {
        font-size: 1.75rem;
    }

    .msc-section-subtitle {
        font-size: 1rem;
    }

    .msc-section-header {
        margin-bottom: 36px;
    }

    /* Stats Mobile */
    .msc-numbers {
        padding: 48px 0;
    }

    .msc-numbers-strip {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .msc-number-cell:not(:last-child)::after {
        display: none;
    }

    .msc-number-value {
        font-size: 2.25rem;
    }

    /* Pricing Mobile */
    .msc-packages-row {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .msc-package-featured .msc-package-card {
        transform: none;
    }

    .msc-package-card {
        padding: 28px 24px;
    }

    .msc-package-price {
        font-size: 2rem;
    }

    /* FAQ Mobile */
    .msc-answer-trigger {
        padding: 16px 20px;
    }

    .msc-answer-body {
        padding: 0 20px;
    }

    .msc-answer-item.is-expanded .msc-answer-body {
        padding: 0 20px 20px;
    }

    /* CTA Mobile */
    .msc-cta-heading {
        font-size: 1.75rem;
    }

    .msc-cta-desc {
        font-size: 1rem;
    }

    /* Footer Mobile */
    .msc-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .msc-footer-about {
        max-width: none;
    }
}

/* ============================================================
   SMALL SCREENS
   ============================================================ */
@media (max-width: 480px) {

    .msc-hero-heading {
        font-size: 1.875rem;
    }

    .msc-section-title {
        font-size: 1.5rem;
    }

    .msc-cta-heading {
        font-size: 1.5rem;
    }

    .msc-btn-lg {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }

    .msc-package-card {
        padding: 24px 20px;
    }

    .msc-number-value {
        font-size: 2rem;
    }

    .msc-benefit-tile {
        padding: 20px 16px;
        flex-direction: column;
    }
}

/* ============================================================
   TABLET SPECIFIC (769px - 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {

    .msc-hero-heading {
        font-size: 2.5rem;
    }

    .msc-hero-grid {
        gap: 40px;
    }

    .msc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .msc-packages-row {
        gap: 16px;
    }

    .msc-package-card {
        padding: 28px 20px;
    }

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

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .msc-benefit-tile,
    .msc-package-col {
        opacity: 1;
        transform: none;
    }
}

/* Focus visible styles */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.msc-answer-trigger:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

/* ── Injected feature-grid blocks on index ── */
.msc-features-grid-section {
    padding: 40px 0 80px;
}
.msc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.msc-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.2s, border-color 0.2s;
}
.msc-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}
.msc-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.msc-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.msc-feature-desc {
    font-size: 0.938rem;
    line-height: 1.7;
    opacity: 0.8;
}

/* ── Section headings for extra content ── */
.msc-section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 12px;
}
.msc-section-subheading {
    font-size: 1.063rem;
    line-height: 1.7;
    text-align: center;
    opacity: 0.7;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* ── Extra section spacing ── */
.msc-features-grid-section + .msc-features-grid-section {
    margin-top: 40px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.msc-values-section + .msc-values-section {
    margin-top: 40px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Flexible grid ── */
@media (min-width: 769px) {
    .msc-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    .msc-values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .msc-section-heading { font-size: 1.75rem; }
}
@media (max-width: 480px) {
    .msc-section-heading { font-size: 1.5rem; }
}

@media print {

    .msc-header,
    .msc-menu-toggle,
    .msc-hero-graphic,
    .msc-cta-block {
        display: none;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .msc-hero-panel {
        padding-top: 24px;
    }

    .msc-benefit-tile,
    .msc-package-col {
        opacity: 1;
        transform: none;
        break-inside: avoid;
    }

    .msc-package-featured .msc-package-card {
        transform: none;
        border: 2px solid black;
    }
}

/* === Download Buttons Grid === */
.msc-download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.msc-download-btns .msc-btn {
  flex: 1 1 0;
  min-width: 140px;
  max-width: 220px;
  text-align: center;
  padding: 14px 20px;
}
@media (max-width: 768px) {
  .msc-download-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .msc-download-btns .msc-btn {
    max-width: 100%;
    width: 100%;
  }
}

/* ============================================================
   PLATFORM DOWNLOAD LINKS
   ============================================================ */
.msc-platform-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.msc-platform-link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  transition: all 0.2s;
}
.msc-platform-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}
.msc-lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.msc-lang-icon { opacity: 0.5; }
.msc-lang-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.msc-lang-link:hover { color: #fff; }
.msc-lang-sep { color: rgba(255,255,255,0.3); font-size: 13px; }

/* ============================================================
   MOBILE FIX: Platform links, lang switcher & download buttons
   ============================================================ */
@media (max-width: 480px) {
  .msc-platform-links {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
  }
  .msc-lang-switcher {
    flex-wrap: wrap;
    gap: 6px;
  }
  .msc-download-btns .msc-btn {
    min-width: auto;
    width: 100%;
  }
}
