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

/* Улучшение качества изображений */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Оптимизация для Retina дисплеев */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: auto;
    }
}

/* Улучшение контейнеров изображений */
.about-visual,
.systems-visual,
.control-systems-image-wrapper,
.counter-drone-image-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    isolation: isolate;
}

:root {
    --dark-blue: #0A0A2A;
    --dark-blue-light: #1a1a3a;
    --teal: #4A9EFF;
    --teal-dark: #3A7FD1;
    --teal-muted: #5A7FA8;
    --purple: #6B46C1;
    --purple-light: #8B5CF6;
    --white: #FFFFFF;
    --gray-light: #B0C4DE;
    --gray: #9CA3AF;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--dark-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: var(--dark-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(74, 158, 255, 0.1);
}

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


.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--teal);
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.nav-brand-left {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Glacial Indifference', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand-left:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s ease, font-size 0.3s ease;
    position: relative;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--white);
    transform: scale(1.1);
    font-size: 17px;
}

.lang-switcher {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    font-weight: 500;
}

.lang-switcher:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

.lang-active {
    font-weight: 600;
}

.lang-separator {
    opacity: 0.5;
}

.lang-inactive {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 0 0;
    background: var(--dark-blue);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
}

.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-video-desktop {
        display: none;
    }
    
    .hero-video-mobile {
        display: block;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 42, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 40px 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 80vh;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero-background-image {
    width: 100%;
    height: 120%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: translateY(0) translateZ(0);
    -webkit-transform: translateY(0) translateZ(0);
    transition: transform 0.1s ease-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.hero-logo {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 50px rgba(0, 212, 255, 0.3));
        transform: scale(1.02);
    }
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
    letter-spacing: 0;
    color: var(--white);
    font-family: 'Glacial Indifference', sans-serif;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    grid-column: 2;
    grid-row: 2 / 6;
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
    border-radius: 20px;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    border: none;
    color: var(--dark-blue);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.cta-button:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #0A0A2A;
    color: var(--white);
    position: relative;
}

.about-section::before {
    display: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Section Content - единый стиль для всех секций */
.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-left {
    grid-column: 1;
    display: flex;
    flex-direction: column;
}

.about-text-wrapper {
    width: 100%;
}

.about-text-wrapper .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 32px;
    line-height: 1.2;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.about-text {
    font-size: 18px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 32px;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.about-image {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    filter: drop-shadow(0 8px 24px rgba(0, 212, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.about-image:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 12px 32px rgba(0, 212, 255, 0.3));
}

/* Systems Section */
.systems-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--dark-purple) 100%);
    color: var(--white);
    position: relative;
}

.systems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(107, 70, 193, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.system-subsection {
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.system-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 20px;
    margin-top: 0;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.subsection-description {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.systems-section .subsection-description {
    color: var(--white);
}

.systems-section .section-title {
    color: var(--white);
}

.systems-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.systems-text-wrapper {
    grid-column: 1;
}

.systems-visual {
    grid-column: 2;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.systems-image {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    filter: drop-shadow(0 8px 24px rgba(0, 212, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.systems-image:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 12px 32px rgba(0, 212, 255, 0.3));
}

.systems-section .content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.systems-section .content-list li {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 18px;
    color: var(--white);
    transition: none;
    transform: none;
    box-shadow: none;
    padding-left: 0;
    line-height: 1.2;
}

.systems-section .content-list li:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

.systems-section .content-list li::before {
    content: '';
    margin-right: 0;
}

.subsection-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--teal);
    margin-top: 30px;
    margin-bottom: 30px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    text-align: center;
}

/* Use Cases Cards */
.use-cases-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.use-case-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.use-case-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.use-case-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

/* Control Systems Section */
.control-systems-section {
    padding: 80px 0;
    background: #0A0A2A;
    color: var(--white);
    position: relative;
}

.control-systems-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.control-systems-text-wrapper {
    width: 100%;
}

.control-systems-image-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
}

.control-systems-image {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    filter: drop-shadow(0 8px 24px rgba(0, 212, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.control-systems-image:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 12px 32px rgba(0, 212, 255, 0.3));
}

.control-systems-section .section-title {
    color: var(--white);
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.control-systems-section .subsection-description {
    color: var(--white);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.control-systems-section .content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.control-systems-section .content-list li {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 18px;
    color: var(--white);
    transition: none;
    transform: none;
    box-shadow: none;
    padding-left: 0;
    line-height: 1.2;
}

.control-systems-section .content-list li:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

.control-systems-section .content-list li::before {
    content: '';
    margin-right: 0;
}

.control-systems-section::before {
    display: none;
}

/* Counter-Drone Section */
.counter-drone-section {
    padding: 80px 0;
    background: #0A0A2A;
    color: var(--white);
    position: relative;
}

.counter-drone-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.counter-drone-text-wrapper {
    width: 100%;
}

.counter-drone-image-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
}

.counter-drone-image {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    filter: drop-shadow(0 8px 24px rgba(0, 212, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.counter-drone-image:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 12px 32px rgba(0, 212, 255, 0.3));
}

.counter-drone-section .section-title {
    color: var(--white);
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.counter-drone-section .subsection-description {
    color: var(--white);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.counter-drone-section .content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.counter-drone-section .content-list li {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 18px;
    color: var(--white);
    transition: none;
    transform: none;
    box-shadow: none;
    padding-left: 0;
    line-height: 1.2;
}

.counter-drone-section .content-list li:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

.counter-drone-section .content-list li::before {
    content: '';
    margin-right: 0;
}

.counter-drone-section::before {
    display: none;
}

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

/* Components Section */
.components-section {
    padding: 80px 0;
    background-color: #0A0A2A;
    color: var(--white);
}

.components-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.components-text-wrapper {
    width: 100%;
}

.components-software-content {
    max-width: 1200px;
    margin: 60px auto 0 auto;
}

.components-section .section-title {
    color: var(--white);
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.components-section .subsection-description {
    color: var(--white);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.components-section .content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.components-section .content-list li {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 18px;
    color: var(--white);
    transition: none;
    transform: none;
    box-shadow: none;
    padding-left: 0;
    line-height: 1.2;
}

.components-section .content-list li:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

.components-section .content-list li::before {
    content: '';
    margin-right: 0;
}

/* Technology Hub Section */
.technology-hub-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--dark-purple) 100%);
    color: var(--white);
    position: relative;
}

.technology-hub-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 5% 10%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 95% 90%, rgba(107, 70, 193, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.technology-hub-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.technology-hub-left {
    grid-column: 1;
}

.technology-hub-right {
    grid-column: 2;
}

.technology-hub-image-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.technology-hub-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    filter: drop-shadow(0 8px 24px rgba(0, 212, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.technology-hub-image:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 12px 32px rgba(0, 212, 255, 0.3));
}

.technology-hub-bottom {
    margin-top: 80px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.technology-hub-bottom .section-title {
    text-align: center;
    margin-bottom: 24px;
}

.technology-hub-bottom .subsection-description {
    text-align: center;
}

.technology-hub-bottom .content-list {
    text-align: left;
    display: inline-block;
}

.technology-hub-section .section-title {
    color: var(--white);
    text-align: left;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.technology-hub-section .subsection-description {
    color: var(--white);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.technology-hub-section .content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.technology-hub-section .content-list li {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 18px;
    color: var(--white);
    transition: none;
    transform: none;
    box-shadow: none;
    padding-left: 0;
    line-height: 1.2;
}

.technology-hub-section .content-list li:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

.technology-hub-section .content-list li::before {
    content: '';
    margin-right: 0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--dark-blue-light);
    color: var(--white);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--teal);
    text-align: center;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.section-description {
    font-size: 18px;
    color: var(--gray-light);
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.8;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--teal);
    text-align: left;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    max-width: 100%;
}

.content-list li {
    font-size: 18px;
    color: var(--white);
    padding: 20px 30px;
    margin-bottom: 15px;
    background: rgba(26, 26, 58, 0.6);
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}


.content-list li:hover {
    background: rgba(74, 158, 255, 0.15);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.25);
}

/* Use Cases Section */
.use-cases-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--dark-purple) 100%);
    color: var(--white);
    position: relative;
}

.use-cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(107, 70, 193, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.use-cases-section .section-title {
    color: var(--teal);
}

.use-cases-section .section-subtitle {
    color: var(--teal);
}

.use-cases-section .content-list li {
    background: rgba(26, 26, 58, 0.8);
    color: var(--white);
    border-left-color: var(--teal);
}

.use-cases-section .content-list li::before {
    color: var(--teal);
}

.use-cases-section .content-list li:hover {
    background: rgba(74, 158, 255, 0.15);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.25);
}

/* Partnerships Section */
.partnerships-section {
    padding: 100px 0;
    background-color: var(--dark-blue-light);
    color: var(--white);
}


.partnership-note {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    color: var(--gray-light);
    font-style: italic;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #03234F;
    position: relative;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info-centered {
    max-width: 600px;
    text-align: center;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.contact-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 30px;
}

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

.contact-description {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.company-info {
    margin-top: 20px;
}

.company-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.company-location {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 15px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

.company-email {
    margin-bottom: 20px;
}

.email-link {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    font-weight: 500;
}

.email-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
}

/* Odense Robotics Member Section */
.odense-robotics-section {
    padding: 48px 0;
    background-color: var(--dark-blue);
    border-top: 1px solid rgba(74, 158, 255, 0.1);
}

.odense-robotics-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.odense-robotics-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.odense-robotics-link:hover {
    opacity: 0.85;
}

.odense-robotics-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.odense-robotics-text {
    margin: 0;
    font-size: 16px;
    color: var(--white);
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    padding: 40px 0;
    border-top: 1px solid rgba(74, 158, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--white);
    font-size: 14px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    font-weight: 400;
    margin: 0;
}

.company-cvr {
    color: var(--white);
    font-size: 14px;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    font-weight: 400;
    margin: 0;
}

.footer-content .company-email {
    margin: 0;
}

.footer-content .email-link {
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    font-weight: 400;
}

.footer-content .email-link:hover {
    color: var(--teal);
    text-decoration: underline;
}

.footer-content .company-phone {
    margin: 0;
    font-size: 14px;
    color: var(--white);
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.social-icon:hover {
    background-color: var(--teal);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.social-icon:hover svg {
    fill: var(--dark-blue);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-logo {
        grid-column: 1;
    }

    .hero-title,
    .hero-tagline,
    .hero-subtitle,
    .hero-description,
    .cta-button {
        grid-column: 1;
        text-align: center;
        max-width: 100%;
    }

    .hero-image {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .about-content .section-title {
        grid-column: 1;
        text-align: left;
    }

    .about-text-wrapper {
        grid-column: 1;
    }

    .about-visual {
        display: none;
    }

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

    .systems-text-wrapper {
        grid-column: 1;
    }

    .systems-visual {
        grid-column: 1;
    }

    .control-systems-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .control-systems-left {
        grid-column: 1;
    }

    .control-systems-right {
        grid-column: 1;
    }

    .counter-drone-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .counter-drone-left {
        grid-column: 1;
    }

    .counter-drone-right {
        grid-column: 1;
    }

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

    .components-left {
        grid-column: 1;
    }

    .components-right {
        grid-column: 1;
    }

    .technology-hub-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .technology-hub-left {
        grid-column: 1;
    }

    .technology-hub-right {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .use-cases-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-title {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .copyright,
    .company-cvr,
    .company-email,
    .company-phone {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

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

    .hero-title {
        font-size: 28px;
    }

    .services-section,
    .use-cases-section,
    .partnerships-section,
    .contact-section {
        padding: 60px 0;
    }

    .content-list li {
        font-size: 16px;
        padding: 15px 20px;
        padding-left: 40px;
    }
}

