:root {
    --ict-primary: #0b8ff3;
    --ict-primary-dark: #0875d1;
    --ict-navy: #071b41;
    --ict-text: #3e5578;
    --ict-soft-blue: #eef8ff;
    --ict-border: #cfe7fb;
    --ict-orange: #ff7a00;
    --ict-green: #20b96f;
    --ict-white: #ffffff;
    --ict-shadow: 0 18px 50px rgba(15,112,202,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Outfit", sans-serif;
    color: var(--ict-text);
    background:
        radial-gradient(circle at 96% 14%, rgba(11,143,243,.09), transparent 27%),
        radial-gradient(circle at 0% 100%, rgba(11,143,243,.11), transparent 24%),
        #fff;
}

.ict-shell {
    width: min(1515px, calc(100% - 64px));
    margin-inline: auto;
}

.ict-navbar {
    min-height: 128px;
    display: flex;
    align-items: center;
}

.ict-navbar .ict-shell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.ict-navbar .navbar-brand img {
    width: 112px;
    height: auto;
    display: block;
}

.ict-navbar .navbar-nav {
    gap: 18px;
}

.ict-navbar .nav-link {
    position: relative;
    padding: 16px 18px !important;
    color: #080f20 !important;
    font-size: 17px;
    font-weight: 600;
}

.ict-navbar .nav-link.active {
    color: var(--ict-primary) !important;
}

.ict-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 5px;
    height: 3px;
    border-radius: 10px;
    background: var(--ict-primary);
}

.ict-nav-cta,
.ict-btn-primary,
.ict-btn-outline {
    min-height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 28px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s ease;
}

.ict-nav-cta,
.ict-btn-primary {
    color: #fff;
    border: 1px solid var(--ict-primary);
    background: linear-gradient(135deg, #078cf4, #087ce9);
    box-shadow: 0 12px 26px rgba(11,143,243,.18);
}

.ict-btn-outline {
    color: var(--ict-primary);
    border: 2px solid var(--ict-primary);
    background: #fff;
}

.ict-nav-cta:hover,
.ict-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 16px 30px rgba(11,143,243,.27);
}

.ict-btn-outline:hover {
    transform: translateY(-2px);
    color: var(--ict-primary-dark);
    background: var(--ict-soft-blue);
}

.ict-hero {
    position: relative;
    padding: 25px 0 25px;
}

.ict-hero-grid {
    display: grid;
    grid-template-columns: 49% 51%;
    align-items: center;
    min-height: 590px;
}

.ict-copy {
    position: relative;
    z-index: 3;
    padding: 18px 25px 0 28px;
}

.ict-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin-bottom: 25px;
    padding: 0 22px;
    border: 1px solid #b9ddf9;
    border-radius: 999px;
    color: var(--ict-primary);
    background: rgba(238,248,255,.85);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .2px;
}

.ict-title {
    max-width: 690px;
    margin: 0;
    color: var(--ict-navy);
    font-size: clamp(48px, 4.1vw, 68px);
    line-height: 1.095;
    font-weight: 800;
    letter-spacing: -2.2px;
}

.ict-title-highlight {
    position: relative;
    display: inline-block;
    color: var(--ict-primary);
}

.ict-title-highlight::after {
    content: "";
    position: absolute;
    right: -65px;
    top: 15px;
    width: 46px;
    height: 42px;
    background:
        linear-gradient(var(--ict-orange),var(--ict-orange)) 0 8px/28px 4px no-repeat,
        linear-gradient(var(--ict-orange),var(--ict-orange)) 8px 21px/25px 4px no-repeat,
        linear-gradient(var(--ict-orange),var(--ict-orange)) 18px 34px/20px 4px no-repeat;
    transform: rotate(-15deg);
    border-radius: 8px;
}

.ict-title::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 94px;
    width: 38px;
    height: 48px;
    background:
        linear-gradient(var(--ict-orange),var(--ict-orange)) 1px 5px/27px 4px no-repeat,
        linear-gradient(var(--ict-orange),var(--ict-orange)) 2px 20px/22px 4px no-repeat,
        linear-gradient(var(--ict-orange),var(--ict-orange)) 13px 35px/18px 4px no-repeat;
    transform: rotate(28deg);
}

.ict-description {
    max-width: 650px;
    margin: 23px 0 26px;
    color: #566b89;
    font-size: 18px;
    line-height: 1.68;
}

.ict-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.ict-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-top: 34px;
}

.ict-trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 35px;
    padding: 0 22px;
    color: #182b4f;
    font-size: 14px;
    border-right: 1px solid #c8d5e4;
}

.ict-trust-item:first-child { padding-left: 0; }
.ict-trust-item:last-child { border-right: 0; }
.ict-trust-item i {
    color: var(--ict-primary);
    font-size: 24px;
}

.ict-visual {
    position: relative;
    min-height: 590px;
}

.ict-service-wrapper {
    position: relative;
    width: 60%;
    max-width: 450px;
    margin: 0 auto;
}

.ict-service-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.ict-connector {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ict-status {
    position: absolute;
    z-index: 5;
    bottom: 4%;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 195px;
    padding: 12px 20px;
    border: 1px solid #c9e3f9;
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 12px 30px rgba(22,103,171,.08);
    color: #183151;
    font-size: 15px;
    line-height: 1.3;
}

.ict-status i {
    color: var(--ict-primary);
    font-size: 31px;
}

.ict-status-left { left: -15%; }
.ict-status-right { left: 40%; }

.ict-features {
    position: relative;
    z-index: 7;
    width: min(1515px, calc(100% - 64px));
    margin: -1px auto 28px;
    padding: 28px 35px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #cae3f7;
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 40px rgba(45,121,184,.08);
}

.ict-feature {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 15px;
    min-height: 94px;
    padding: 0 26px;
    align-items: center;
    border-right: 1px solid #d6e3ef;
}

.ict-feature:first-child { padding-left: 0; }
.ict-feature:last-child {
    padding-right: 0;
    border-right: 0;
}

.ict-feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(145deg,#078ef4,#0878df);
    font-size: 28px;
}

.ict-feature h3 {
    margin: 0 0 5px;
    color: var(--ict-navy);
    font-size: 17px;
    font-weight: 700;
}

.ict-feature p {
    margin: 0;
    color: #536886;
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 1199.98px) {
    .ict-shell,
    .ict-features { width: min(1120px, calc(100% - 40px)); }
    .ict-title { font-size: 54px; }
    .ict-feature { padding: 0 15px; }
}

@media (max-width: 991.98px) {
    .ict-navbar { min-height: auto; padding: 16px 0; }
    .ict-navbar .navbar-brand img { width: 155px; }
    .ict-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .ict-copy { padding: 35px 0 0; }
    .ict-title { font-size: clamp(43px, 9vw, 62px); }
    .ict-visual { min-height: 610px; margin-top: 20px; }
    .ict-service-wrapper {
        width: 85%;
        max-width: 400px;
    }
    .ict-status {
        min-width: 145px;
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 16px;
        gap: 8px;
    }
    .ict-status i {
        font-size: 22px;
    }
    .ict-status-left {
        left: -10%;
    }
    .ict-status-right {
        left: auto;
        right: -10%;
    }
    .ict-features { grid-template-columns: repeat(2,1fr); gap: 22px 0; }
    .ict-feature:nth-child(2) { border-right: 0; }
    .ict-feature:last-child { grid-column: 1 / -1; border-top: 1px solid #d6e3ef; padding-top: 20px; }
    .ict-connector { display: none; }
}

@media (max-width: 575.98px) {
    .ict-shell,
    .ict-features { width: min(100% - 28px, 540px); }
    .ict-title { font-size: 42px; letter-spacing: -1.3px; }
    .ict-title-highlight::after,
    .ict-title::before { display: none; }
    .ict-description { font-size: 16px; }
    .ict-actions a { width: 100%; }
    .ict-trust { gap: 12px; }
    .ict-trust-item {
        width: calc(50% - 6px);
        padding: 0;
        border-right: 0;
        font-size: 13px;
    }
    .ict-visual { min-height: 500px; }
    .ict-service-wrapper {
        width: 90%;
        max-width: 320px;
    }
    .ict-status {
        min-width: 135px;
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 12px;
        gap: 6px;
    }
    .ict-status i {
        font-size: 18px;
    }
    .ict-status-left {
        left: -8%;
    }
    .ict-status-right {
        left: auto;
        right: -8%;
    }
    .ict-features { grid-template-columns: 1fr; padding: 24px; }
    .ict-feature,
    .ict-feature:first-child,
    .ict-feature:last-child {
        border: 0;
        border-bottom: 1px solid #d6e3ef;
        padding: 0 0 18px;
    }
    .ict-feature:last-child {
        grid-column: auto;
        border-bottom: 0;
        padding-bottom: 0;
    }
}
