:root {
    --navy: #0A192F;
    --navy-light: #112240;
    --slate-blue: #1E3A5F;
    --light-slate: #8892b0;
    --lightest-slate: #ccd6f6;
    --white: #FFFFFF;
    --cyber-teal: #64FFDA;
    --font-primary: monospace;
    --font-secondary: 'Inter', sans-serif;
    --transition-speed: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@keyframes scroll-up {
from { transform: translateY(0); }
to { transform: translateY(-50%); }
}
@keyframes scroll-down {
from { transform: translateY(-50%); }
to { transform: translateY(0); }
}

@keyframes background-pan {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    background-color: var(--navy);
    color: var(--light-slate);
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--lightest-slate);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(4rem, 8vw, 8rem); }
h2 { font-size: clamp(3.5rem, 6vw, 5rem); }
h3 { font-size: clamp(2.2rem, 4vw, 3.2rem); }

a {
    color: var(--cyber-teal);
    text-decoration: none;
    transition: color var(--transition-speed);
}

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

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

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.section {
    padding: 12rem 0;
    overflow: hidden;
    position: relative;
}

.section__title {
    text-align: center;
    margin-bottom: 8rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.8rem, 5vw, 4rem);
}

.section__title::before,
.section__title::after {
    content: '';
    display: block;
    height: 1px;
    width: 50px;
    background-color: var(--slate-blue);
}

.section__title::before { margin-right: 2rem; }
.section__title::after { margin-left: 2rem; }

.button {
    display: inline-block;
    padding: 1.4rem 3.2rem;
    border: 1px solid var(--cyber-teal);
    background-color: transparent;
    color: var(--cyber-teal);
    font-family: var(--font-primary);
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--cyber-teal);
    transition: width var(--transition-speed);
    z-index: -1;
}

.button:hover {
    color: var(--navy);
}

.button:hover::after {
    width: 100%;
}

.button__icon {
    display: inline-block;
    vertical-align: middle;
    width: 1.8rem;
    margin-left: 0.8rem;
    transition: transform var(--transition-speed);
}

.button:hover .button__icon {
    transform: translateX(5px);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    background-color: transparent;
    transition: all var(--transition-speed);
}

.header--scrolled {
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
    padding: 1.5rem 0;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

.header__logo img {
    height: 4rem;
    width: auto;
    transition: filter var(--transition-speed);
}

.header__logo:hover img {
    filter: drop-shadow(0 0 5px var(--cyber-teal));
}

.nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4rem;
}

.nav__link {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--lightest-slate);
    position: relative;
    padding: 0.5rem 0px;
}

.nav__link-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    color: var(--cyber-teal);
    transition: width 0.4s;
    border-bottom: 2px solid var(--cyber-teal);
}

.nav__link:hover .nav__link-text::before {
    width: 100%;
}


.nav__item .button
{
    padding: 0.5rem 10px;

}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.header__burger-line {
    width: 2.5rem;
    height: 2px;
    background: var(--lightest-slate);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at bottom, var(--navy-light) 0%, var(--navy) 100%);
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__subtitle {
    color: var(--cyber-teal);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    font-weight: 400;
}

.hero__title {
    margin-bottom: 3rem;
}

.hero__description {
    font-size: 2rem;
    max-width: 600px;
    margin-bottom: 4rem;
    color: var(--light-slate);
}

.why-us {
    background-color: var(--navy);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, var(--navy), transparent);
    z-index: 2;
    transform: translateY(-99%);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.why-us__card {
    background: linear-gradient(145deg, var(--navy-light), #0e1e3a);
    padding: 4rem 3rem;
    border-radius: 8px;
    border: 1px solid var(--slate-blue);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.why-us__card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(100, 255, 218, 0.06), transparent 40%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.why-us__card:hover::before {
    opacity: 1;
}

.why-us__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(2, 12, 27, 0.7);
    border-color: var(--cyber-teal);
}

.why-us__content {
    position: relative;
    z-index: 1;
}

.why-us__icon {
    margin-bottom: 2.5rem;
    color: var(--cyber-teal);
}

.why-us__icon svg {
    width: 4.5rem;
    height: 4.5rem;
}

.why-us__title {
    margin-bottom: 1.5rem;
    color: var(--lightest-slate);
    font-size: 2.4rem;
}

.services {
    background: var(--navy-light);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

.services__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
    border-bottom: 1px solid var(--slate-blue);
    flex-wrap: wrap;
}

.services__tab-button {
    padding: 1.5rem 3rem;
    border: none;
    background: none;
    color: var(--light-slate);
    font-family: var(--font-primary);
    font-size: 1.8rem;
    cursor: pointer;
    position: relative;
    transition: color var(--transition-speed);
}

.services__tab-button::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--cyber-teal);
    transition: width var(--transition-speed);
}

.services__tab-button:hover,
.services__tab-button--active {
    color: var(--cyber-teal);
}

.services__tab-button--active::after {
    width: 100%;
}

.services__content {
    display: none;
}

.services__content--active {
    display: block;
    animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.service-item:nth-child(even) .service-item__image-wrapper {
    order: -1;
}

.service-item__image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.service-item__image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--cyber-teal), var(--navy));
    mix-blend-mode: multiply;
    opacity: 0.7;
    transition: opacity var(--transition-speed);
}

.service-item__image-wrapper:hover::after {
    opacity: 0.3;
}

.service-item__image {
    transition: transform var(--transition-speed);
}

.service-item__image-wrapper:hover .service-item__image {
    transform: scale(1.05);
}

.service-item__description {
    margin-bottom: 3rem;
}

.service-item__features {
    list-style: none;
    margin-bottom: 3rem;
}

.service-item__feature-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.service-item__feature-item svg {
    position: absolute;
    left: 0;
    top: 5px;
    width: 1.8rem;
    height: 1.8rem;
    color: var(--cyber-teal);
}

.tech-showcase {
    background: var(--navy) url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cg fill-rule="evenodd"%3E%3Cg fill="%23112240" fill-opacity="0.4"%3E%3Cpath opacity=".5" d="M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h16v9h1v-9h9v9h1v-9h9v9h1v-9h9v9h1v-9h9v9h1v-9h9v9h1v-9h9v9h1v-9h9v9h1v-9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z"/%3E%3Cpath d="M6 5V0h1v5h94V0h1v5h-6v95h6v1h-6v-5H6v5H5v-5H0V5h5V0h1v5h-1z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.tech-showcase__slider .swiper-slide {
    background-color: var(--navy-light);
    border: 1px solid var(--slate-blue);
    border-radius: 8px;
    padding: 4rem 3rem;
    text-align: center;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all var(--transition-speed);
    transform: scale(0.95);
}

.tech-showcase__slider .swiper-slide-active {
    transform: scale(1);
    border-color: var(--cyber-teal);
    box-shadow: 0 0 30px -10px var(--cyber-teal);
}

.tech-showcase__icon { color: var(--cyber-teal); }
.tech-showcase__icon svg {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
}

.tech-showcase__title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--lightest-slate);
}

..testimonials {
    background-color: var(--navy-light);
    padding-bottom: 0;
    padding-top: 12rem;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
}

.testimonials__description {
    max-width: 700px;
    margin: 0 auto 6rem;
    text-align: center;
    color: var(--lightest-slate);
}

.testimonials__grid-wrapper {
    position: relative;
    height: 700px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
}

.testimonials__column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    will-change: transform;
}

.testimonials__grid:hover .testimonials__column {
    animation-play-state: paused;
}

.testimonials__column:nth-child(1) {
    animation: scroll-up 80s linear infinite;
}

.testimonials__column:nth-child(2) {
    animation: scroll-down 95s linear infinite;
}

.testimonials__column:nth-child(3) {
    animation: scroll-up 70s linear infinite;
}

.testimonial-card-small {
    background: var(--navy);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--slate-blue);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed), opacity var(--transition-speed);
}

.testimonials__grid:hover .testimonial-card-small:not(:hover) {
    opacity: 0.5;
}

.testimonial-card-small:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 1;
}

.testimonial-card-small__header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-card-small__avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin-right: 1.5rem;
    border: 2px solid var(--slate-blue);
}

.testimonial-card-small__author {
    color: var(--lightest-slate);
    font-size: 1.6rem;
    font-weight: 600;
}

.testimonial-card-small__title {
    color: var(--cyber-teal);
    font-size: 1.3rem;
}

.testimonial-card-small__text {
    font-size: 1.5rem;
    color: var(--light-slate);
    font-style: italic;
}

.faq {
    background-color: var(--navy);
}

.faq__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background-color: var(--navy-light);
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--slate-blue);
    transition: all var(--transition-speed);
}

.faq__item--active {
    border-color: var(--cyber-teal);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.1);
}

.faq__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
}

.faq__title {
    font-size: 2rem;
    color: var(--lightest-slate);
    font-family: var(--font-primary);
    padding-right: 2rem;
}

.faq__icon {
    color: var(--cyber-teal);
    transition: transform var(--transition-speed);
    flex-shrink: 0;
}

.faq__item--active .faq__icon {
    transform: rotate(180deg);
}

.faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq__item--active .faq__content {
     padding-bottom: 2.5rem;
}
.faq__text {
    padding: 0 2.5rem 0;
}

.contact {
    background-color: var(--navy-light);
    text-align: center;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    padding-top: 18rem;
}

.contact__title {
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--white);
    line-height: 1;
}

.contact__subtitle {
    color: var(--cyber-teal);
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    font-family: var(--font-primary);
}

.contact__description {
    max-width: 700px;
    margin: 0 auto 5rem;
    font-size: 1.8rem;
}

.footer {
    padding: 8rem 0;
    background-color: var(--navy);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-blue), transparent);
}

.footer__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 5rem;
}

.footer__about-text {
    margin-top: 2rem;
    padding-right: 4rem;
    max-width: 35ch;
}

.footer__logo img {
    height: 4rem;
}

.footer__title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.footer__list {
    list-style: none;
}

.footer__list-item {
    margin-bottom: 1.5rem;
}

.footer__link {
    color: var(--light-slate);
    transition: all var(--transition-speed);
}

.footer__link:hover {
    color: var(--cyber-teal);
    padding-left: 5px;
}

.footer__contact-link {
    color: var(--light-slate);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--transition-speed);
}

.footer__contact-link:hover {
    color: var(--cyber-teal);
    transform: translateY(-2px);
}

.footer__contact-link svg {
    width: 1.8rem;
    height: 1.8rem;
    flex-shrink: 0;
}

.footer__copyright {
    text-align: center;
    margin-top: 8rem;
    padding-top: 3rem;
    border-top: 1px solid var(--slate-blue);
    font-size: 1.4rem;
    color: var(--light-slate);
}

@media (max-width: 992px) {
    .footer__wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .footer__col--about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer__wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .footer__about-text {
        padding-right: 0;
        margin: 2rem auto 0;
    }
    .footer__contact-link {
        justify-content: center;
    }
    .footer__link:hover {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    .services { clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%); }
    .testimonials { clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); }
    .contact { clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%); padding-top: 12rem;}

    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(75vw, 400px);
        flex-direction: column;
        justify-content: center;
        background-color: var(--navy-light);
        transform: translateX(100%);
        transition: transform var(--transition-speed);
        box-shadow: -10px 0px 30px -15px rgba(2,12,27,0.7);
        gap: 0;
    }

    .nav__list--active {
        transform: translateX(0);
    }
    
    .nav__item {
        width: 100%;
        text-align: center;
    }

    .nav__link {
        font-size: 2.4rem;
        display: block;
        padding: 2rem 0;
    }

    .header__burger {
        display: flex;
    }

    .header__burger--toggled .header__burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .header__burger--toggled .header__burger-line:nth-child(2) {
        opacity: 0;
    }
    .header__burger--toggled .header__burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .service-item, .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-item__image-wrapper {
        order: -1;
        margin-bottom: 4rem;
    }
    .footer__wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer__about-text {
        padding-right: 0;
    }
    .footer__socials {
        justify-content: center;
    }
}

.page-header {
    background-color: var(--navy-light);
    text-align: center;
    padding: 18rem 0 10rem;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--navy), transparent);
}

.page-header__title {
    font-size: clamp(4rem, 7vw, 7rem);
    color: var(--white);
}

.page-header__subtitle {
    font-size: 2rem;
    max-width: 700px;
    margin: 2rem auto 0;
    color: var(--light-slate);
}

.mission-vision__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
}

.mission-vision__image img {
    border-radius: 8px;
    border: 1px solid var(--slate-blue);
}

.mission-vision__title {
    text-align: left;
    justify-content: flex-start;
}
.mission-vision__title::before { display: none; }

.mission-vision__text p {
    margin-bottom: 2rem;
}

.values {
    background-color: var(--navy-light);
}
.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.values__card {
    background-color: var(--navy);
    padding: 4rem;
    border-radius: 8px;
    border: 1px solid var(--slate-blue);
    text-align: center;
}
.values__icon {
    color: var(--cyber-teal);
    margin: 0 auto 2rem;
}
.values__icon svg {
    width: 4rem;
    height: 4rem;
}
.values__title {
    margin-bottom: 1.5rem;
}

.team__slider-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}
.team__slide {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--slate-blue);
}
.team__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team__info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    color: var(--white);
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95), transparent);
}
.team__name {
    font-size: 2.4rem;
}
.team__title {
    color: var(--cyber-teal);
    margin-bottom: 1rem;
}
.team__bio {
    font-style: italic;
    font-size: 1.6rem;
}
.team__nav-button {
    color: var(--cyber-teal);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 2.4rem !important;
}

.service-hub {
    padding-top: 0;
    padding-bottom: 0;
}
.service-hub__card {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.service-hub__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.service-hub__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(10, 25, 47, 0.7);
    transition: background-color var(--transition-speed);
}
.service-hub__card:hover .service-hub__bg::after {
    background-color: rgba(10, 25, 47, 0.5);
}
.service-hub__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}
.service-hub__card:hover .service-hub__bg img {
    transform: scale(1);
}
.service-hub__content {
    position: relative;
    width: 100%;
}
.service-hub__name {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 1;
}
.service-hub__tagline {
    font-size: 2.4rem;
    color: var(--cyber-teal);
    margin-bottom: 2rem;
}
.service-hub__features {
    list-style: none;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.service-hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    padding-bottom: 10rem;
}
.service-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.service-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.8) 20%, transparent 60%);
}
.service-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-hero__program {
    color: var(--cyber-teal);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.service-hero__title {
    font-size: clamp(6rem, 12vw, 12rem);
    line-height: 1;
}
.service-hero__subtitle {
    font-size: 2.2rem;
    max-width: 60ch;
    color: var(--lightest-slate);
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.service-intro__title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.specs {
    background-color: var(--navy-light);
}
.specs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}
.specs__item {
    background-color: var(--navy);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--slate-blue);
}
.specs__title {
    color: var(--cyber-teal);
    font-size: 1.6rem;
    font-weight: 500;
}
.specs__value {
    font-size: 3.6rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}
.specs__desc {
    font-size: 1.4rem;
}

.features-tabs__nav {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--slate-blue);
    margin-bottom: 5rem;
}
.features-tabs__button {
    padding: 1.5rem 3rem;
    border: none;
    background: none;
    color: var(--light-slate);
    font-family: var(--font-primary);
    font-size: 1.8rem;
    cursor: pointer;
    position: relative;
    transition: color var(--transition-speed);
}
.features-tabs__button::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--cyber-teal);
    transition: width var(--transition-speed);
}
.features-tabs__button:hover, .features-tabs__button--active {
    color: var(--cyber-teal);
}
.features-tabs__button--active::after {
    width: 100%;
}
.features-tabs__content {
    display: none;
}
.features-tabs__content--active {
    display: block;
    animation: fadeIn 0.5s forwards;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.feature-item__image img {
    border-radius: 8px;
}

.cta-section {
    background: var(--navy-light);
}
.cta-section__wrapper {
    text-align: center;
}
.cta-section__wrapper h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.cta-section__wrapper p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .mission-vision__wrapper { grid-template-columns: 1fr; }
    .feature-item { grid-template-columns: 1fr; }
    .feature-item__image { margin-bottom: 3rem; }
}

.timeline-section {
    background-color: var(--navy-light);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--slate-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}
.timeline__item {
    padding: 1rem 4rem;
    position: relative;
    width: 50%;
}
.timeline__item:nth-child(odd) {
    left: 0;
}
.timeline__item:nth-child(even) {
    left: 50%;
}
.timeline__item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--navy);
    border: 3px solid var(--cyber-teal);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
.timeline__item:nth-child(even)::after {
    left: -10px;
}
.timeline__content {
    padding: 2rem 3rem;
    background-color: var(--navy);
    border: 1px solid var(--slate-blue);
    position: relative;
    border-radius: 6px;
}
.timeline__content--left { text-align: right; }
.timeline__year {
    color: var(--cyber-teal);
    font-size: 2.4rem;
}
.timeline__title {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--lightest-slate);
}

.process-section { background-color: var(--navy); }
.process__grid {
    display: grid;
    gap: 3rem;
}
.process__step {
    border: 1px solid var(--slate-blue);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
}
.process__number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: var(--slate-blue);
    opacity: 0.5;
}
.process__icon { color: var(--cyber-teal); }
.process__icon svg { width: 3.5rem; height: 3.5rem; }
.process__title {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.facilities-section { background-color: var(--navy-light); }
.facilities__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}
.facilities__image img {
    border-radius: 50%;
    border: 1px solid var(--slate-blue);
}
.facilities__list {
    list-style: none;
    margin-top: 3rem;
}
.facilities__list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}
.facilities__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyber-teal);
}
.facilities__list li span {
    font-weight: 600;
    color: var(--lightest-slate);
}

.journey-section { background-color: var(--navy-light); }
.journey__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}
.journey__step {
    counter-increment: journey-counter;
    position: relative;
    padding-top: 4rem;
}
.journey__step::before {
    content: '0' counter(journey-counter);
    font-size: 3rem;
    font-weight: 700;
    color: var(--cyber-teal);
    position: absolute;
    top: 0;
    left: 0;
}
.journey__title {
    margin-bottom: 1rem;
}

.tech-pillars-section { background-color: var(--navy); }
.tech-pillars__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.tech-pillars__pillar {
    border-left: 3px solid var(--cyber-teal);
    padding: 3rem;
    background-color: var(--navy-light);
    border-radius: 0 8px 8px 0;
}
.tech-pillars__title {
    margin-bottom: 1rem;
}

.comparison-section { background-color: var(--navy-light); }
.comparison-table {
    display: grid;
    border: 1px solid var(--slate-blue);
    border-radius: 8px;
    overflow: hidden;
}
.comparison-table__header, .comparison-table__row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr;
    background-color: var(--navy);
}
.comparison-table__header {
    background-color: var(--navy-light);
    font-weight: 600;
    color: var(--lightest-slate);
}
.comparison-table__row:not(:last-child) {
    border-bottom: 1px solid var(--slate-blue);
}
.comparison-table__cell {
    padding: 2rem;
}
.comparison-table__cell:not(:last-child) {
    border-right: 1px solid var(--slate-blue);
}
.comparison-table__link {
    font-weight: 600;
    color: var(--cyber-teal);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .timeline::after { left: 10px; }
    .timeline__item { width: 100%; padding-left: 50px; padding-right: 10px; }
    .timeline__item:nth-child(even) { left: 0; }
    .timeline__item::after { left: 0; }
    .timeline__content--left { text-align: left; }
    .facilities__wrapper { grid-template-columns: 1fr; }
    .facilities__image { grid-row: 1; }
    
    .comparison-table__header { display: none; }
    .comparison-table__row { grid-template-columns: 1fr; gap: 1px; }
    .comparison-table__cell {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        padding: 1.5rem;
        background-color: var(--navy-light);
    }
    .comparison-table__cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--light-slate);
        padding-right: 2rem;
    }
    .comparison-table__cell:not(:last-child) { border-right: none; }
}

.configurator {
    background-color: var(--navy-light);
}
.configurator__layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}
.configurator__canvas {
    position: sticky;
    top: 12rem;
    background-color: var(--navy);
    border-radius: 8px;
    border: 1px solid var(--slate-blue);
    padding: 2rem;
}
.configurator__svg .svg-part {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.configurator__svg .svg-part.visible {
    opacity: 1;
    transform: translateY(0);
}
.configurator__svg .svg-option {
    display: none;
}
.configurator__svg .svg-option.visible {
    display: block;
}

.configurator__controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.configurator__stage {
    background-color: var(--navy);
    border: 1px solid var(--slate-blue);
    border-radius: 8px;
    padding: 2rem;
    opacity: 0.5;
    transition: all var(--transition-speed);
}
.configurator__stage--active {
    opacity: 1;
    border-color: var(--cyber-teal);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.1);
}
.configurator__stage-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.configurator__stage-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyber-teal);
}
.configurator__stage-title {
    font-size: 2.2rem;
}
.configurator__stage-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.configurator__stage--active .configurator__stage-content {
    max-height: 200px;
}
.configurator__options {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}
.configurator__option-btn {
    flex-grow: 1;
    padding: 1rem;
    background-color: var(--slate-blue);
    border: 1px solid var(--slate-blue);
    color: var(--lightest-slate);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed);
}
.configurator__option-btn:hover {
    background-color: var(--cyber-teal);
    color: var(--navy);
    border-color: var(--cyber-teal);
}
.configurator__option-btn--active {
    background-color: var(--cyber-teal);
    color: var(--navy);
    border-color: var(--cyber-teal);
}
.configurator__navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.configurator__navigation .button:disabled {
    border-color: var(--slate-blue);
    color: var(--slate-blue);
    cursor: not-allowed;
    background-color: transparent;
}
.configurator__navigation .button:disabled:hover::after {
    width: 0;
}

/* Legal Pages */
.legal-content article h2 {
    font-size: 2.8rem;
    color: var(--cyber-teal);
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.legal-content article h2:first-of-type {
    margin-top: 0;
}
.legal-content article p {
    margin-bottom: 2rem;
}
.legal-content article ul {
    list-style: none;
    margin-bottom: 2rem;
}
.legal-content article ul li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}
.legal-content article ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--cyber-teal);
    font-size: 2rem;
    line-height: 1;
}

@media (max-width: 992px) {
    .configurator__layout,.testimonials__grid, .values__grid {
        grid-template-columns: 1fr;
    }
    .features-tabs__button
    {
        padding: 1.5rem 0.5rem;
    }
    .configurator__canvas {
        position: static;
        top: auto;
    }
}