/* ======================
   RESET & BASE
   ====================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

/* ======================
   LAYOUT
   ====================== */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5.5rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 { margin-top: 0.5rem; }

/* ======================
   SHARED EYEBROW
   ====================== */
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e8a020;
}

/* ======================
   NAVBAR
   ====================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 22, 48, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

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

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.04em;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: #e8a020;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: #e8a020; }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ======================
   HERO
   ====================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #060f22 0%, #0d1b3e 55%, #142040 100%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 20%; right: 0;
    width: 55%; height: 60%;
    background: radial-gradient(ellipse at center, rgba(232,160,32,0.13) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 68px;
    max-width: 760px;
}

.hero-content .eyebrow { margin-bottom: 1.25rem; }

.hero-content h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.accent { color: #e8a020; }

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

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

/* ======================
   BUTTONS
   ====================== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #e8a020;
    color: #0d1b3e;
    border-color: #e8a020;
}

.btn-primary:hover {
    background: #d4911a;
    border-color: #d4911a;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232,160,32,0.38);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.07);
}

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

/* ======================
   ABOUT
   ====================== */
.about { background: #fff; }

.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4.5rem;
    align-items: start;
}

.about-img-col { position: relative; }

.headshot-wrap { position: relative; }

.about-photo {
    width: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.about-photo-secondary {
    width: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    margin-top: 2.5rem;
}

.credential-badge {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 10px 30px rgba(13,27,62,0.2);
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}

.credential-badge:hover {
    box-shadow: 0 14px 36px rgba(13,27,62,0.28);
    transform: translateY(-2px);
}

.lc-badge-img {
    display: block;
    width: 110px;
    height: auto;
}

.about-text-col { padding-top: 0.25rem; }

.about-text-col h3 {
    font-size: 1.75rem;
    color: #0d1b3e;
    margin-bottom: 1.1rem;
}

.about-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: #2a3558;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about-text-col p {
    color: #5a6272;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e8eaef;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0d1b3e;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: #8a92a8;
    letter-spacing: 0.04em;
}

/* ======================
   SERVICES
   ====================== */
.services { background: #f4f6fa; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    min-width: 0;
    background: #fff;
    border-radius: 8px;
    padding: 2rem 1.75rem;
    border: 1px solid #e4e7ef;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    border-color: #e8a020;
}

.service-icon {
    color: #e8a020;
    margin-bottom: 1.1rem;
}

.service-icon svg {
    display: block;
    width: 40px;
    height: 40px;
}

.service-card h3 {
    color: #0d1b3e;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #5a6272;
    line-height: 1.75;
}

/* ======================
   SECTION SUB
   ====================== */
.section-sub {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: #5a6272;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* ======================
   WHY SECTION
   ====================== */
.why { background: #f4f6fa; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem 1.75rem;
    border-top: 3px solid #e8a020;
    border-left: 1px solid #e4e7ef;
    border-right: 1px solid #e4e7ef;
    border-bottom: 1px solid #e4e7ef;
}

.why-icon {
    color: #e8a020;
    margin-bottom: 1.1rem;
}

.why-icon svg {
    display: block;
    width: 40px;
    height: 40px;
}

.why-card h3 {
    color: #0d1b3e;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.9rem;
    color: #5a6272;
    line-height: 1.75;
}

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

/* ======================
   INDUSTRIES
   ====================== */
.industries { background: #0d1b3e; }

.industries .section-header h2 { color: #fff; }
.industries .section-header .eyebrow { color: #e8a020; }

.industries-sub {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.industry-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
    transition: background 0.2s, border-color 0.2s;
}

.industry-item:hover {
    background: rgba(232,160,32,0.1);
    border-color: rgba(232,160,32,0.35);
}

.industry-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    color: #e8a020;
    margin-top: 0.15rem;
}

.industry-icon svg { width: 100%; height: 100%; }

.industry-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.industry-text strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.industry-text span {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.6;
}

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

/* ======================
   CONTACT
   ====================== */
.contact { background: #fff; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4.5rem;
    align-items: start;
}

.contact-info > p {
    font-size: 1.05rem;
    color: #5a6272;
    line-height: 1.8;
    margin-bottom: 2.25rem;
}

.pain-list {
    list-style: none;
    margin-bottom: 1.75rem;
}

.pain-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.65rem;
    font-size: 1rem;
    color: #1a1a2e;
    line-height: 1.5;
}

.pain-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #e8a020;
}

.contact-invite {
    font-size: 1rem;
    color: #5a6272;
    line-height: 1.75;
    margin-bottom: 2.25rem;
}

.service-area-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.sa-tier {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.sa-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e8a020;
}

.sa-tier span:last-child {
    font-size: 0.9rem;
    color: #1a1a2e;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.detail-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a0a8bc;
}

.detail-link {
    color: #0d1b3e;
    font-weight: 500;
    transition: color 0.2s;
}

.detail-link:hover { color: #e8a020; }

/* ======================
   FORM
   ====================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group label {
    font-size: 0.83rem;
    font-weight: 600;
    color: #2a3558;
    letter-spacing: 0.02em;
}

.optional {
    font-weight: 400;
    color: #9aa0b0;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid #dde0e9;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: #fafbfc;
    transition: border-color 0.2s, background 0.2s;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #b4bcc8; }

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e8a020;
    background: #fff;
}

.form-status {
    font-size: 0.85rem;
    min-height: 1.25em;
    color: #5a6272;
}

.form-status.success { color: #2a7a4f; font-weight: 500; }
.form-status.error   { color: #c0392b; }

/* ======================
   MODAL
   ====================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 22, 48, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #8a92a8;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}

.modal-close:hover { color: #1a1a2e; }

.modal-badge-img {
    width: 100px;
    height: auto;
    margin: 0 auto 1.25rem;
    display: block;
}

.modal h3 {
    font-size: 1.4rem;
    color: #0d1b3e;
    margin-bottom: 0.5rem;
}

.modal-issuer {
    font-size: 0.85rem;
    color: #8a92a8;
    margin-bottom: 1.25rem;
}

.modal-issuer a {
    color: #e8a020;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.modal-issuer a:hover { color: #c8881a; }

.modal p:last-child {
    font-size: 0.92rem;
    color: #5a6272;
    line-height: 1.75;
    text-align: left;
}

.credential-badge {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* ======================
   PORTFOLIO TEASER (main page)
   ====================== */
.portfolio-teaser { background: #fff; }

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.teaser-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e4e7ef;
    transition: box-shadow 0.25s, transform 0.25s;
    background: #fff;
}

.teaser-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.teaser-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #eef0f6;
}

.teaser-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.teaser-card:hover .teaser-img-wrap img {
    transform: scale(1.04);
}

.teaser-caption {
    padding: 1.25rem 1.5rem;
}

.teaser-caption h3 {
    font-size: 1rem;
    color: #0d1b3e;
    margin-bottom: 0.4rem;
}

.teaser-caption p {
    font-size: 0.85rem;
    color: #5a6272;
    line-height: 1.65;
}

.teaser-cta {
    text-align: center;
    margin-top: 0.5rem;
}

/* Placeholder style when image file is missing */
.teaser-img-wrap img[src=""],
.teaser-img-wrap img:not([src]) {
    display: none;
}

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

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

/* ======================
   PORTFOLIO PAGE
   ====================== */
.portfolio-section { background: #f4f6fa; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e4e7ef;
    transition: box-shadow 0.25s, transform 0.25s;
}

.portfolio-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.portfolio-img-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #eef0f6;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.04);
}

.portfolio-caption {
    padding: 1.5rem 1.75rem;
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e8a020;
    margin-bottom: 0.6rem;
}

.portfolio-caption h2 {
    font-size: 1.1rem;
    color: #0d1b3e;
    margin-bottom: 0.6rem;
}

.portfolio-caption p {
    font-size: 0.88rem;
    color: #5a6272;
    line-height: 1.75;
}

.portfolio-cta-band {
    background: #0d1b3e;
    padding: 3.5rem 0;
}

.portfolio-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.portfolio-cta-inner h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.portfolio-cta-inner p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
}

@media (max-width: 720px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-cta-inner { flex-direction: column; text-align: center; }
}

/* ======================
   INNER PAGE HEADER
   ====================== */
.page-header {
    background: linear-gradient(135deg, #060f22 0%, #0d1b3e 55%, #142040 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header .eyebrow { margin-bottom: 0.75rem; }

.page-header h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.page-header-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ======================
   NEWS PAGE
   ====================== */
.news-section { background: #f4f6fa; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.75rem 2rem;
    border: 1px solid #e4e7ef;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.news-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    border-color: #e8a020;
    transform: translateY(-3px);
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.news-source {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e8a020;
}

.news-date {
    font-size: 0.78rem;
    color: #a0a8bc;
}

.news-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

.news-title a {
    color: #0d1b3e;
    transition: color 0.2s;
}

.news-title a:hover { color: #e8a020; }

.news-desc {
    font-size: 0.88rem;
    color: #5a6272;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; }
    .page-header { padding: 6rem 0 3rem; }
}

/* ======================
   FOOTER
   ====================== */
.footer {
    background: #0d1b3e;
    color: rgba(255,255,255,0.65);
    padding: 3rem 0;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
}

.footer-tagline { font-size: 0.88rem; }
.footer-tagline a { color: #e8a020; transition: opacity 0.2s; }
.footer-tagline a:hover { opacity: 0.8; }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: #e8a020;
    color: #0d1b3e;
}

.footer-social svg {
    width: 18px; height: 18px;
    display: block;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.4rem;
}

/* ======================
   RESPONSIVE — TABLET
   ====================== */
@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-col {
        max-width: 300px;
        margin: 0 auto;
    }

    .credential-badge {
        right: -0.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================
   RESPONSIVE — MOBILE
   ====================== */
@media (max-width: 640px) {
    .section { padding: 3.75rem 0; }

    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 22, 48, 0.98);
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.open { display: flex; }

    .nav-links li a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-links a::after { display: none; }

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

    .photo-placeholder { aspect-ratio: 1/1; }

    .stats-row { gap: 1.75rem; }

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

    .services-grid { grid-template-columns: 1fr; }
}
