:root {
    --navy-blue: #001f3f;
    --gold: #d4af37;
    --black: #0a0a0a;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --medium-gray: #666;
    --dark-navy: #001428;
    --gold-hover: #c19b2c;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
}

.motto {
    font-size: 1.2rem;
    font-style: italic;
    margin: 2rem 0;
    color: var(--gold);
    opacity: 0.95;
}

.motto-translation {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
    font-style: normal;
}

.value-prop {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: var(--white);
    font-weight: 500;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy-blue);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy-blue);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--navy-blue);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card.featured {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, var(--white) 0%, #fffef8 100%);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.15);
    border-color: var(--gold);
}

.service-card.featured:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.service-details {
    list-style: none;
    margin-top: 1rem;
}

.service-details li {
    padding: 0.5rem 0;
    color: var(--black);
    border-bottom: 1px solid var(--light-gray);
}

.service-details li:before {
    content: "▸ ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Standards Section */
.standards {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.standards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--navy-blue);
}

.standards-content {
    max-width: 1200px;
    margin: 0 auto;
}

.standards-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--black);
    font-weight: 500;
    line-height: 1.7;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.standards-card {
    background: var(--white);
    border: 2px solid var(--navy-blue);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.standards-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.15);
}

.standards-card h3 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.standards-card p {
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.standards-example {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--navy-blue);
}

.standards-metric {
    color: var(--gold);
    font-weight: 700;
    margin-top: 1rem;
}

.standards-philosophy {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.standards-philosophy h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.standards-philosophy p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.standards-philosophy p:last-child {
    margin-bottom: 0;
}

.standards-philosophy strong {
    color: var(--gold);
}

/* AI Automation Section */
.ai-automation {
    padding: 5rem 0;
    background-color: var(--white);
}

.ai-automation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--navy-blue);
}

.ai-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--black);
    font-weight: 500;
    line-height: 1.7;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ai-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border: 2px solid var(--navy-blue);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.ai-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.15);
}

.ai-card h3 {
    color: var(--navy-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.ai-card > p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ai-features {
    list-style: none;
    margin-top: 1rem;
}

.ai-features li {
    padding: 0.5rem 0;
    color: var(--black);
    border-bottom: 1px solid var(--light-gray);
}

.ai-features li:before {
    content: "⚡ ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

.ai-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--navy-blue);
    font-weight: 600;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fffef8 0%, var(--light-gray) 100%);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    line-height: 1.7;
}

/* Force Multiplier Section */
.force-multiplier {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
}

.force-multiplier h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.multiplier-content {
    max-width: 1000px;
    margin: 0 auto;
}

.multiplier-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.7;
}

.multiplier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.multiplier-step {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.multiplier-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.multiplier-step h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.multiplier-step p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.multiplier-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gold);
    font-style: italic;
    margin-top: 2rem;
    line-height: 1.7;
}

/* Expertise Section */
.expertise {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy-blue);
}

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

.expertise-category h3 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tags span {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tags span:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: scale(1.05);
}

/* Achievements Section */
.achievements {
    padding: 5rem 0;
    background-color: var(--white);
}

.achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy-blue);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: var(--light-gray);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 31, 63, 0.1);
}

.achievement-card h3 {
    color: var(--navy-blue);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.achievement-impact {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.achievement-card p {
    color: var(--black);
    line-height: 1.7;
}

/* Experience Timeline */
.experience {
    padding: 5rem 0;
    background-color: var(--navy-blue);
    color: var(--white);
}

.experience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gold);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--navy-blue);
}

.timeline-content h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.timeline-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.timeline-content p {
    color: var(--white);
    opacity: 0.85;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--navy-blue);
}

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

.contact-intro {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    text-align: left;
}

.contact-item strong {
    color: var(--navy-blue);
}

.contact-item a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--navy-blue);
}

/* Footer */
footer {
    background-color: var(--navy-blue);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .service-grid,
    .achievement-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 45px;
    }

    .timeline-marker {
        left: 1px;
    }
}

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

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .motto {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 2rem;
    }
}
