:root {
    --bs-blue: #1F77BF;
    --bs-indigo: #6610f2;
    --bs-purple: #C5DCF0;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #1F77BF;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #1F77BF;
    --bs-secondary: #C5DCF0;
    --bs-success: #1F77BF;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 31, 119, 191;
    --bs-secondary-rgb: 197, 220, 240;
    --bs-success-rgb: 31, 119, 191;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: Mulish, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 600;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --green-50: #F3F8FD;
    --green-200: #C5DCF0;
    --green-500: #1F77BF;
    --green-600: #195F98;
    --green-700: #154C79;
    --brand-100: #E1EEF9;
    --brand-300: #9FC4E3;
    --brand-ink: #35536E;
    --brand-shadow-rgb: 31, 119, 191;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Mashead header */
.masthead {
    background-color: var(--green-50);
    padding-top: 9.5rem;
    padding-bottom: 5rem;
}

.masthead .masthead-device-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.text-green {
    color: var(--green-500) !important;
}

.btn-green {
    color: #fff !important;
    background-color: var(--green-500) !important;
    border-color: var(--green-500) !important;
}

.btn-green:hover,
.btn-green:focus,
.btn-green:active {
    color: #fff !important;
    background-color: var(--green-600) !important;
    border-color: var(--green-600) !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--brand-shadow-rgb), 0.25) !important;
}

.btn-outline-green {
    color: var(--green-500) !important;
    border-color: var(--green-500) !important;
    background-color: transparent !important;
}

.btn-outline-green:hover,
.btn-outline-green:focus,
.btn-outline-green:active {
    color: #fff !important;
    background-color: var(--green-500) !important;
    border-color: var(--green-500) !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--brand-shadow-rgb), 0.25) !important;
}

.masthead .masthead-device-mockup .circle {
    position: absolute;
    fill: url(#circleGradient);
    width: 70%;
}

.masthead .masthead-device-mockup .circle .gradient-start-color {
    stop-color: var(--green-50);
}

.masthead .masthead-device-mockup .circle .gradient-end-color {
    stop-color: var(--green-200);
}

.masthead .masthead-device-mockup .shape-1 {
    position: absolute;
    height: 1rem;
    width: 1rem;
    transform: rotate(-10deg);
    fill: var(--green-500);
    bottom: 95%;
    left: 10%;
}

.masthead .masthead-device-mockup .shape-2 {
    position: absolute;
    height: 0.75rem;
    width: 0.75rem;
    fill: var(--green-500);
    top: 95%;
    right: 10%;
}



@media (min-width: 576px) {
    .masthead .masthead-device-mockup .circle {
        width: 70%;
        display: block;
    }

}

@media (min-width: 768px) {
    .masthead .masthead-device-mockup .circle {
        width: 60%;
    }

}

@media (min-width: 992px) {
    .masthead .masthead-device-mockup .circle {
        width: 90%;
    }

}

@media (min-width: 1200px) {
    .masthead .masthead-device-mockup .circle {
        width: 75%;
    }

}

@media (min-width: 1400px) {
    .masthead .masthead-device-mockup .circle {
        width: 70%;
    }

}


.bg-gradient-primary-to-secondary {
    background: linear-gradient(45deg, var(--green-50), var(--brand-100), var(--green-200)) !important;
}

.text-gradient {
    background: -webkit-linear-gradient(var(--green-500), var(--brand-300));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-title {
    color: var(--green-700);
}

.testimonial-text {
    color: var(--brand-ink);
}

.testimonial-icon {
    color: var(--green-500);
}

/* pp-metrics */
.pp-metrics {
    --bg: #f7faff;
    --panel: #ffffff;
    --line: rgba(20, 74, 173, 0.12);
    --text: #10254a;
    --muted: #5b6f95;
    --accent: #0f56d9;
    --accent-soft: #d9e8ff;
    position: relative;
    overflow: hidden;
    padding: 110px 24px;
    background:
        radial-gradient(circle at top left, rgba(72, 136, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    color: var(--text);
}

.pp-metrics__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pp-metrics__head {
    max-width: 760px;
    margin-bottom: 48px;
}

.pp-metrics__head h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.pp-metrics__head p:last-child {
    margin: 0;
    max-width: 64ch;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
}

.pp-metrics__rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(15, 86, 217, 0.05);
}

.pp-stat {
    position: relative;
    min-height: 380px;
    padding: 34px 28px 32px;
    border-right: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.95) 100%);
    backdrop-filter: blur(8px);
}

.pp-stat:last-child {
    border-right: 0;
}

.pp-stat__ghost {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(15, 86, 217, 0.06);
    pointer-events: none;
}

.pp-stat__label {
    position: relative;
    margin: 0 0 20px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.pp-stat__tag {
    position: relative;
    margin: 0 0 18px;
    padding-left: 18px;
    color: var(--accent);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0;
}

.pp-stat__tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.28em;
    width: 5px;
    height: 1.1em;
    border-radius: 999px;
    background: var(--accent);
}

.pp-stat__title {
    font-size: 1.25rem;
    line-height: 1.45;
}

.pp-stat {
    min-height: 340px;
}

.pp-stat__value {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 18px;
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 0.9;
    color: var(--accent);
    text-shadow: 0 10px 24px rgba(15, 86, 217, 0.08);
}

.pp-stat__suffix {
    margin-top: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.pp-stat__title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #11306a;
}

.pp-stat__desc {
    margin: 0;
    max-width: 30ch;
    line-height: 1.85;
    color: var(--muted);
}

.pp-stat::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: 22px;
    width: 68px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(15, 86, 217, 0) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s ease 0.2s;
}

.pp-stat.is-visible::after {
    transform: scaleX(1);
}

@media (max-width: 900px) {
    .pp-metrics {
        padding: 88px 20px;
    }

    .pp-metrics__rail {
        grid-template-columns: 1fr;
    }

    .pp-stat {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .pp-stat:last-child {
        border-bottom: 0;
    }

    .pp-stat__desc {
        max-width: none;
    }
}

/* itg-triangle */
/* .itg-triangle {
    --bg: #f7faff;
    --panel: rgba(255, 255, 255, 0.88);
    --line: rgba(15, 86, 217, 0.4);
    --text: #10254a;
    --muted: #5b6f95;
    --accent: #0f56d9;
    --accent-2: #2d6de8;
    padding: 120px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(72, 136, 255, 0.1), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    color: var(--text);
}

.itg-triangle__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.itg-triangle__head {
    max-width: 760px;
    margin-bottom: 48px;
}

.itg-triangle__head h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
}

.itg-triangle__head p:last-child {
    margin: 0;
    line-height: 1.8;
    color: var(--muted);
}

.itg-triangle__stage {
    position: relative;
    min-height: 760px;
}

.itg-triangle__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.itg-triangle__lines path {
    fill: none;
    stroke: var(--line);
    stroke-width: 3;
    stroke-dasharray: 10 12;
    stroke-linecap: round;
    animation: triangleDash 16s linear infinite;
}

.itg-node {
    position: absolute;
    width: min(320px, calc(100% - 48px));
    padding: 30px 26px;
    border: 1px solid rgba(15, 86, 217, 0.14);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.98) 100%);
    box-shadow: 0 18px 40px rgba(15, 86, 217, 0.08);
    backdrop-filter: blur(12px);
}

.itg-node--top {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.itg-node--left {
    left: 70px;
    bottom: 70px;
}

.itg-node--right {
    right: 70px;
    bottom: 70px;
}

.itg-node__kicker {
    margin: 0 0 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-2);
}

.itg-node h3 {
    margin: 0 0 12px;
    font-size: 1.65rem;
    color: #11306a;
}

.itg-node p:last-child {
    margin: 0;
    line-height: 1.8;
    color: var(--muted);
}

.itg-link {
    position: absolute;
    padding: 10px 14px;
    border: 1px solid rgba(15, 86, 217, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    color: var(--accent-2);
    box-shadow: 0 12px 24px rgba(15, 86, 217, 0.08);
    animation: floatTag 4.6s ease-in-out infinite;
}

.itg-link--1 {
    top: 310px;
    left: 280px;
}

.itg-link--2 {
    top: 310px;
    right: 280px;
    animation-delay: 0.8s;
}

.itg-link--3 {
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.4s;
}

@keyframes triangleDash {
    to {
        stroke-dashoffset: -220;
    }
}

@keyframes floatTag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 980px) {
    .itg-triangle {
        padding: 88px 20px;
    }

    .itg-triangle__stage {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .itg-triangle__lines,
    .itg-link {
        display: none;
    }

    .itg-node {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        transform: none;
    }
} */

/* === */
/* Integration glass triangle */
.itg-triangle {
    --itg-primary: #368bd8;
    --itg-primary-light: #8fd4fa;
    --itg-cyan: #4fbfc8;
    --itg-text: #213d5c;
    --itg-muted: #657e98;
    padding: 110px 24px 140px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 65%, rgba(102, 192, 239, 0.13), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    color: var(--itg-text);
}

.itg-triangle__inner {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.itg-triangle__head {
    max-width: 760px;
    margin-bottom: 80px;
}

.itg-triangle__head h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.12;
}

.itg-triangle__head p {
    margin: 0;
    line-height: 1.85;
    color: var(--itg-muted);
}

.itg-triangle__stage {
    position: relative;
    width: min(900px, calc(100% - 100px));
    height: 620px;
    margin: 0 auto;
}

.itg-triangle__graphic {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 28px 35px rgba(54, 139, 216, 0.12));
}

.itg-triangle__glass {
    fill: url(#itgGlassFill);
    stroke: url(#itgLineGradient);
    stroke-width: 5;
    stroke-linejoin: round;
}

.itg-triangle__inner-shape {
    fill: rgba(255, 255, 255, 0.38);
    stroke: rgba(88, 173, 226, 0.28);
    stroke-width: 2;
    stroke-linejoin: round;
}

.itg-triangle__path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.94);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 75 700;
    filter: url(#itgGlow);
    animation: itgLightFlow 5s linear infinite;
}

.itg-triangle__path--delay-1 {
    animation-delay: -1.7s;
}

.itg-triangle__path--delay-2 {
    animation-delay: -3.4s;
}

.itg-triangle__center {
    position: absolute;
    z-index: 3;
    top: 54%;
    left: 50%;
    width: 230px;
    padding: 25px 20px;
    border: 1px solid rgba(82, 165, 221, 0.22);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 22px 50px rgba(68, 148, 204, 0.14),
        inset 0 1px rgba(255, 255, 255, 0.95);
    text-align: center;
    backdrop-filter: blur(16px);
    transform: translate(-50%, -50%);
}

.itg-triangle__center::before {
    content: "";
    position: absolute;
    inset: -9px;
    z-index: -1;
    border: 1px dashed rgba(69, 161, 218, 0.32);
    border-radius: 35px;
    animation: itgCenterPulse 3.5s ease-in-out infinite;
}

.itg-triangle__center span {
    display: block;
    margin-bottom: 7px;
    color: var(--itg-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.itg-triangle__center strong {
    display: block;
    margin-bottom: 8px;
    color: var(--itg-text);
    font-size: 1.3rem;
}

.itg-triangle__center small {
    color: var(--itg-muted);
    font-size: 0.78rem;
}

.itg-flow-label {
    position: absolute;
    z-index: 4;
    padding: 8px 14px;
    border: 1px solid rgba(65, 155, 215, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--itg-primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(62, 144, 201, 0.1);
    backdrop-filter: blur(8px);
}

.itg-flow-label--left {
    top: 45%;
    left: 19%;
    transform: rotate(-55deg);
}

.itg-flow-label--right {
    top: 45%;
    right: 19%;
    transform: rotate(55deg);
}

.itg-flow-label--bottom {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
}

.itg-point {
    position: absolute;
    z-index: 6;
    width: 160px;
    height: 160px;
    outline: none;
}

.itg-point--top {
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
}

.itg-point--left {
    left: -28px;
    bottom: -32px;
}

.itg-point--right {
    right: -28px;
    bottom: -32px;
}

.itg-point__image {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 8px;
    border: 1px solid rgba(72, 157, 216, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 22px 48px rgba(71, 151, 207, 0.2),
        0 0 0 8px rgba(255, 255, 255, 0.72),
        0 0 0 10px rgba(91, 181, 228, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.itg-point__image::after {
    content: "";
    position: absolute;
    inset: -14px;
    z-index: -1;
    border: 1px dashed rgba(74, 171, 220, 0.28);
    border-radius: 50%;
    animation: itgOrbit 18s linear infinite;
}

.itg-point__image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.itg-point:hover .itg-point__image,
.itg-point:focus-visible .itg-point__image {
    transform: translateY(-9px) scale(1.05);
    box-shadow:
        0 30px 58px rgba(71, 151, 207, 0.26),
        0 0 0 8px #fff,
        0 0 0 14px rgba(92, 189, 224, 0.14);
}

.itg-point:hover .itg-point__image img,
.itg-point:focus-visible .itg-point__image img {
    transform: scale(1.08);
}

.itg-point__tooltip {
    position: absolute;
    z-index: 8;
    width: 300px;
    padding: 22px 24px;
    border: 1px solid rgba(74, 157, 211, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 55px rgba(57, 130, 181, 0.16);
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.97);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.itg-point--top .itg-point__tooltip {
    top: calc(100% + 22px);
    left: 50%;
    transform: translate(-50%, 12px) scale(0.97);
}

.itg-point--left .itg-point__tooltip {
    left: calc(100% + 24px);
    bottom: 25px;
}

.itg-point--right .itg-point__tooltip {
    right: calc(100% + 24px);
    bottom: 25px;
}

.itg-point:hover .itg-point__tooltip,
.itg-point:focus-visible .itg-point__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.itg-point--top:hover .itg-point__tooltip,
.itg-point--top:focus-visible .itg-point__tooltip {
    transform: translate(-50%, 0) scale(1);
}

.itg-point__kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--itg-primary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.itg-point__tooltip h3 {
    margin: 0 0 8px;
    color: var(--itg-text);
    font-size: 1.3rem;
}

.itg-point__tooltip p {
    margin: 0;
    color: var(--itg-muted);
    line-height: 1.75;
}

@keyframes itgLightFlow {
    to {
        stroke-dashoffset: -775;
    }
}

@keyframes itgCenterPulse {

    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes itgOrbit {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {

    .itg-triangle__path,
    .itg-triangle__center::before,
    .itg-point__image::after {
        animation: none;
    }
}

@media (max-width: 768px) {
    .itg-triangle {
        padding: 80px 20px;
    }

    .itg-triangle__head {
        margin-bottom: 42px;
    }

    .itg-triangle__stage {
        width: 100%;
        height: auto;
        display: grid;
        gap: 20px;
    }

    .itg-triangle__graphic,
    .itg-triangle__center,
    .itg-flow-label {
        display: none;
    }

    .itg-point,
    .itg-point--top,
    .itg-point--left,
    .itg-point--right {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: center;
        gap: 18px;
        padding: 18px;
        border: 1px solid rgba(74, 157, 211, 0.14);
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 14px 32px rgba(57, 130, 181, 0.09);
        transform: none;
    }

    .itg-point__image {
        width: 90px;
        height: 90px;
        padding: 5px;
        box-shadow: 0 12px 24px rgba(71, 151, 207, 0.14);
    }

    .itg-point__image::after {
        display: none;
    }

    .itg-point__tooltip,
    .itg-point--top .itg-point__tooltip,
    .itg-point--left .itg-point__tooltip,
    .itg-point--right .itg-point__tooltip {
        position: static;
        width: auto;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* features */
.icon-feature {
    font-size: 3rem;
    /* transition: all .5s linear !important; */
}

.icon-box {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all .3s ease-in;
    background-color: #fff !important;
    border: 1px solid var(--green-200);
}

.icon-box:hover {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--brand-100) 50%, var(--green-200) 100%) !important;
    box-shadow: 0 8px 18px rgba(var(--brand-shadow-rgb), 0.18);
    border-color: var(--green-200);
    transform: translateY(-2px);
}

.icon-box:hover .icon-feature {
    color: var(--green-700) !important;
    -webkit-text-fill-color: initial;
    background: none !important;
}

@media (min-width: 992px) {
    .icon-box {
        width: 5.5rem;
        height: 5.5rem;
    }
}

.features-device-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.features-device-mockup .circle {
    position: absolute;
    left: 0;
    fill: url(#circleGradient);
    width: 70%;
    display: none;
}

.features-device-mockup .circle .gradient-start-color {
    stop-color: var(--green-500);
}

.features-device-mockup .circle .gradient-end-color {
    stop-color: var(--green-200);
}

.features-device-mockup .shape-1 {
    position: absolute;
    height: 1rem;
    width: 1rem;
    transform: rotate(10deg);
    fill: var(--green-500);
    top: 15%;
    right: 10%;
}

.features-device-mockup .shape-2 {
    position: absolute;
    height: 0.75rem;
    width: 0.75rem;
    fill: var(--green-500);
    bottom: 15%;
    left: -10%;
}

.features-device-mockup .device-wrapper {
    max-width: 10rem;
}

@media (min-width: 576px) {
    .features-device-mockup .circle {
        width: 70%;
        display: block;
        left: auto;
    }

    .features-device-mockup .device-wrapper {
        max-width: 12.5rem;
    }
}

@media (min-width: 768px) {
    .features-device-mockup .circle {
        width: 60%;
        left: auto;
    }

    .features-device-mockup .device-wrapper {
        max-width: 15rem;
    }
}

@media (min-width: 992px) {
    .features-device-mockup .circle {
        width: 90%;
        left: -25%;
    }

    .features-device-mockup .shape-1 {
        top: 5%;
        right: -15%;
    }

    .features-device-mockup .shape-2 {
        bottom: 10%;
        left: -10%;
    }

    .features-device-mockup .device-wrapper {
        max-width: 15rem;
        margin-left: auto;
    }
}

@media (min-width: 1200px) {
    .features-device-mockup .circle {
        width: 75%;
        left: 0;
    }

    .features-device-mockup .shape-2 {
        bottom: 15%;
        left: -10%;
    }

    .features-device-mockup .device-wrapper {
        max-width: 15rem;
    }
}

@media (min-width: 1400px) {
    .features-device-mockup .circle {
        width: 80%;
        left: 0;
    }

    .features-device-mockup .device-wrapper {
        max-width: 17rem;
    }
}

/* Plans */

.plan-switch-wrap {
    display: flex;
    justify-content: center;
}

.plan-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-200) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.plan-switch-btn {
    min-width: 220px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--brand-ink);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 12px 28px;
    transition: all .25s ease;
}

.plan-switch-btn.active {
    background: #fff;
    color: var(--green-700);
    box-shadow: 0 8px 18px rgba(var(--brand-shadow-rgb), 0.18);
}

.plan-panel {
    display: none;
}

.plan-panel.active {
    display: block;
}

.pricing-style-fourteen {
    border: 1px solid var(--green-200);
    border-radius: 22px;
    margin-top: 10px;
    background: #fff;
    transition: all .3s ease;
    padding: 42px 28px;
    text-align: center;
    z-index: 0;
    height: 100%;
}

.pricing-style-fourteen.middle,
.pricing-style-fourteen:hover {
    border-color: var(--green-200);
    box-shadow: 0 14px 32px rgba(var(--brand-shadow-rgb), 0.14);
    transform: translateY(-4px);
}

.pricing-style-fourteen.middle {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.pricing-style-custom {
    background: linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
}

.pricing-style-fourteen .price h2 {
    color: var(--green-700);
}

.pricing-style-fourteen .table-list li {
    position: relative;
    margin-bottom: 12px;
    color: var(--brand-ink);
    text-align: left;
    font-weight: 500;
    line-height: 1.65;
}

.pricing-style-fourteen .table-list li:before {
    box-sizing: border-box;
    font-family: "Font Awesome 5 Free";
    content: '\f058';
    margin: 0 8px 0 -15px;
    color: var(--green-500);
}

@media (max-width: 991.98px) {
    .plan-switch {
        width: 100%;
        flex-direction: column;
        border-radius: 24px;
    }

    .plan-switch-btn {
        width: 100%;
        min-width: 0;
    }
}

.table-content ul.table-list {
    margin: 0;
    list-style-type: none;
}

.pricing-style-fourteen .table-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 22px;
    color: var(--brand-ink);
    text-align: left;
    font-weight: 500;
    line-height: 1.65;
    list-style: none;
}

.pricing-style-fourteen .table-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    box-sizing: border-box;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f058';
    color: var(--green-500);
    margin: 0;
}

.serve-process-section {
    background:
        radial-gradient(circle at top left, rgba(197, 220, 240, 0.22), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
    border-bottom: 1px solid #d9e7f3;
}

.serve-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--green-50);
    color: var(--green-600);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.serve-steps-wrap {
    position: relative;
}

.process-step-card {
    position: relative;
    padding: 30px 22px 26px;
    border: 1px solid var(--green-200);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(var(--brand-shadow-rgb), 0.08);
    text-align: center;
    transition: all .25s ease;
}

.process-step-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-200);
    box-shadow: 0 16px 32px rgba(var(--brand-shadow-rgb), 0.14);
}

.process-step-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-200) 100%);
    color: var(--green-600);
    font-size: 2rem;
}

.process-step-no {
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brand-ink);
}

.process-step-title {
    margin-bottom: 10px;
    color: var(--green-700);
    font-size: 1.4rem;
    font-weight: 800;
}

.process-step-text {
    color: var(--brand-ink);
    line-height: 1.7;
}

.serve-form-card {
    padding: 34px;
    border: 1px solid var(--green-200);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 253, 0.96) 100%);
    box-shadow: 0 18px 40px rgba(var(--brand-shadow-rgb), 0.1);
}

.serve-form-side {
    height: 100%;
    padding: 10px 8px 10px 0;
}

.serve-form-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--green-200);
    color: var(--green-500);
    font-size: 0.88rem;
    font-weight: 700;
}

.serve-form-title {
    margin-bottom: 14px;
    color: var(--green-700);
    font-size: 2rem;
    font-weight: 800;
}

.serve-form-desc {
    margin-bottom: 20px;
    color: var(--brand-ink);
    line-height: 1.8;
}

.serve-form-points {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--brand-ink);
    line-height: 1.9;
}

.serve-form-points li+li {
    margin-top: 6px;
}

.serve-label {
    margin-bottom: 10px;
    color: var(--green-700);
    font-weight: 700;
}

.serve-control {
    min-height: 56px;
    border: 1px solid var(--green-200);
    border-radius: 16px;
    background-color: #ffffff;
    color: var(--brand-ink);
    box-shadow: none !important;
}

.serve-control:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 0.2rem rgba(var(--brand-shadow-rgb), 0.16) !important;
}

.serve-option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 16px 18px;
    border: 1px solid var(--green-200);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.serve-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-ink);
    font-weight: 500;
}

.serve-check input {
    accent-color: var(--green-500);
}

.serve-form-note {
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--green-50);
    color: var(--brand-ink);
    line-height: 1.8;
}

.serve-submit-btn {
    min-width: 220px;
}

@media (max-width: 991.98px) {
    .serve-form-card {
        padding: 24px;
    }

    .serve-form-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 767.98px) {
    .process-step-card {
        padding: 24px 18px 22px;
    }

    .process-step-title {
        font-size: 1.15rem;
    }

    .serve-check-grid {
        grid-template-columns: 1fr;
    }

    .serve-submit-btn {
        width: 100%;
    }
}

.system-story-list {
    margin-top: 1rem;
}

.system-story-item:last-child {
    margin-bottom: 0 !important;
}

.system-story-visual {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-story-orb {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-500) 0%, #5b9fd5 45%, var(--green-200) 100%);
    opacity: 0.18;
}

.system-story-card {
    position: relative;
    z-index: 1;
    width: min(100%, 320px);
    min-height: 210px;
    padding: 1.75rem 1.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(var(--brand-shadow-rgb), 0.12);
    box-shadow: 0 18px 36px rgba(var(--brand-shadow-rgb), 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.system-story-icon {
    font-size: 4rem;
    line-height: 1;
    color: var(--green-500);
    margin-bottom: 1rem;
}

.system-story-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--green-50);
    color: var(--green-700);
    font-weight: 700;
    border: 1px solid rgba(var(--brand-shadow-rgb), 0.16);
}

.system-story-copy {
    max-width: 650px;
}

.system-story-copy h3 {
    color: var(--green-700);
    line-height: 1.3;
}

.system-story-copy p {
    color: var(--brand-ink) !important;
    line-height: 1.9;
    font-size: 1.04rem;
}

.module-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--green-50);
    color: var(--green-600);
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid rgba(var(--brand-shadow-rgb), 0.14);
}

.partner-showcase {
    border: 1px solid rgba(var(--brand-shadow-rgb), 0.12);
}

.partner-placeholder-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.partner-placeholder {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 20px;
    border: 1.5px dashed rgba(var(--brand-shadow-rgb), 0.26);
    background: linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
    color: var(--brand-ink);
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (max-width: 991.98px) {
    .partner-placeholder-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .partner-placeholder-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .system-story-visual {
        min-height: 240px;
    }

    .system-story-card {
        min-height: 190px;
    }
}

@media (max-width: 575.98px) {
    .system-story-orb {
        width: 180px;
        height: 180px;
    }

    .system-story-card {
        min-height: 170px;
        padding: 1.4rem 1.2rem;
    }

    .system-story-icon {
        font-size: 3.2rem;
    }

}

.contact-section {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    /* margin-top: 10rem; */
    background: linear-gradient(135deg, #f8fbfe 0%, #e6f0f8 52%, var(--green-200) 100%);
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../../../images/onepage/bg01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: -1;
}

.contact-title {
    color: var(--green-700);
}

.contact-text {
    color: var(--brand-ink);
}

.contact-icon-box {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff !important;
    border: 1px solid var(--green-200);
    box-shadow: 0 10px 24px rgba(var(--brand-shadow-rgb), 0.14);
}

.contact-icon {
    color: var(--green-500) !important;
    font-size: 2.2rem;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.contact-item-title {
    color: var(--green-700);
    font-weight: 700;
}

.contact-item-text {
    color: var(--brand-ink);
}

#contact a.text-decoration-none {
    color: inherit;
}

#contact a.text-decoration-none:hover .contact-icon-box {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-200) 100%) !important;
    border-color: var(--green-200);
    transform: translateY(-2px);
    transition: all .25s ease;
}

footer.bg-black {
    background-color: #173A5B !important;
}

footer.bg-black .text-white-50,
footer.bg-black .small {
    color: #D9E8F4 !important;
}

#case .card {
    background: transparent;
    border: none;
    box-shadow: none;
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 180px;
        height: auto;
    }
}