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

:root {
    --navy: #0a1628;
    --navy-mid: #102040;
    --blue: #1a4fa0;
    --blue-light: #2563c4;
    --accent: #3b82f6;
    --accent-gold: #c9a84c;
    --text-primary: #0a1628;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --bg: #f8f9fc;
    --surface: #ffffff;
    --border: rgba(10, 22, 40, 0.1);
    --border-light: rgba(10, 22, 40, 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 249, 252, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 0 2rem;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.nav-logo span {
    font-size: 20px;
}

.nav-logo svg {
    height: 35px;
    background-color: var(--navy-mid);
    border-radius: 7px;
    margin-right: 7px;
}

.nav-logo svg path {
    fill: var(--surface);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--blue-light);
}

.nav-cta {
    background: var(--blue);
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--blue-light);
}

/* SECTIONS */
section {
    padding: 96px 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* HERO */
.hero {
    background: var(--navy);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37, 99, 196, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: center;
    gap: 4rem;
    padding: 120px 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '●';
    font-size: 8px;
    color: #60a5fa;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: #93c5fd;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    font-weight: 300;
}

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

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: border-color 0.2s;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
}

.hero-card-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cert-item:last-child {
    border-bottom: none;
}

.cert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
}

.cert-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.cert-org {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* WHY CMMC */
.why-cmmc {
    background: var(--surface);
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-light);
    font-weight: 500;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    font-weight: 300;
}

.cmmc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.cmmc-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s, transform 0.2s;
}

.cmmc-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.cmmc-level {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-light);
    background: rgba(37, 99, 196, 0.08);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
    font-weight: 500;
}

.cmmc-card h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.cmmc-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ABOUT */

.about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 280px 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: block;
}

.about-photo-name {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: var(--navy);
    margin-top: 16px;
}

.about-photo-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-body p {
    margin-bottom: 16px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.pub-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.pub-item:last-child {
    border-bottom: none;
}

.pub-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 3px;
}

.pub-title a {
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.2s, color 0.2s;
}

.pub-title a:hover {
    color: var(--blue-light);
    border-bottom-color: var(--blue-light);
}

.pub-source {
    font-size: 13px;
    color: var(--text-muted);
}

.cert-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.cert-card a:hover .cert-card-name {
    color: var(--accent-gold);
    transition: color 0.2s;
}

.services {
    background: var(--surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.svc-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.2s;
}

.svc-card:hover {
    border-color: var(--accent);
    background: var(--surface);
}

.svc-icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 196, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.svc-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue-light);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc-card h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 10px;
}

.svc-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FREE TOOLS */
.free-tools {
    background: var(--navy);
    color: #fff;
}

.free-tools .section-label {
    color: #93c5fd;
}

.free-tools .section-title {
    color: #fff;
}

.free-tools .section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.tool-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 48px;
    margin-top: 40px;
}

.tool-card-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.tool-card-body p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.tool-families {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.tool-family-tag {
    font-size: 11px;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 500;
}

.btn-tool {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--navy);
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.1s;
}

.btn-tool:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn-tool svg {
    width: 15px;
    height: 15px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-tool-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 12px;
    transition: border-color 0.2s;
}

.btn-tool-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-tool-outline svg {
    width: 15px;
    height: 15px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tool-preview {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    font-size: 13px;
}

.tool-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tool-preview-title {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sprs-score {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--text-muted);
    text-align: right;
}

.sprs-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
    text-align: right;
}

.family-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.family-row:last-child {
    border-bottom: none;
}

.family-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.family-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    flex: 1;
}

.family-status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .tool-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px;
    }
}

.certifications {
    background: var(--navy);
    color: #fff;
}

.certifications .section-label {
    color: #93c5fd;
}

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

.certifications .section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 48px;
}

.cert-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 20px;
    transition: background 0.2s, border-color 0.2s;
}

.cert-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.cert-card-name {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.cert-card-org {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.cert-card-year {
    font-size: 11px;
    color: var(--accent-gold);
    margin-top: 8px;
    font-weight: 500;
}

/* FAQ */
.faq {
    background: var(--surface);
}

.faq-list {
    max-width: 760px;
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--blue-light);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 0 20px;
    max-width: 680px;
}

/* CONTACT */
.contact {
    background: var(--bg);
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-inner .section-sub {
    margin: 0 auto 40px;
}

.contact-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    text-align: left;
}

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

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--accent);
}

.form-field textarea {
    height: 100px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: var(--blue);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--blue-light);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px 0;
}

.form-success-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.form-success-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue-light);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-success h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* FOOTER */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.4);
    padding: 32px 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.footer-logo span {
    color: var(--surface);
}

.footer-logo svg {
    height: 40px;
}


.footer-logo svg path {
    fill: var(--surface);
}

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

    .hero-card {
        display: none;
    }

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

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

    .nav-links {
        display: none;
    }

    .footer-logo span,
    .footer-email {
        display: none;
    }
}

/* ===== SERVICE PAGES ===== */
.page-hero {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 88px 2rem;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37, 99, 196, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 28px;
    position: relative;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #93c5fd;
}

.page-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(34px, 4.5vw, 50px);
    line-height: 1.12;
    font-weight: 400;
    color: #fff;
    margin-bottom: 18px;
    max-width: 760px;
    position: relative;
}

.page-hero h1 em {
    font-style: italic;
    color: #93c5fd;
}

.page-hero .hero-sub {
    max-width: 640px;
}

.content {
    background: var(--surface);
}

.content-narrow {
    max-width: 760px;
}

.content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--navy);
    margin: 48px 0 16px;
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content a {
    color: var(--blue-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 196, 0.3);
}

.content a:hover {
    border-bottom-color: var(--blue-light);
}

.check-list {
    list-style: none;
    margin: 24px 0;
}

.check-list li {
    position: relative;
    padding: 10px 0 10px 34px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(37, 99, 196, 0.1);
}

.check-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 19px;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--blue-light);
    border-bottom: 2px solid var(--blue-light);
    transform: rotate(-45deg);
}

.check-list li strong {
    color: var(--navy);
    font-weight: 500;
}

.process-steps {
    counter-reset: step;
    list-style: none;
    margin: 24px 0;
}

.process-steps li {
    counter-increment: step;
    position: relative;
    padding: 16px 0 16px 56px;
    border-bottom: 1px solid var(--border-light);
}

.process-steps li:last-child {
    border-bottom: none;
}

.process-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 99, 196, 0.08);
    color: var(--blue-light);
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-steps h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}

.process-steps p {
    font-size: 14px;
    margin-bottom: 0;
}

.cta-band {
    background: var(--navy);
    color: #fff;
    text-align: center;
}

.cta-band .section-title {
    color: #fff;
}

.cta-band .section-sub {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 32px;
}

.svc-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--blue-light);
    text-decoration: none;
}

.svc-link:hover {
    text-decoration: underline;
}

.related-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
