/* ============================================
   C.E.M. Enterprise LLC — Master Stylesheet
   Aesthetic: Industrial-Refined
   ============================================ */

:root {
    --navy:       #0B1A2E;
    --navy-mid:   #132844;
    --navy-light: #1A3558;
    --steel:      #3A4F6A;
    --slate:      #7B8FA3;
    --silver:     #B8C5D4;
    --off-white:  #EDF1F5;
    --white:      #FFFFFF;
    --amber:      #D4950A;
    --amber-light:#E8B84A;
    --amber-dark: #B07A00;
    --red-accent: #C23B22;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Source Sans 3', sans-serif;
    --container:  1200px;
    --gap:        2rem;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--navy);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 3px;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--amber);
    color: var(--navy);
    border-color: var(--amber);
}

.btn-primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 149, 10, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.btn-outline-dark {
    color: var(--navy);
    border-color: var(--steel);
}

.btn-outline-dark:hover {
    border-color: var(--navy);
    background: rgba(11, 26, 46, 0.05);
}

/* ---- NAVIGATION ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(11, 26, 46, 0.97);
    padding: 0.8rem 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--amber);
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--silver);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.015) 80px,
            rgba(255,255,255,0.015) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.015) 80px,
            rgba(255,255,255,0.015) 81px
        );
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 149, 10, 0.06) 0%, transparent 70%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(11, 26, 46, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 8rem var(--gap) 4rem;
}

.hero-logo {
    width: 320px;
    max-width: 70%;
    height: auto;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    border: 1px solid rgba(212, 149, 10, 0.3);
    padding: 0.5rem 1.2rem;
    margin-bottom: 2rem;
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.hero-title .accent {
    color: var(--amber);
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--silver);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeSlideUp 0.8s ease 0.45s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.08em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: var(--gap);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--slate);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--amber), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ---- SECTION COMMON ---- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--amber-dark);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.03em;
    color: var(--navy);
    line-height: 1.05;
}

.section-title-light {
    color: var(--white);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--steel);
    max-width: 600px;
    margin: 1rem auto 0;
    font-weight: 300;
    line-height: 1.7;
}

/* ---- OFFERINGS ---- */
.offerings {
    padding: 6rem 0;
    background: var(--white);
}

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

.offering-card {
    background: var(--off-white);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offering-card:hover {
    border-color: rgba(212, 149, 10, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11, 26, 46, 0.08);
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-icon {
    width: 48px;
    height: 48px;
    color: var(--amber);
    margin-bottom: 1.5rem;
}

.offering-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.offering-card p {
    font-size: 0.92rem;
    color: var(--steel);
    line-height: 1.65;
}

/* ---- PARTNERS ---- */
.partners {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.partners .section-tag { color: var(--amber-light); }
.partners .section-title { color: var(--white); }
.partners .section-desc { color: var(--slate); }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.partner-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 149, 10, 0.3);
    transform: translateY(-4px);
}

.partner-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.partner-desc {
    font-size: 0.85rem;
    color: var(--slate);
    font-weight: 300;
}

/* ---- WHY CEM ---- */
.why-cem {
    padding: 6rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content .section-tag { margin-bottom: 0.5rem; }
.why-content .section-title { text-align: left; margin-bottom: 1.5rem; }

.why-content p {
    color: var(--steel);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.why-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2rem 0 2.5rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-marker {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 2px;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.highlight strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.15rem;
}

.highlight span {
    font-size: 0.88rem;
    color: var(--steel);
    font-weight: 300;
}

.why-visual {
    display: flex;
    justify-content: center;
}

.visual-block {
    position: relative;
    background: var(--navy);
    border-radius: 6px;
    padding: 4rem 3rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.visual-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
}

.visual-large {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--amber);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.visual-codes {
    display: block;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.visual-label {
    display: block;
    font-size: 0.8rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ---- CTA ---- */
.cta {
    padding: 6rem 0;
    background: var(--off-white);
}

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

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--navy);
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.cta-inner p {
    color: var(--steel);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    color: var(--navy);
    border-color: var(--steel);
}

.cta-actions .btn-outline:hover {
    border-color: var(--navy);
    background: rgba(11, 26, 46, 0.04);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--navy);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 320px;
    font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--amber);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.9rem;
    color: var(--slate);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact p {
    font-size: 0.9rem;
    color: var(--slate);
    margin-bottom: 0.4rem;
    font-weight: 300;
}

.footer-contact a {
    color: var(--amber-light);
    transition: color 0.3s;
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 300;
}

/* ---- ABOUT PAGE ---- */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.012) 80px,
            rgba(255,255,255,0.012) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.012) 80px,
            rgba(255,255,255,0.012) 81px
        );
}

.page-header .container { position: relative; z-index: 2; }

.page-header .section-tag { color: var(--amber-light); }

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.7;
}

/* About content */
.about-content {
    padding: 5rem 0;
    background: var(--white);
}

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

.about-prose h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-prose h3:first-child { margin-top: 0; }

.about-prose p {
    color: var(--steel);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-sidebar {
    background: var(--off-white);
    border-radius: 6px;
    padding: 2.5rem;
    border-left: 4px solid var(--amber);
    position: sticky;
    top: 6rem;
}

.about-sidebar h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.sidebar-item {
    margin-bottom: 1.5rem;
}

.sidebar-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-dark);
    margin-bottom: 0.3rem;
}

.sidebar-item span {
    font-size: 0.95rem;
    color: var(--navy);
}

/* ---- SERVICES PAGE ---- */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--off-white);
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    align-items: start;
}

.service-item:hover {
    border-color: rgba(212, 149, 10, 0.2);
    box-shadow: 0 8px 30px rgba(11, 26, 46, 0.06);
}

.service-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--amber);
    line-height: 1;
    letter-spacing: 0.05em;
}

.service-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
}

.service-item p {
    color: var(--steel);
    font-size: 0.95rem;
    line-height: 1.7;
}

.naics-section {
    padding: 5rem 0;
    background: var(--navy);
}

.naics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.naics-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

.naics-card:hover {
    border-color: rgba(212, 149, 10, 0.3);
    background: rgba(255,255,255,0.06);
}

.naics-code {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--amber);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.naics-name {
    font-size: 0.88rem;
    color: var(--silver);
    font-weight: 400;
}

/* ---- CONTACT PAGE ---- */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--off-white);
    border: 1px solid var(--silver);
    border-radius: 3px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(212, 149, 10, 0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

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

.contact-info {
    padding-left: 2rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1rem;
    color: var(--steel);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 300;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-dark);
    margin-bottom: 0.4rem;
}

.info-block span,
.info-block a {
    font-size: 1rem;
    color: var(--navy);
}

.info-block a:hover { color: var(--amber-dark); }

/* ---- ANIMATIONS ---- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .offerings-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { padding-left: 0; }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        font-size: 1.1rem;
        color: var(--silver);
    }

    .offerings-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .naics-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .stat-divider { width: 40px; height: 1px; }

    .hero-content { padding-top: 7rem; }
    .hero-scroll { display: none; }

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

    .service-item { grid-template-columns: 1fr; gap: 0.5rem; }
    .service-num { font-size: 2rem; }
}
