/* ===== ANZEN HOUSING — Global Styles ===== */
:root {
    --navy: #0a2540;
    --navy-mid: #143a5e;
    --navy-light: #1f5688;
    --gold: #ff6b35;
    --gold-light: #ff8c5a;
    --safety: #ff6b35;
    --safety-dark: #e0541f;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Montserrat', 'Inter', sans-serif;
    --max-width: 1200px;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--navy-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color var(--transition);
}

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

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    padding: 160px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.08) 0%, transparent 60%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,162,39,0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 140px 24px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.page-hero .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}

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

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

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.trust-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}

/* ===== CAPABILITIES OVERVIEW ===== */
.capabilities-overview {
    padding: 80px 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.capability-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.capability-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.capability-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.capability-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.capability-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== WHY SWALMY ===== */
.why-swalmy {
    padding: 80px 0;
    background: var(--gray-50);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.why-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.why-list {
    list-style: none;
    margin-bottom: 32px;
}

.why-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-800);
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.why-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ===== ABOUT PAGE ===== */
.about-story {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    background: var(--gray-50);
    border-left: 4px solid var(--gold);
    padding: 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== LEADERSHIP ===== */
.leadership {
    padding: 80px 0;
    background: var(--gray-50);
}

.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.leader-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    max-width: 400px;
}

.leader-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto;
}

.leader-card h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.leader-title {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.leader-bio {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CERTIFICATIONS ===== */
.certifications {
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.cert-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.cert-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.cert-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.cert-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== CAPABILITIES DETAIL ===== */
.capability-detail {
    padding: 80px 0;
}

.capability-detail.alt {
    background: var(--gray-50);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-grid.reverse {
    direction: rtl;
}

.detail-grid.reverse > * {
    direction: ltr;
}

.detail-label {
    display: inline-block;
    background: rgba(201,162,39,0.1);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.detail-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-800);
    font-size: 0.95rem;
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.visual-placeholder {
    border-radius: var(--radius);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    font-weight: 500;
}

/* ===== GOVERNMENT PAGE ===== */
.gov-overview {
    padding: 80px 0;
}

.gov-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gov-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gov-intro p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

.gov-details {
    padding: 0 0 80px;
}

.gov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gov-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px;
}

.gov-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.gov-table {
    width: 100%;
    border-collapse: collapse;
}

.gov-table tr {
    border-bottom: 1px solid var(--gray-100);
}

.gov-table td {
    padding: 12px 0;
    font-size: 0.95rem;
}

.gov-table td:first-child {
    width: 40%;
    color: var(--gray-600);
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cert-check {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.cert-item strong {
    display: block;
    font-size: 0.95rem;
}

.cert-item p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* ===== NAICS ===== */
.naics-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.naics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.naics-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
}

.naics-code {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.naics-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--gray-800);
}

.naics-card p {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* ===== CONTRACT VEHICLES ===== */
.contract-vehicles {
    padding: 80px 0;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.vehicle-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
}

.vehicle-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.vehicle-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== PAST PERFORMANCE ===== */
.past-performance {
    padding: 80px 0;
    background: var(--gray-50);
    text-align: center;
}

.performance-cta {
    margin-top: 32px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-light);
    box-shadow: 0 0 0 3px rgba(45,74,122,0.1);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.info-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.info-item strong {
    color: var(--gray-800);
    min-width: 80px;
}

.info-item a {
    color: var(--navy-light);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
    display: block;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

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

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .why-grid,
    .about-grid,
    .detail-grid,
    .detail-grid.reverse,
    .gov-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-grid.reverse {
        direction: ltr;
    }

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

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

    .trust-items {
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 130px 16px 70px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

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

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

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

/* ===== ANZEN-SPECIFIC ===== */
.hero-badge {
    display: inline-block;
    background: rgba(255,107,53,0.15);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin: 18px 0 28px; max-width: 640px; }
.hero-actions, .cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.intro-grid, .overview-grid, .mission-grid, .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.intro-content h2, .overview-content h2, .mission-content h2 {
    font-size: 2rem; margin-bottom: 20px; color: var(--navy);
}
.intro-content p, .overview-content p, .mission-content p { color: var(--gray-800); margin-bottom: 16px; }

.intro-highlights, .overview-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px;
}
.highlight-item, .info-item {
    background: var(--gray-50); padding: 20px; border-radius: var(--radius); border-left: 3px solid var(--gold);
}
.highlight-icon { font-size: 1.8rem; margin-bottom: 8px; }
.highlight-item h4 { font-size: 1rem; margin-bottom: 6px; }
.highlight-item p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

.products-grid, .categories-grid, .residential-grid, .markets-grid,
.cases-grid, .partners-grid, .approach-grid, .res-process-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.product-card, .category-card, .residential-card, .market-card,
.case-card, .partner-badge, .approach-card, .procurement-card, .res-process-step, .process-step {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover, .category-card:hover, .residential-card:hover,
.market-card:hover, .case-card:hover, .approach-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.category-icon, .case-icon { font-size: 2.4rem; margin-bottom: 16px; }
.product-tag {
    display: inline-block; background: var(--gold); color: var(--white);
    padding: 4px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; margin-bottom: 12px;
}
.product-spec, .res-size, .res-features {
    font-size: 0.9rem; color: var(--gray-600); margin-top: 12px;
}
.product-visual, .category-visual, .res-visual {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    color: var(--white); padding: 32px; border-radius: var(--radius);
    text-align: center; font-size: 2.5rem; margin-bottom: 16px;
}

.products-section, .products-section.alt, .about-mission, .about-approach,
.about-markets, .emergency-overview, .gov-procurement, .partners-section,
.process-section, .process-residential, .residential-intro, .adus-section,
.contact-section, .cta-section {
    padding: 80px 0;
}
.products-section.alt, .about-approach, .partners-section { background: var(--gray-50); }
.cta-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white); text-align: center;
}
.cta-section h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-actions { justify-content: center; }

.product-category-header {
    text-align: center; margin-bottom: 40px;
}
.product-category-header h2 { font-size: 1.8rem; margin-bottom: 12px; }
.product-category-header p { color: var(--gray-600); max-width: 700px; margin: 0 auto; }

.process-timeline {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px; margin-top: 40px;
}
.process-step, .res-process-step {
    text-align: center; position: relative;
}
.process-step h3, .res-process-step h3 {
    font-size: 1.1rem; margin-bottom: 10px; color: var(--gold);
}

.procurement-details, .procurement-item {
    margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200);
    font-size: 0.9rem; color: var(--gray-700);
}
.permit-note {
    background: rgba(255,107,53,0.08); border-left: 4px solid var(--gold);
    padding: 18px 22px; border-radius: var(--radius); margin-top: 32px;
    font-size: 0.95rem; color: var(--gray-800);
}

.info-card.emergency-card {
    background: linear-gradient(135deg, var(--gold), var(--safety-dark));
    color: var(--white); border: none;
}
.info-card.emergency-card h3, .info-card.emergency-card p { color: var(--white); }

.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white); padding: 140px 0 80px; text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 720px; margin: 0 auto; }
.page-hero.emergency-hero {
    background: linear-gradient(135deg, var(--safety-dark), var(--gold));
}

.mission-values {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px;
}

.nav-cta {
    background: var(--gold); color: var(--white) !important;
    padding: 8px 18px; border-radius: var(--radius); font-weight: 600;
}
.nav-cta:hover { background: var(--safety-dark); color: var(--white) !important; }

@media (max-width: 968px) {
    .intro-grid, .overview-grid, .mission-grid, .contact-grid,
    .intro-highlights, .overview-stats, .mission-values {
        grid-template-columns: 1fr;
    }
    .page-hero h1 { font-size: 2rem; }
    .cta-section h2 { font-size: 1.6rem; }
}
