:root {
    --electric-blue: #0052CC;
    --forest-green: #2E844A;
    --light-gray: #F5F7FA;
    --deep-navy: #0A1F44;
    --bright-lime: #91B302;
    --bg: #ffffff;
    --brand: var(--electric-blue);
    --accent: var(--forest-green);
    --muted: #57606F;
    --max-width: 1280px;
    --container-pad: 24px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--deep-navy);
    line-height: 1.6;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--container-pad);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

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

.network-content {
    max-width: 480px;
}

.network-map {
    position: relative;
}

.map-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--brand), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 119, 255, 0.2);
}

.logo-text {
    font-weight: 800;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--deep-navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1.05rem;
}

nav a:hover {
    color: var(--brand);
}

/* Button Styles */
.btn,
.cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary,
.cta {
    background: var(--brand);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 119, 255, 0.2);
}

.btn-primary:hover,
.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 119, 255, 0.3);
    color: white;
}

.btn-ghost,
.cta.secondary {
    background: transparent;
    color: var(--deep-navy);
    border: 2px solid var(--light-gray);
}

.btn-ghost:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(160deg, var(--light-gray) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--deep-navy);
}

.hero p {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 32px;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Card Styles */
.card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--light-gray);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--brand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 28px;
}

.card h3,
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--deep-navy);
}

.card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--deep-navy);
}

/* Stats Section */
.stats {
    background: var(--deep-navy);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--brand);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--deep-navy);
    color: var(--light-gray);
    padding: 80px 0 40px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-info p {
    color: var(--muted);
    margin-top: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Form Styles */
form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--deep-navy);
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--deep-navy);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--muted);
}

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

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2357606F' viewBox='0 0 16 16'%3E%3Cpath d='M8 10l4-4H4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    max-width: 400px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--deep-navy);
}

.contact-methods {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.contact-phone {
    color: var(--muted);
    font-weight: 500;
}

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

    .contact-info {
        text-align: center;
        margin: 0 auto;
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Utility Classes */
.muted {
    color: var(--muted);
}

.small {
    font-size: 0.9rem;
    line-height: 1.5;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 12px;
}

.mt-3 {
    margin-top: 16px;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 12px;
}

.card-padded {
    padding: 18px;
}

.divider {
    border: none;
    border-top: 1px solid #eef2f5;
    margin: 12px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    nav {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

/* Legal pages specific styles */
.legal-content {
    padding: 120px 0 60px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--deep-navy);
}

.legal-content .content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--deep-navy);
}

.legal-content p,
.legal-content ul {
    margin-bottom: 20px;
    color: var(--deep-navy);
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* Careers page specific styles */
.careers-hero {
    background: linear-gradient(160deg, var(--light-gray) 0%, #ffffff 100%);
}

.job-categories {
    margin-top: 60px;
}

.category {
    margin-bottom: 60px;
}

.category h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--deep-navy);
}

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

.job-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.job-card h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--deep-navy);
}

.job-card p {
    color: var(--muted);
    margin-bottom: 16px;
}

.job-card ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.job-card li {
    color: var(--deep-navy);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.job-card li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--brand);
}

.benefits {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--light-gray);
}

.benefits h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--deep-navy);
}

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

.benefit-card {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--deep-navy);
}

.benefit-card p {
    color: var(--muted);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 40px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .job-list {
        grid-template-columns: 1fr;
    }

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