:root {
    /*https://coolors.co/palettes/popular/navbar*/
    --primary-eits: #070F2B;
    --primary-alternative-eits: #FBEEAC;
    --secondary-eits: #1D5D9B;
    --dark-blue-eits: #535C91;
    --light-blue-eits: #9290C3;
    --light-yellow-eits: #FBEEAC; /*out-top*/
    --yellow-eits: #F4D160; /*out-bottom*/
    --gray-eits: #E7E7E7; /*inner-top*/
    --purple-eits: #8e7ab5; /* 144, 122, 181 */
    --red-eits: #bd574e; /* 189, 87, 78 */
    --blue-eits: #7286d3; /* 114, 134, 211 */
    --green-eits: #1cfd8d; /* 28, 253, 141 */
    --white-eits: #FAF3F0;
    --beige-eits: #fec89a;
    --social-media-bg-eits: #FAD29D;
    --accent-eits: #64dca0;
    --primary-font-eits: #004a5a;
    --bg-card: #161b22;
    --accent-e-its-glow: rgba(32, 201, 151, 0.4);
}

.navbar-dark .navbar-brand {
    color: var(--primary-eits);
}
.navbar-dark .navbar-nav .nav-link {
    color: var(--primary-eits);
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary-eits);
}
.navbar-dark .navbar-brand:hover {
    color: var(--secondary-eits);
}
.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>menu</title><path d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" /></svg>') !important;
}
.custom-navbar {
    background-color: var(--white-eits);
    border-radius: 50px;
    padding-left: 16px;
    padding-right: 16px;
}
[data-aos] {
    opacity: 0;
    transition-property: opacity;
}
[data-aos].aos-animate {
    opacity: 1;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-eits);
    background-color: var(--primary-eits);
}

.about-section {
    background-color: #FFFFFF;
}

a {
    color: var(--primary-eits);
}
a:hover {
    color: var(--secondary-eits);
    text-decoration: none;
}

h4 {
    font-weight: 800;
    color: var(--primary-eits);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.glass_effect {
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
}

.center-content {
    align-self: center;
}

.blue {
    position: absolute;
    width: 700px;
    height: 800px;
    background: radial-gradient(rgba(114, 134, 211, 0.24) 0%, transparent 80%);
    z-index: 0;
    margin-top: 85px;
    margin-left: -270px;
    left: 0;
}

.red {
    position: absolute;
    width: 400px;
    height: 500px;
    margin-top: 700px;
    background: radial-gradient(rgba(189, 87, 78, 0.28) 0%, transparent 80%);
    z-index: 0;
}

.purple {
    position: absolute;
    width: 1000px;
    height: 800px;
    margin-top: -300px;
    background: radial-gradient(rgba(144, 122, 181, 0.21) 0%, transparent 80%);
    z-index: 0;
    right: 0;
}

.green {
    position: absolute;
    width: 560px;
    height: 500px;
    background: radial-gradient(rgba(28, 253, 141, 0.22) 0%, transparent 80%);
    z-index: 0;
    margin-left: -175px;
    margin-top: 300px;
}

.container_dark {
    padding: 8rem 0rem 6rem;
    background: var(--primary-eits);
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 3rem;
    position: relative;
    color: var(--white-eits);
}

.container_light {
    padding: 8rem 0rem 6rem;
    /*background: var(--primary-alternative-eits);*/
    background-color: rgba(251, 238, 172, 0.8);
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 3rem;
    position: relative;
    color: var(--primary-eits);
}

.feature > img {
    border-radius: 5px;
}

.svg {
    width: 48px;
    height: 48px;
    position: absolute;
}

@keyframes vertical-shaking {
    0% { transform: translateY(0) }
    25% { transform: translateY(3px) }
    50% { transform: translateY(-3px) }
    75% { transform: translateY(3px) }
    100% { transform: translateY(0) }
}
.vertical-shake {
    animation: vertical-shaking 5s infinite;
}

@keyframes vertical-shaking-laptop {
    0% { transform: translateY(-5px) }
    25% { transform: translateY(5px) }
    50% { transform: translateY(0) }
    75% { transform: translateY(5px) }
    100% { transform: translateY(-5px) }
}
.vertical-shake-laptop {
    animation: vertical-shaking-laptop 4s infinite;
}

.card {
    border: none;
    background-color: transparent;
}
.card-header {
    color: white;
    font-weight: bold;
}
.card-header_start {
    border-radius: 0 50px 50px 0 !important;
}
.card-header_end {
    border-radius: 50px 0 0 50px !important;
}
.card-icon {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 12px;
}
.card-icon > svg {
    width: 32px;
    height: 32px;
}
.social_media > a {
    display: inline-block;
    background: var(--social-media-bg-eits);
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
    fill: var(--white-eits);
}
.social_media > a:hover {
    background: var(--white-eits);
    fill: var(--social-media-bg-eits);
}
.social_media > a > svg {
    width: 32px;
    margin-top: 8px;
}
#useful_links {
    padding: 0;
}
#useful_links > li:first-child {
    padding: 0 0 10px 0;
}
#useful_links > li {
    list-style: none;
    padding: 10px 0;
    display: flex;
    align-items: center;
}
#useful_links > li > i {
    padding-right: 5px;
}
#useful_links > li > i > svg {
    width: 12px;
    height: 12px;
}
.introduction {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.key-point-icon {
    width: 32px;
    position: absolute;
}
.key-point-topic, .key-point-description {
    margin-left: 2.5rem !important;
}
.key-point-topic {
    font-weight: 700 !important;
}
.icon-lg {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    font-size: 1.2rem;
    background-color: var(--social-media-bg-eits);
}
.icon-lg > svg {
    width: 32px;
    height: 32px;
}
.icon-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 0.375rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
    text-underline-offset: 0.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.card-footer {
    border-top: none;
    background: transparent;
}

/*https://codepen.io/JavaScriptJunkie/pen/WgRBxw*/

.service_card_bg {
    width: 95%;
    max-height: 100%;
    height: 100%;
    position: relative;
    margin: auto;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    transition: all 0.3s;
}
.service_card_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    /*display: -webkit-box;*/
    /*display: -webkit-flex;*/
    /*display: -ms-flexbox;*/
    /*display: flex;*/
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    align-items: center;
}
.service_card_image {
    width: 300px;
    border-radius: 20px;
    /*transform: translateX(-60px);*/
    transform:  translateY(-60px);
    overflow: hidden;
    flex-shrink: 0;
}
.service_card_image > img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    transition: all 0.3s;
}
.service_card_topic {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-eits);
    margin-bottom: 20px;
}
.service_card_description {
    color: #4e4a67;
    margin-bottom: 30px;
    line-height: 1.5em;
}
.service_card_button {
    display: inline-flex;
    background-color: var(--primary-alternative-eits);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
}
.counter_plus {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
}
.technologies > div > svg {
    width: 48px;
}

#scrollTopButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 10px;
    background-color: var(--social-media-bg-eits);
    color: var(--primary-eits);
    border: none;
    border-radius: 5px;
    display: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

#scrollTopButton.show {
    display: block;
}

.tech-stack {
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: #0b0d10;
    padding: 2rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.tech-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}
.tech-item {
    display: inline-block;
    margin: 0 30px;
    color: #9b9a9a;
    font-weight: 700;
    font-size: 1.2rem;
}
.tech-item > svg {
    width: 32px;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.accent {
    color: var(--accent-eits);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-eits);
}

.sticky-nav-bar {
    position: sticky;
    top: 0;
}



.image-wrapper {
    position: relative;
    z-index: 1;
}

.main-img {
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 2;
    max-width: 220px;
    border-left: 5px solid var(--accent-eits);
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #475569;
}
.feature-list li svg {
    background-color: var(--accent-e-its-glow);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 5px;
    margin-right: 12px;
}

@media (max-width: 991px) {
    .experience-badge {
        bottom: -20px;
        left: 20px;
        padding: 20px;
    }
    .image-wrapper {
        margin-top: 50px;
    }
}

.process-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f4fcf9 100%);
    overflow: hidden;
}

.process-bg-decoration {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(100, 220, 160, 0.15) 0%, rgba(255,255,255,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.timeline-wrapper {
    position: relative;
    padding: 20px 0;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary-eits), var(--accent-eits), transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-col-content { width: 45%; }
.timeline-col-center { width: 10%; display: flex; justify-content: center; position: relative; }
.timeline-col-empty { width: 45%; }

.timeline-point {
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--accent-eits);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(7, 15, 43, 0.05);
    transition: all 0.3s ease;
}

.timeline-row:hover .timeline-point {
    background: var(--accent-eits);
    border-color: var(--primary-eits);
    box-shadow: 0 0 20px rgba(100, 220, 160, 0.6);
    transform: scale(1.2);
}

.process-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(7, 15, 43, 0.08);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(7, 15, 43, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(7, 15, 43, 0.1);
    border-color: var(--accent-eits);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-eits), var(--accent-eits));
    opacity: 0;
    transition: opacity 0.3s;
}
.process-card:hover::before { opacity: 1; }

.icon-box {
    width: 56px;
    height: 56px;
    background: var(--primary-eits);
    color: var(--accent-eits);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(7, 15, 43, 0.2);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 2px rgba(7, 15, 43, 0.06);
    color: transparent;
    pointer-events: none;
    z-index: 0;
    transition: all 0.3s;
}

.process-card:hover .step-number {
    -webkit-text-stroke: 2px rgba(100, 220, 160, 0.3);
}

.connector-line {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--primary-eits);
    opacity: 0.2;
    z-index: 0;
}

.row-left .process-card { text-align: right; }
.row-left .icon-box { margin-left: auto; }
.row-left .step-number { right: auto; left: 25px; }
.row-left .connector-line { right: -40px; }

.row-right .process-card { text-align: left; }
.row-right .connector-line { left: -40px; }

p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {

    .timeline-line {
        left: 30px;
    }

    .timeline-row {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        padding-left: 60px;
        margin-bottom: 40px;
        position: relative;
    }

    .timeline-col-empty, .timeline-col-center {
        display: none;
    }

    .timeline-col-content {
        width: 100%;
        padding-right: 15px;
    }

    .timeline-row .timeline-point {
        display: block !important;

        position: absolute;
        left: 20px;
        top: 30px;
        margin: 0;
        z-index: 2;
        box-shadow: 0 0 0 4px rgba(7, 15, 43, 0.05);
    }

    .row-left .process-card, .row-right .process-card { text-align: left; }
    .row-left .icon-box, .row-right .icon-box { margin-left: 0; }
    .step-number {
        right: 20px !important;
        left: auto !important;
    }
    .connector-line { display: none; }
}

.gradient-text {
    background: linear-gradient(90deg,rgba(100, 220, 160, 1) 0%, rgba(251, 238, 172, 1) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-custom {
    background-color: var(--accent-eits);
    color: #000;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
}
.btn-custom:hover {
    background-color: #17a97e;
    box-shadow: 0 0 20px var(--accent-e-its-glow);
    transform: translateY(-2px);
}

.services-section {
    padding: 120px 0;
    background: #fff;
}

.service-card-base {
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-featured {
    background-color: var(--accent-eits);
    color: var(--primary-eits);
    border: 2px solid var(--primary-eits);
    box-shadow: 0 15px 40px -10px rgba(7, 15, 43, 0.15);
}
.service-card-featured h4 {
    color: var(--primary-eits);
    font-size: 1.8rem;
}
.service-card-featured p {
    color: rgba(7, 15, 43, 0.85);
    font-weight: 600;
}
.service-card-featured .icon-container-main {
    background: var(--primary-eits);
    color: var(--accent-eits);
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
}
.service-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -10px rgba(7, 15, 43, 0.3);
}

.service-card-dynamic {
    background-color: #ffffff;
    border: 1px solid rgba(7, 15, 43, 0.08);
    box-shadow: 0 5px 25px -5px rgba(0, 0, 0, 0.03);
    text-align: left;
}
.service-card-dynamic .icon-container-main {
    background: var(--primary-eits);
    color: var(--accent-eits);
    font-size: 1.8rem;
    width: 65px;
    height: 65px;
}
.service-card-dynamic h4 {
    font-size: 1.35rem;
}

.service-card-dynamic:hover {
    transform: translateY(-8px);
    border-color: var(--accent-eits);
    box-shadow: 0 15px 35px -10px rgba(7, 15, 43, 0.1), 0 0 15px rgba(100, 220, 160, 0.5);
}

.icon-container-main {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.text-accent { color: var(--accent-eits) !important; }

.btn-custom-dark {
    background-color: var(--primary-eits);
    color: var(--accent-eits);
    border: none;
    box-shadow: 0 8px 15px rgba(7, 15, 43, 0.2);
}
.btn-custom-dark:hover {
    background-color: var(--accent-eits);
    color: var(--primary-eits);
    box-shadow: 0 8px 15px rgba(100, 220, 160, 0.5);
}

@media (max-width: 991px) {
    .service-card-base {
        margin-bottom: 15px;
    }
    .service-card-featured {
        margin-bottom: 30px;
    }
}

.modern-footer {
    background-color: #050a1f;
    color: #94a3b8;
    padding: 80px 0 30px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.text-mint { color: var(--accent-eits); }
.text-mint-gradient {
    background: linear-gradient(90deg, var(--accent-eits), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-slate { color: #94a3b8; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }

.footer-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 220, 160, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    z-index: 1;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.input-group-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px 5px 5px 25px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}
.input-group-glass:focus-within {
    border-color: var(--accent-eits);
    box-shadow: 0 0 15px rgba(100, 220, 160, 0.2);
}
.form-control-glass {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    outline: none;
}
.form-control-glass::placeholder { color: rgba(255,255,255,0.3); }

.btn-circle-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-eits);
    border: none;
    color: #050a1f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.btn-circle-arrow:hover { transform: scale(1.1); }

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--accent-eits);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact li svg {
    margin-top: 5px;
}
.hover-mint:hover { color: var(--accent-eits) !important; }
.hover-white:hover { color: #fff !important; text-decoration: none; }

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}
.social-icons a:hover {
    background: var(--accent-eits);
    color: #050a1f;
    transform: translateY(-3px);
}

.system-status {
    background: rgba(100, 220, 160, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(100, 220, 160, 0.2);
}
.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-eits);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--accent-eits);
    animation: pulse 2s infinite;
}
.tracking-wide { letter-spacing: 1px; }

@keyframes pulse {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(100, 220, 160, 0.7); }
    70% { opacity: 1; box-shadow: 0 0 0 6px rgba(100, 220, 160, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(100, 220, 160, 0); }
}

.imprint-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.legal-card {
    background: #ffffff;
    border: 1px solid rgba(7, 15, 43, 0.05);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legal-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-eits);
    transition: background 0.3s;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(100, 220, 160, 0.3);
}

.legal-card:hover::after {
    background: var(--accent-eits);
}

.legal-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-eits);
    color: var(--primary-eits);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

h5 { font-weight: 700; margin-bottom: 15px; color: var(--primary-eits); }
.legal-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}
.legal-value { font-size: 1rem; color: #334155; font-weight: 500; }
.legal-text { font-size: 0.9rem; color: #64748b; line-height: 1.6; }

a.legal-link { color: var(--primary-eits); text-decoration: none; border-bottom: 1px solid rgba(100,220,160, 0.5); transition: all 0.2s; }
a.legal-link:hover { background-color: rgba(100,220,160, 0.1); border-bottom-color: var(--accent-eits); }



.why-us-dark-section {
    background-color: #070F2B;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.tech-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.value-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid transparent;
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 4px;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.value-panel:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--accent-eits);
    box-shadow: 0 0 30px rgba(100, 220, 160, 0.1);
}

.panel-icon {
    font-size: 2rem;
    color: var(--accent-eits);
    opacity: 0.8;
    background: rgba(100, 220, 160, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.panel-content h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.panel-content p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .value-panel { flex-direction: column; }
    .panel-icon { margin-bottom: 20px; }
    .display-4 { font-size: 2.5rem; }
    .value-panel:hover { transform: translateY(-5px); }
}
