/* ================================
   Professional Design System
   ================================ */

:root {
    /* Color Palette */
    --navy: #1e3a5f;
    --dark-navy: #152945;
    --slate: #475569;
    --steel: #64748b;
    --mist: #f1f5f9;
    --cloud: #f8fafc;
    --white: #ffffff;

    /* Accent Colors */
    --teal: #639abc;
    --teal-dark: #4E7D9E;
    --amber: #d97706;
    --gold: #b45309;

    /* Typography */
    --font-display: 'Georgia', 'Times New Roman', serif;
    --font-body: 'system-ui', -apple-system, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    /* Container */
    --container: 1400px;
    --container-sm: 1200px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(10, 14, 39, 0.04);
    --shadow-md: 0 8px 24px rgba(10, 14, 39, 0.08);
    --shadow-lg: 0 16px 48px rgba(10, 14, 39, 0.12);
    --shadow-xl: 0 24px 64px rgba(10, 14, 39, 0.16);

    /* Transitions */
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================================
   Reset & Base
   ================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Ensure no horizontal overflow */
* {
    max-width: 100%;
}

html,
body,
div,
section,
header,
footer,
main {
    max-width: none;
}

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

/* ================================
   Navigation
   ================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--mist);
    transition: var(--transition);
}

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

.nav-logo {
    z-index: 10;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.8;
}

@media (max-width: 640px) {
    .logo-img {
        height: 40px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
    transition: var(--transition);
}

.nav-menu a:not(.nav-cta):hover {
    color: var(--teal);
}

.nav-cta {
    background: var(--teal);
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    color: var(--white) !important;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--teal-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
    border-radius: 2px;
}

@media (max-width: 968px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
        padding: 0.5rem;
        margin: -0.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 85vw;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        padding: 0.5rem 0;
        font-size: 16px;
    }

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

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@media (max-width: 640px) {
    .btn {
        font-size: 15px;
        padding: 0.875rem 1.5rem;
    }

    .btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ================================
   Hero Section
   ================================ */

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--navy);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-wrapper {
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--white);
    font-weight: 700;
}

.hero-description {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}

.stat-label {
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.75);
}

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

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    height: 100%;
    justify-content: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 1.125rem 1.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.visual-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--teal);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    text-align: left;
}

.card-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.card-text {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 7rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-content {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }

    .hero-badge {
        font-size: 11px;
        padding: 0.4rem 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1 1 40%;
        min-width: 140px;
    }

    .stat-divider {
        display: none;
    }

    .hero-visual {
        gap: 0.75rem;
    }

    .visual-card {
        padding: 1rem 1.25rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ================================
   Trust Bar
   ================================ */

.trust-bar {
    background: var(--cloud);
    padding: 2rem 3rem;
    border-top: 1px solid rgba(10, 14, 39, 0.05);
    border-bottom: 1px solid rgba(10, 14, 39, 0.05);
}

.trust-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate);
}

.trust-items {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 15px;
    color: var(--slate);
}

.trust-dot {
    color: var(--teal);
}

@media (max-width: 768px) {
    .trust-bar {
        padding: 1.5rem;
    }

    .trust-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .trust-items {
        gap: 0.75rem;
        font-size: 14px;
    }

    .trust-text {
        font-size: 12px;
    }
}

/* ================================
   Section Styles
   ================================ */

.section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate);
    max-width: 700px;
    margin: 0 auto;
}

/* ================================
   Services Section
   ================================ */

.services {
    padding: var(--space-lg) 3rem;
    background: var(--white);
}

.services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.services-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    transition: all 0.2s ease;
    overflow: hidden;
}

.service-card.large {
    grid-row: span 2;
}

.service-bg {
    position: absolute;
    inset: 0;
    background: none;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-bg {
    opacity: 0;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--teal);
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--teal);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.service-card:hover .service-icon {
    background: var(--teal-dark);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--steel);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 15px;
    color: var(--slate);
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0.25rem;
    top: 0.5rem;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 14px;
}

.service-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.meta-tag {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--steel);
    background: var(--mist);
    padding: 0.375rem 0.875rem;
    border-radius: 3px;
}

@media (max-width: 968px) {
    .services {
        padding: var(--space-lg) 1.5rem;
    }

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

    .service-card.large {
        grid-row: span 1;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-title {
        font-size: 20px;
    }

    .service-features {
        margin-bottom: 1.5rem;
    }

    .service-meta {
        padding-top: 1rem;
    }
}

@media (max-width: 640px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 15px;
    }

    .service-features li {
        font-size: 14px;
    }
}

/* ================================
   Differentiators Section
   ================================ */

.differentiators {
    padding: var(--space-xl) 3rem;
    background: linear-gradient(180deg, var(--cloud) 0%, var(--white) 100%);
}

.diff-container {
    max-width: var(--container-sm);
    margin: 0 auto;
}

.diff-content {
    text-align: center;
    margin-bottom: 4rem;
}

.diff-intro {
    font-size: 19px;
    line-height: 1.6;
    color: var(--steel);
    max-width: 700px;
    margin: 0 auto;
}

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

.diff-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.diff-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.diff-number {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 1rem;
}

.diff-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.diff-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--steel);
}

@media (max-width: 968px) {
    .differentiators {
        padding: var(--space-xl) 1.5rem;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .diff-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .differentiators {
        padding: 3rem 1.5rem;
    }

    .diff-content {
        margin-bottom: 2.5rem;
    }

    .diff-intro {
        font-size: 16px;
    }

    .diff-card {
        padding: 1.5rem;
    }

    .diff-title {
        font-size: 18px;
    }

    .diff-text {
        font-size: 15px;
    }
}

/* ================================
   About Section
   ================================ */

.about {
    padding: var(--space-xl) 3rem;
    background: var(--white);
}

.about-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.visual-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder {
    aspect-ratio: 4/5;
    background: var(--navy);
    background-image: url(in_work.png);
    position: relative;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

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

.stat-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 14px;
    color: var(--steel);
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--teal);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 14px;
    color: var(--steel);
}

@media (max-width: 968px) {
    .about {
        padding: var(--space-xl) 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .about {
        padding: 3rem 1.5rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .visual-stats {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-value {
        font-size: 16px;
    }

    .stat-desc {
        font-size: 13px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-features {
        gap: 1.25rem;
        margin: 2rem 0;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ================================
   Coverage Section
   ================================ */

.coverage {
    padding: var(--space-xl) 3rem;
    background: var(--cloud);
}

.coverage-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.coverage-content {
    max-width: var(--container-sm);
    margin: 0 auto;
}

.coverage-areas-full {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.area-group {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.area-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.area-desc {
    font-size: 16px;
    color: var(--slate);
    margin-bottom: 2.5rem;
}

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

.area-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 1rem;
}

.area-col ul {
    list-style: none;
}

.area-col li {
    font-size: 15px;
    color: var(--slate);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.area-col li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: var(--teal);
    font-size: 18px;
}

.counties-note {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.counties-note p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--steel);
}

.counties-note strong {
    color: var(--navy);
    font-weight: 600;
}

.extended-coverage {
    background: var(--cloud);
    padding: 2rem 2.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.extended-coverage h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.extended-coverage p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate);
}

@media (max-width: 968px) {
    .coverage {
        padding: var(--space-xl) 1.5rem;
    }

    .area-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .coverage {
        padding: 3rem 1.5rem;
    }

    .coverage-header {
        margin-bottom: 2.5rem;
    }

    .area-group {
        padding: 2rem 1.5rem;
    }

    .area-title {
        font-size: 20px;
    }

    .area-desc {
        font-size: 15px;
        margin-bottom: 2rem;
    }

    .area-columns {
        gap: 1.75rem;
    }

    .area-col h4 {
        font-size: 13px;
    }

    .area-col li {
        font-size: 14px;
        padding: 0.35rem 0;
    }

    .counties-note {
        padding-top: 1.5rem;
    }

    .counties-note p {
        font-size: 13px;
    }

    .extended-coverage {
        padding: 1.5rem;
    }

    .extended-coverage h4 {
        font-size: 15px;
    }

    .extended-coverage p {
        font-size: 14px;
    }
}

/* ================================
   Contact Section
   ================================ */

.contact {
    padding: var(--space-xl) 3rem;
    background: var(--white);
}

.contact-container {
    max-width: var(--container-sm);
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro {
    font-size: 17px;
    line-height: 1.6;
    color: var(--steel);
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-group {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.info-group:last-of-type {
    border-bottom: none;
}

.info-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--steel);
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.info-value:hover {
    color: var(--teal);
}

.client-types {
    background: var(--cloud);
    padding: 2rem;
    border-radius: 6px;
}

.client-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 1rem;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.client-tags span {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    border: 1px solid #e2e8f0;
}

.contact-form-container {
    background: var(--cloud);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--navy);
}

.form-field input,
.form-field textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 0.875rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: var(--white);
    color: var(--navy);
    transition: all 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}

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

.form-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-result.success {
    display: block;
    background: rgba(45, 95, 63, 0.1);
    color: var(--teal);
    border: 1px solid rgba(45, 95, 63, 0.2);
}

.form-result.error {
    display: block;
    background: rgba(217, 119, 6, 0.1);
    color: var(--amber);
    border: 1px solid rgba(217, 119, 6, 0.2);
}

@media (max-width: 968px) {
    .contact {
        padding: var(--space-xl) 1.5rem;
    }

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

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

    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .contact {
        padding: 3rem 1.5rem;
    }

    .contact-header {
        margin-bottom: 2.5rem;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .info-group {
        padding-bottom: 1.5rem;
    }

    .info-value {
        font-size: 16px;
    }

    .client-types {
        padding: 1.5rem;
    }

    .client-label {
        font-size: 13px;
    }

    .client-tags span {
        font-size: 12px;
        padding: 0.4rem 0.8rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .form-field input,
    .form-field textarea {
        font-size: 16px;
    }
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 3rem 2rem;
}

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

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
    max-width: 600px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    justify-content: flex-start;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-top {
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer-top {
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .footer-col li {
        margin-bottom: 0.5rem;
    }

    .footer-col a {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* ================================
   General Responsive Improvements
   ================================ */

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .section-label {
        font-size: 12px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 36px);
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .services-header,
    .diff-content,
    .coverage-header,
    .contact-header {
        margin-bottom: 2.5rem;
    }

    h1, h2, h3, h4 {
        word-wrap: break-word;
    }

    .hero-visual {
        gap: 0.625rem;
    }

    .visual-card {
        padding: 1rem;
    }

    .card-icon {
        width: 38px;
        height: 38px;
    }

    .card-icon svg {
        width: 19px;
        height: 19px;
    }

    .card-title {
        font-size: 13px;
    }

    .card-text {
        font-size: 11px;
    }
}

/* ================================
   Utilities
   ================================ */

.hidden {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
