* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --raynet-dark-blue: #005092;
    --raynet-medium-blue: #0092D4;
    --raynet-light-blue: #E6F2FF;
    --raynet-accent: #9CC7EB;
    --raynet-accent2: #005092;
    --raynet-dark: #203142;
    --raynet-grey: #66666;
    --raynet-light-grey: #f5f7fa;
    --raynet-background1: #1F3040;
    --raynet-background2: #17212D;
}

a {
    color: var(--raynet-accent2);
    text-decoration: none;
}

a:hover {
    color: var(--raynet-medium-blue);
    text-decoration: underline;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--raynet-dark);
    background: #fff;
}

.social {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin: -2em 0 3em 0;
}

.social a {
    text-decoration: none;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: block;
    background: white;
}

.social a:hover {
    background: var(--raynet-accent) !important;
}

.header {
    background: var(--raynet-dark);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--raynet-accent);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--raynet-accent2);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--raynet-accent);
}



.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--raynet-dark-blue);
    z-index: 2000;
    transition: right 0.3s;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links li {
    margin-bottom: 0.5rem;
}

.mobile-menu-links a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.mobile-menu-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--raynet-accent);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
}

.mobile-overlay.active {
    display: block;
}


.photo-container {
    margin: -2em 0 2em 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 1em;
    /* <-- minimal gap between photos */
}

.photo-container img {
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Stack vertically on narrow screens */
@media (max-width: 768px) {
    .photo-container {
        flex-direction: column;
    }

    .photo-container img {
        width: 100%;
    }

    .social {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin: -2em 0 3em 0;
    }
}


/* Stack vertically on narrow screens */
@media (max-width: 468px) {

    .social {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: -2em 0 3em 0;
    }
}

.hero {
    background: linear-gradient(135deg, var(--raynet-dark-blue) 0%, #004080 100%);
    background: linear-gradient(135deg, var(--raynet-background1) 0%, var(--raynet-background2) 100%);
    color: white;
    padding: 8rem 3rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.3;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--raynet-accent);
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 1200px;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background: var(--raynet-accent2);
    color: white;
    padding: 1.1rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--raynet-accent2);
}

.cta-primary:hover {
    background: var(--raynet-medium-blue);
    color: white;
    text-decoration: none;
    border-color: white;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1.1rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    margin-left: 1rem;
}

.cta-secondary:hover {
    background: white;
    text-decoration: none;
    color: var(--raynet-dark-blue);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section {
    padding: 6rem 0;
}

.section-label {
    font-size: 0.85rem;
    color: var(--raynet-accent2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-label::before {
    content: '// ';
    color: var(--raynet-accent2);
}

.section-title {
    font-size: 2.8rem;
    color: var(--raynet-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--raynet-grey);
    max-width: 1200px;
    margin-bottom: 4rem;
    line-height: 1.7;
}

.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
}

.step-card {
    padding: 3rem;
    position: relative;
    border-right: 1px solid #e0e0e0;
}

.step-card:last-child {
    border-right: none;
}

.step-card::before {
    content: '';
    position: absolute;
    left: 3rem;
    top: 0;
    width: 60px;
    height: 4px;
    background: var(--raynet-accent);
}

.bracket-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--raynet-dark-blue);
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.step-card h3 {
    color: var(--raynet-dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--raynet-grey);
    line-height: 1.7;
    font-size: 1rem;
}

.bg-light {
    background: var(--raynet-light-grey);
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.value-list {
    list-style: none;
}

.value-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    color: var(--raynet-dark);
    position: relative;
    padding-left: 2rem;
}

.value-list li:last-child {
    border-bottom: none;
}

.value-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--raynet-accent);
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--raynet-accent);
    /*transform: translateY(-5px);*/
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--raynet-dark-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number span {
    color: var(--raynet-dark-blue);
}

.stat-label {
    color: var(--raynet-grey);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-left: 4px solid var(--raynet-accent);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.service-card:hover {
    /*box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateX(5px);*/
}

.service-card h3 {
    color: var(--raynet-dark-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--raynet-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--raynet-accent2);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more:hover {
    gap: 1rem;
}

.jobs-section {
    background: var(--raynet-dark-blue);
    color: white;
    padding: 6rem 0;
}

.jobs-section .section-label {
    color: var(--raynet-accent);
}

.jobs-section .section-title {
    color: white;
}

.jobs-section .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-left: 4px solid var(--raynet-accent);
    transition: all 0.3s;
}

.job-card:hover {
    background: rgba(255, 255, 255, 0.08);
    /*border-left-width: 8px;*/
}

.job-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.job-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.job-link {
    color: var(--raynet-accent);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.job-link:hover {
    text-decoration: underline;
}

.cta-center {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section {
    padding: 6rem 0;
    background: var(--raynet-light-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
}

.contact-info {
    background: white;
    padding: 3rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: var(--raynet-dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    display: block;
    color: var(--raynet-dark-blue);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item span {
    color: var(--raynet-grey);
    font-size: 1.1rem;
}

.parent-company {
    background: var(--raynet-dark-blue);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.parent-company h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.parent-company p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer a {
    color: var(--raynet-accent2);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.technopark-foto {
    width: 50%;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .three-col-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .step-card:last-child {
        border-bottom: none;
    }

    .two-col-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid,
    .job-list {
        grid-template-columns: 1fr;
    }

    .technopark-foto {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .container {
        padding: 0 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 5rem 1.5rem 4rem;
    }

    .cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .technopark-foto {
        width: 100%;
    }
}

.logo img {
    height: 8rem;
    margin: -2rem;
    margin-top: -1rem;
}

.step-card svg {
    height: 4em;
    width: 4em;
}