/* =========================================================
   REVFIDES RCM SOLUTIONS
   HOSTINGER-FRIENDLY CSS
========================================================= */

:root {

    --navy: #0c192e;
    --navy-2: #101f38;
    --navy-3: #162b49;

    --blue: #2d8cff;
    --blue-light: #65b7ff;

    --teal: #20c7b8;

    --white: #ffffff;
    --off-white: #f7faff;

    --text: #17253a;
    --muted: #65738a;

    --border: #dfe7f1;

    --shadow:
        0 20px 60px rgba(12, 25, 46, 0.10);

    --shadow-dark:
        0 25px 70px rgba(0, 0, 0, 0.25);

    --radius: 20px;
    --radius-small: 12px;

    --container: 1180px;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}


body.modal-open {
    overflow: hidden;
}


button,
a {
    font: inherit;
}


button {
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


img,
svg {
    max-width: 100%;
}


.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}


.section {
    padding: 110px 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    padding: 18px 0;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;

}


.site-header.scrolled {

    background:
        rgba(12, 25, 46, 0.94);

    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.18);

    padding: 12px 0;

}


.header-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: var(--white);

}


.logo-mark {

    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--teal)
        );

    font-size: 22px;
    font-weight: 900;

    box-shadow:
        0 10px 30px rgba(45, 140, 255, 0.28);

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo-text strong {
    font-size: 19px;
    letter-spacing: -0.5px;
}


.logo-text small {

    margin-top: 5px;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: 0.7;

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 24px;

    color: rgba(255,255,255,0.84);

    font-size: 14px;

}


.main-nav a {

    transition:
        color 0.2s ease,
        opacity 0.2s ease;

}


.main-nav a:hover {
    color: var(--white);
}


.nav-cta {

    padding: 11px 17px;

    border: 1px solid
        rgba(255,255,255,0.2);

    border-radius: 10px;

    background:
        rgba(255,255,255,0.08);

}


.mobile-menu-btn {

    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid
        rgba(255,255,255,0.2);

    background:
        rgba(255,255,255,0.08);

    border-radius: 10px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.mobile-menu-btn span {

    width: 20px;
    height: 2px;

    background: white;

    transition: 0.25s ease;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 850px;

    display: flex;

    align-items: center;

    padding:
        160px 0
        90px;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(45,140,255,0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 25% 80%,
            rgba(32,199,184,0.12),
            transparent 28%
        ),
        var(--navy);

    color: var(--white);

    overflow: hidden;

}


.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

}


.glow-one {

    width: 400px;
    height: 400px;

    background:
        rgba(45,140,255,0.12);

    right: -100px;
    top: 120px;

}


.glow-two {

    width: 300px;
    height: 300px;

    background:
        rgba(32,199,184,0.10);

    left: -100px;
    bottom: 50px;

}


.hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 70px;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 12px;

    border:
        1px solid
        rgba(255,255,255,0.13);

    border-radius: 999px;

    background:
        rgba(255,255,255,0.05);

    color:
        rgba(255,255,255,0.75);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

}


.pulse-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--teal);

    box-shadow:
        0 0 0 5px
        rgba(32,199,184,0.12);

}


.hero h1 {

    margin-top: 25px;

    max-width: 760px;

    font-size:
        clamp(
            44px,
            5.2vw,
            76px
        );

    line-height: 1.02;

    letter-spacing: -3.5px;

}


.hero h1 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            var(--blue-light),
            var(--teal)
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}


.hero-text {

    max-width: 650px;

    margin-top: 22px;

    color:
        rgba(255,255,255,0.68);

    font-size: 17px;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 20px;

    border-radius: 12px;

    border: 1px solid transparent;

    font-size: 14px;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;

}


.btn:hover {

    transform: translateY(-2px);

}


.btn-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #1d72dc
        );

    box-shadow:
        0 15px 35px
        rgba(45,140,255,0.25);

}


.btn-primary:hover {

    box-shadow:
        0 20px 45px
        rgba(45,140,255,0.35);

}


.btn-secondary {

    color: white;

    background:
        rgba(255,255,255,0.06);

    border-color:
        rgba(255,255,255,0.16);

}


.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 42px;

}


.hero-trust div {

    display: flex;

    flex-direction: column;

}


.hero-trust strong {

    font-size: 12px;

    color:
        var(--blue-light);

}


.hero-trust span {

    margin-top: 2px;

    font-size: 11px;

    color:
        rgba(255,255,255,0.48);

}


/* =========================================================
   DASHBOARD
========================================================= */

.hero-dashboard {

    perspective: 1000px;

}


.dashboard-window {

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 22px;

    background:
        rgba(255,255,255,0.055);

    backdrop-filter: blur(22px);

    box-shadow:
        var(--shadow-dark);

    overflow: hidden;

    transform:
        rotateY(-4deg)
        rotateX(2deg);

    transition:
        transform 0.5s ease;

}


.dashboard-window:hover {

    transform:
        rotateY(0)
        rotateX(0);

}


.dashboard-top {

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 17px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);

}


.window-dot {

    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 5px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.25);

}


.dashboard-label {

    font-size: 8px;

    letter-spacing: 1.8px;

    color:
        rgba(255,255,255,0.45);

}


.dashboard-body {

    padding: 24px;

}


.dashboard-heading {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;

}


.dashboard-heading small {

    color:
        rgba(255,255,255,0.42);

    font-size: 10px;

}


.dashboard-heading h3 {

    margin-top: 4px;

    font-size: 22px;

}


.live-pill {

    padding: 7px 9px;

    border-radius: 8px;

    background:
        rgba(32,199,184,0.10);

    color:
        var(--teal);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.metric-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 10px;

    margin-top: 20px;

}


.metric-card {

    padding: 14px;

    border:
        1px solid
        rgba(255,255,255,0.07);

    border-radius: 12px;

    background:
        rgba(255,255,255,0.035);

}


.metric-card span {

    display: block;

    color:
        rgba(255,255,255,0.46);

    font-size: 10px;

}


.metric-card strong {

    display: block;

    margin-top: 4px;

    font-size: 24px;

}


.metric-card small {

    color:
        var(--teal);

    font-size: 8px;

}


.dashboard-chart {

    margin-top: 18px;

    padding: 15px;

    border:
        1px solid
        rgba(255,255,255,0.07);

    border-radius: 14px;

    background:
        rgba(255,255,255,0.025);

}


.chart-heading {

    display: flex;

    justify-content: space-between;

    color:
        rgba(255,255,255,0.65);

    font-size: 10px;

}


.chart-heading small {

    color:
        rgba(255,255,255,0.35);

}


.line-chart {

    margin-top: 10px;

    width: 100%;

}


.chart-axis,
.chart-grid {

    stroke:
        rgba(255,255,255,0.10);

    stroke-width: 1;

}


.chart-line {

    fill: none;

    stroke:
        var(--blue-light);

    stroke-width: 4;

    stroke-linecap: round;

    stroke-linejoin: round;

}


.line-chart circle {

    fill:
        var(--teal);

}


.mini-status-row {

    display: flex;

    justify-content: space-between;

    margin-top: 15px;

    color:
        rgba(255,255,255,0.38);

    font-size: 9px;

}


.mini-status-row i {

    display: inline-block;

    width: 6px;
    height: 6px;

    margin-right: 4px;

    border-radius: 50%;

    background:
        var(--teal);

}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {

    max-width: 780px;

    margin-bottom: 50px;

}


.section-heading.centered {

    margin-left: auto;
    margin-right: auto;

    text-align: center;

}


.section-kicker {

    display: inline-block;

    margin-bottom: 13px;

    color:
        var(--blue);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

}


.section-heading h2 {

    font-size:
        clamp(
            34px,
            4vw,
            54px
        );

    line-height: 1.08;

    letter-spacing: -2px;

}


.section-heading h2 span {

    display: inline;

    color:
        var(--blue);

}


.section-heading p {

    margin-top: 18px;

    color:
        var(--muted);

    font-size: 16px;

}


/* =========================================================
   SOLUTION CARDS
========================================================= */

.problem-intro {

    background:
        var(--off-white);

}


.solution-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.solution-card {

    position: relative;

    padding: 32px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:
        var(--white);

    box-shadow:
        var(--shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.solution-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 25px 65px
        rgba(12,25,46,0.13);

}


.solution-number {

    position: absolute;

    top: 22px;
    right: 24px;

    color:
        #dbe5f0;

    font-size: 35px;

    font-weight: 900;

}


.solution-icon {

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background:
        rgba(45,140,255,0.08);

    color:
        var(--blue);

    font-size: 22px;

    font-weight: 900;

}


.solution-card h3 {

    margin-top: 24px;

    font-size: 22px;

}


.solution-card p {

    margin-top: 10px;

    color:
        var(--muted);

    font-size: 14px;

}


.text-button {

    margin-top: 18px;

    border: 0;

    background: none;

    color:
        var(--blue);

    font-weight: 800;

    font-size: 13px;

}


.text-button:hover {

    text-decoration:
        underline;

}


/* =========================================================
   FRICTION
========================================================= */

.friction-section {

    background:
        var(--navy);

    color: white;

    overflow: hidden;

}


.friction-section .section-heading p {

    color:
        rgba(255,255,255,0.58);

}


.friction-window {

    width: 100%;

    overflow: hidden;

    position: relative;

}


.friction-track {

    display: flex;

    width: max-content;

    gap: 15px;

    padding:
        15px 0 25px;

    animation:
        frictionMove
        42s
        linear
        infinite;

}


.friction-track:hover,
.friction-track:focus-within {

    animation-play-state:
        paused;

}


@keyframes frictionMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


.friction-card {

    width: 245px;
    min-width: 245px;

    padding: 23px;

    text-align: left;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 16px;

    background:
        rgba(255,255,255,0.055);

    color: white;

    transition:
        transform 0.25s ease,
        background 0.25s ease;

}


.friction-card:hover {

    transform:
        translateY(-5px);

    background:
        rgba(255,255,255,0.10);

}


.friction-card span {

    display: block;

    color:
        var(--teal);

    font-size: 10px;

    font-weight: 900;

}


.friction-card strong {

    display: block;

    margin-top: 10px;

    font-size: 18px;

}


.friction-card small {

    display: block;

    margin-top: 5px;

    color:
        rgba(255,255,255,0.43);

}


.friction-controls {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    margin-top: 25px;

    color:
        rgba(255,255,255,0.45);

    font-size: 11px;

}


.flow-control {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,0.15);

    border-radius: 50%;

    background:
        rgba(255,255,255,0.06);

    color: white;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.flow-control:hover {

    background:
        rgba(255,255,255,0.12);

    transform:
        scale(1.05);

}


/* =========================================================
   WORKFLOW
========================================================= */

.workflow-section {

    background:
        var(--off-white);

}


.workflow-flow {

    display: flex;

    align-items: stretch;

    gap: 10px;

    overflow-x: auto;

    padding: 10px 3px 20px;

    scrollbar-width: thin;

}


.workflow-step {

    position: relative;

    flex:
        0 0 165px;

    min-height: 205px;

    padding: 23px 18px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    text-align: left;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    background:
        var(--white);

    box-shadow:
        0 10px 35px
        rgba(12,25,46,0.06);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;

}


.workflow-step:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(45,140,255,0.35);

    box-shadow:
        0 20px 45px
        rgba(12,25,46,0.11);

}


.step-number {

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

    color:
        var(--blue);

}


.step-icon {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    margin-top: 18px;

    border-radius: 12px;

    background:
        rgba(45,140,255,0.08);

    color:
        var(--blue);

    font-weight: 900;

}


.workflow-step strong {

    margin-top: 16px;

    font-size: 15px;

    line-height: 1.25;

}


.workflow-step small {

    margin-top: 7px;

    color:
        var(--muted);

    font-size: 11px;

}


.flow-arrow {

    align-self: center;

    color:
        #aab8ca;

    font-size: 24px;

    flex:
        0 0 auto;

}


.workflow-controls {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-top: 20px;

}


.workflow-progress {

    width: 180px;
    height: 4px;

    overflow: hidden;

    border-radius: 99px;

    background:
        #dce4ee;

}


.progress-fill {

    display: block;

    height: 100%;

    width: 20%;

    border-radius: inherit;

    background:
        var(--blue);

    transition:
        width 0.3s ease;

}


/* =========================================================
   COMPARISON
========================================================= */

.managed-section {

    background:
        var(--white);

}


.comparison {

    display: grid;

    grid-template-columns:
        1fr
        110px
        1fr;

    align-items: stretch;

    gap: 20px;

}


.comparison-column {

    padding: 30px;

    border-radius: 20px;

}


.before-column {

    background:
        #f5f7fa;

    border:
        1px solid
        #e6ebf2;

}


.after-column {

    background:
        linear-gradient(
            145deg,
            #0c192e,
            #162d4c
        );

    color: white;

}


.comparison-title {

    padding-bottom: 18px;

    border-bottom:
        1px solid
        rgba(12,25,46,0.08);

    font-weight: 800;

}


.after-column .comparison-title {

    border-bottom-color:
        rgba(255,255,255,0.1);

}


.comparison-title span {

    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    letter-spacing: 2px;

    color:
        var(--blue);

}


.comparison-item {

    display: flex;

    gap: 12px;

    padding: 15px 0;

    border-bottom:
        1px solid
        rgba(12,25,46,0.06);

    font-size: 13px;

}


.after-column .comparison-item {

    border-bottom-color:
        rgba(255,255,255,0.07);

}


.comparison-item span {

    color:
        var(--blue);

    font-weight: 900;

}


.comparison-middle {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 8px;

    color:
        var(--blue);

}


.comparison-middle > span {

    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(45,140,255,0.08);

    font-size: 24px;

}


.comparison-middle small {

    font-size: 7px;

    letter-spacing: 1.4px;

    text-align: center;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background:
        var(--off-white);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;

}


.service-card {

    padding: 25px;

    border:
        1px solid
        var(--border);

    border-radius: 17px;

    background:
        white;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.service-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);

}


.service-icon {

    display: inline-grid;

    place-items: center;

    width: 36px;
    height: 36px;

    border-radius: 9px;

    background:
        var(--navy);

    color: white;

    font-size: 9px;

    font-weight: 900;

}


.service-card h3 {

    margin-top: 17px;

    font-size: 17px;

}


.service-card p {

    margin-top: 8px;

    color:
        var(--muted);

    font-size: 12px;

}


/* =========================================================
   ANALYTICS
========================================================= */

.analytics-section {

    background:
        white;

}


.analytics-grid {

    display: grid;

    grid-template-columns:
        1.35fr
        0.65fr;

    gap: 18px;

}


.analytics-card {

    padding: 28px;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    background:
        white;

    box-shadow:
        0 12px 40px
        rgba(12,25,46,0.06);

}


.large-chart {

    min-height: 360px;

}


.analytics-header {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

}


.analytics-header small {

    color:
        var(--blue);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.analytics-header h3 {

    margin-top: 4px;

    font-size: 20px;

}


.chart-tag {

    padding: 6px 9px;

    border-radius: 8px;

    background:
        var(--off-white);

    color:
        var(--muted);

    font-size: 9px;

}


.big-line-chart {

    width: 100%;

    margin-top: 25px;

}


.big-line-chart .chart-axis,
.big-line-chart .chart-grid {

    stroke:
        #dfe7f1;

    stroke-width: 1;

}


.big-chart-line {

    fill: none;

    stroke:
        var(--blue);

    stroke-width: 4;

    stroke-linecap: round;

    stroke-linejoin: round;

}


.big-line-chart circle {

    fill:
        var(--teal);

}


.chart-labels {

    display: flex;

    justify-content: space-between;

    margin-top: 5px;

    color:
        var(--muted);

    font-size: 9px;

}


/* DONUT */

.donut-wrap {

    display: flex;

    justify-content: center;

    padding: 28px 0;

}


.donut-chart {

    width: 165px;
    height: 165px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        conic-gradient(
            var(--blue) 0 48%,
            var(--teal) 48% 78%,
            #dce5f0 78% 100%
        );

}


.donut-chart::before {

    content: "";

    position: absolute;

    width: 118px;
    height: 118px;

    border-radius: 50%;

    background: white;

}


.donut-center {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

}


.donut-center strong {

    font-size: 18px;

}


.donut-center small {

    color:
        var(--muted);

    font-size: 9px;

}


.donut-legend {

    display: flex;

    flex-direction: column;

    gap: 9px;

    font-size: 10px;

    color:
        var(--muted);

}


.donut-legend span {

    display: flex;

    align-items: center;

    gap: 7px;

}


.donut-legend i {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--blue);

}


/* BAR */

.bar-chart {

    display: flex;

    flex-direction: column;

    gap: 17px;

    margin-top: 27px;

}


.bar-row {

    display: grid;

    grid-template-columns:
        90px 1fr;

    align-items: center;

    gap: 10px;

}


.bar-row > span {

    color:
        var(--muted);

    font-size: 10px;

}


.bar-row > div {

    height: 9px;

    overflow: hidden;

    border-radius: 99px;

    background:
        #edf2f7;

}


.bar-row i {

    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--teal)
        );

}


.illustrative-note {

    display: block;

    margin-top: 20px;

    color:
        #9aa8ba;

    font-size: 9px;

}


/* PIPELINE */

.pipeline-card {

    grid-column:
        1 / -1;

}


.pipeline {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 28px;

}


.pipeline > div {

    flex: 1;

    padding: 18px 12px;

    text-align: center;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background:
        var(--off-white);

}


.pipeline strong {

    display: block;

    color:
        var(--blue);

    font-size: 9px;

}


.pipeline span {

    display: block;

    margin-top: 5px;

    font-size: 12px;

    font-weight: 800;

}


.pipeline b {

    color:
        #a6b3c3;

}


/* =========================================================
   SPECIALTIES
========================================================= */

.specialties-section {

    background:
        var(--off-white);

}


.specialty-slider-wrap {

    display: flex;

    align-items: center;

    gap: 12px;

}


.specialty-slider {

    display: flex;

    gap: 15px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 10px 3px 25px;

}


.specialty-slider::-webkit-scrollbar {
    display: none;
}


.slider-arrow {

    flex:
        0 0 auto;

    width: 48px;
    height: 48px;

    border:
        1px solid
        var(--border);

    border-radius: 50%;

    background: white;

    color:
        var(--navy);

    font-size: 20px;

    box-shadow:
        0 8px 25px
        rgba(12,25,46,0.08);

}


.specialty-card {

    flex:
        0 0 205px;

    min-height: 220px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    text-align: left;

    padding: 23px;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    background: white;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.specialty-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);

}


.specialty-number {

    color:
        #aab7c7;

    font-size: 9px;

    font-weight: 900;

}


.specialty-icon {

    width: 46px;
    height: 46px;

    display: grid;

    place-items: center;

    margin-top: 16px;

    border-radius: 12px;

    background:
        var(--navy);

    color: white;

    font-size: 11px;

    font-weight: 900;

}


.specialty-card strong {

    margin-top: 17px;

    font-size: 16px;

}


.specialty-card small {

    margin-top: 5px;

    color:
        var(--muted);

    font-size: 10px;

}


/* =========================================================
   TECHNOLOGY
========================================================= */

.technology-section {

    background:
        white;

}


.platform-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;

}


.platform-card {

    min-height: 170px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    text-align: left;

    border:
        1px solid
        var(--border);

    border-radius: 17px;

    background:
        white;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.platform-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(45,140,255,0.35);

    box-shadow:
        var(--shadow);

}


.platform-card > span {

    display: grid;

    place-items: center;

    width: 42px;
    height: 42px;

    border-radius: 10px;

    background:
        var(--off-white);

    color:
        var(--blue);

    font-size: 9px;

    font-weight: 900;

}


.platform-card strong {

    margin-top: 16px;

    font-size: 16px;

}


.platform-card small {

    margin-top: 5px;

    color:
        var(--muted);

    font-size: 10px;

}


.platform-note {

    max-width: 800px;

    margin: 25px auto 0;

    text-align: center;

    color:
        #94a1b1;

    font-size: 10px;

}


/* =========================================================
   WHY
========================================================= */

.why-section {

    background:
        var(--off-white);

}


.why-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 16px;

}


.why-card {

    padding: 30px;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    background: white;

}


.why-card.featured {

    background:
        var(--navy);

    color: white;

}


.why-icon {

    display: inline-block;

    color:
        var(--blue);

    font-size: 10px;

    font-weight: 900;

}


.why-card h3 {

    margin-top: 22px;

    font-size: 19px;

}


.why-card p {

    margin-top: 9px;

    color:
        var(--muted);

    font-size: 13px;

}


.featured p {

    color:
        rgba(255,255,255,0.58);

}


/* =========================================================
   MAINTENANCE
========================================================= */

.maintenance-section {

    background:
        var(--white);

}


.maintenance-box {

    display: grid;

    grid-template-columns:
        1fr 0.75fr;

    align-items: center;

    gap: 70px;

    padding: 65px;

    border-radius: 30px;

    background:
        var(--navy);

    color: white;

    overflow: hidden;

    position: relative;

}


.maintenance-content {

    position: relative;

    z-index: 2;

}


.maintenance-content h2 {

    max-width: 650px;

    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height: 1.08;

    letter-spacing: -2px;

}


.maintenance-content h2 span {

    display: block;

    color:
        var(--teal);

}


.maintenance-content p {

    max-width: 600px;

    margin-top: 18px;

    color:
        rgba(255,255,255,0.58);

}


.maintenance-content .btn {

    margin-top: 25px;

}


.maintenance-cycle {

    display: grid;

    place-items: center;

}


.cycle-ring {

    position: relative;

    width: 300px;
    height: 300px;

    display: grid;

    place-items: center;

    border:
        1px dashed
        rgba(255,255,255,0.22);

    border-radius: 50%;

    animation:
        cycleRotate
        22s
        linear
        infinite;

}


@keyframes cycleRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.cycle-center {

    position: relative;

    z-index: 2;

    width: 110px;
    height: 110px;

    display: grid;

    place-items: center;

    text-align: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--teal)
        );

    font-weight: 900;

    box-shadow:
        0 15px 45px
        rgba(0,0,0,0.25);

}


.cycle-center small {

    font-size: 7px;

    letter-spacing: 2px;

}


.cycle-point {

    position: absolute;

    padding: 9px 13px;

    border:
        1px solid
        rgba(255,255,255,0.13);

    border-radius: 99px;

    background:
        rgba(255,255,255,0.07);

    font-size: 10px;

    animation:
        counterRotate
        22s
        linear
        infinite;

}


@keyframes counterRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }

}


.point-one {
    top: 12px;
}


.point-two {
    right: -15px;
}


.point-three {
    bottom: 12px;
}


.point-four {
    left: -25px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background:
        var(--off-white);

}


.faq-grid {

    display: grid;

    grid-template-columns:
        0.7fr
        1.3fr;

    gap: 70px;

    align-items: start;

}


.faq-intro {

    position: sticky;

    top: 110px;

}


.faq-intro h2 {

    font-size:
        clamp(
            34px,
            4vw,
            50px
        );

    line-height: 1.08;

    letter-spacing: -2px;

}


.faq-intro h2 span {

    display: block;

    color:
        var(--blue);

}


.faq-intro p {

    margin-top: 17px;

    color:
        var(--muted);

    font-size: 14px;

}


.faq-intro .btn {

    margin-top: 22px;

    color:
        var(--navy);

    border-color:
        var(--border);

    background:
        white;

}


.faq-list {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.faq-item {

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    background: white;

    overflow: hidden;

}


.faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 21px;

    border: 0;

    background: white;

    color:
        var(--text);

    text-align: left;

    font-weight: 800;

    font-size: 14px;

}


.faq-icon {

    width: 28px;
    height: 28px;

    flex:
        0 0 auto;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--off-white);

    color:
        var(--blue);

    font-size: 19px;

    transition:
        transform 0.25s ease;

}


.faq-item.active .faq-icon {

    transform:
        rotate(45deg);

}


.faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows
        0.3s ease;

}


.faq-answer > div {

    min-height: 0;

    overflow: hidden;

    padding:
        0 21px;

    color:
        var(--muted);

    font-size: 13px;

    transition:
        padding 0.3s ease;

}


.faq-item.active .faq-answer {

    grid-template-rows: 1fr;

}


.faq-item.active .faq-answer > div {

    padding:
        0 21px 21px;

}


/* =========================================================
   CTA
========================================================= */

.final-cta {

    background:
        var(--white);

}


.cta-box {

    position: relative;

    display: grid;

    grid-template-columns:
        1fr
        0.45fr;

    align-items: center;

    gap: 40px;

    padding: 70px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #0c192e,
            #172f50
        );

    color: white;

    overflow: hidden;

}


.cta-content {

    position: relative;

    z-index: 2;

}


.cta-content h2 {

    max-width: 700px;

    font-size:
        clamp(
            35px,
            4vw,
            57px
        );

    line-height: 1.05;

    letter-spacing: -2.5px;

}


.cta-content h2 span {

    display: block;

    color:
        var(--teal);

}


.cta-content p {

    max-width: 650px;

    margin-top: 18px;

    color:
        rgba(255,255,255,0.57);

}


.cta-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 27px;

}


.email-link {

    color:
        rgba(255,255,255,0.67);

    font-size: 13px;

}


.cta-visual {

    min-height: 300px;

    display: grid;

    place-items: center;

    position: relative;

}


.cta-core {

    position: relative;

    z-index: 3;

    width: 120px;
    height: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--teal)
        );

    box-shadow:
        0 20px 70px
        rgba(32,199,184,0.22);

}


.cta-core strong {

    font-size: 27px;

}


.cta-core span {

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.cta-orbit {

    position: absolute;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 50%;

    animation:
        orbitSpin
        16s
        linear
        infinite;

}


.orbit-one {

    width: 210px;
    height: 210px;

}


.orbit-two {

    width: 270px;
    height: 270px;

    animation-duration: 22s;

}


.orbit-three {

    width: 330px;
    height: 330px;

    animation-duration: 30s;

}


@keyframes orbitSpin {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding-top: 70px;

    background:
        #081323;

    color: white;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        0.7fr
        0.7fr
        0.8fr;

    gap: 45px;

    padding-bottom: 50px;

}


.footer-brand p {

    max-width: 360px;

    margin-top: 17px;

    color:
        rgba(255,255,255,0.42);

    font-size: 12px;

}


.footer-links,
.footer-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-links h4,
.footer-contact h4 {

    margin-bottom: 14px;

    font-size: 12px;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.footer-links a {

    margin: 5px 0;

    color:
        rgba(255,255,255,0.48);

    font-size: 12px;

}


.footer-links a:hover {

    color: white;

}


.footer-contact a {

    color:
        var(--blue-light);

    font-size: 13px;

}


.footer-contact p {

    margin-top: 12px;

    color:
        rgba(255,255,255,0.4);

    font-size: 11px;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding:
        20px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.07);

    color:
        rgba(255,255,255,0.30);

    font-size: 9px;

}


/* =========================================================
   MODAL
========================================================= */

.modal {

    position: fixed;

    inset: 0;

    z-index: 2000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

}


.modal.active {

    display: flex;

}


.modal-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(4,12,24,0.76);

    backdrop-filter:
        blur(8px);

}


.modal-box {

    position: relative;

    z-index: 2;

    width:
        min(
            650px,
            100%
        );

    max-height:
        calc(100vh - 40px);

    overflow-y: auto;

    padding: 40px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 22px;

    background:
        white;

    box-shadow:
        0 35px 100px
        rgba(0,0,0,0.35);

    animation:
        modalIn
        0.25s
        ease;

}


@keyframes modalIn {

    from {
        opacity: 0;
        transform:
            translateY(20px)
            scale(0.97);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

}


.modal-close {

    position: absolute;

    top: 15px;
    right: 15px;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background:
        var(--off-white);

    color:
        var(--navy);

    font-size: 24px;

}


.modal-category {

    display: inline-block;

    color:
        var(--blue);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.modal-box h2 {

    margin-top: 10px;

    font-size:
        clamp(
            28px,
            4vw,
            42px
        );

    line-height: 1.1;

    letter-spacing: -1.5px;

}


.modal-box > p {

    margin-top: 15px;

    color:
        var(--muted);

    font-size: 14px;

}


.modal-detail {

    margin-top: 20px;

    padding: 18px;

    border-radius: 13px;

    background:
        var(--off-white);

}


.modal-detail strong {

    font-size: 12px;

    color:
        var(--navy);

}


.modal-detail p {

    margin-top: 5px;

    color:
        var(--muted);

    font-size: 12px;

}


.modal-cta {

    margin-top: 25px;

}


/* =========================================================
   FOCUS
========================================================= */

button:focus-visible,
a:focus-visible {

    outline:
        3px solid
        rgba(45,140,255,0.4);

    outline-offset: 3px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .hero-grid {

        gap: 40px;

    }


    .main-nav {

        gap: 14px;

        font-size: 12px;

    }


    .services-grid {

        grid-template-columns:
            repeat(3,1fr);

    }


    .platform-grid {

        grid-template-columns:
            repeat(3,1fr);

    }

}


@media (max-width: 900px) {

    .section {

        padding: 80px 0;

    }


    .mobile-menu-btn {

        display: flex;

    }


    .main-nav {

        position: absolute;

        top: calc(100% + 8px);

        left: 20px;
        right: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 15px;

        border:
            1px solid
            rgba(255,255,255,0.1);

        border-radius: 16px;

        background:
            rgba(12,25,46,0.98);

        backdrop-filter:
            blur(15px);

    }


    .main-nav.active {

        display: flex;

    }


    .main-nav a {

        padding: 10px;

    }


    .hero {

        min-height: auto;

        padding-top: 140px;

    }


    .hero-grid {

        grid-template-columns:
            1fr;

    }


    .hero-dashboard {

        max-width: 720px;

        margin: 0 auto;

    }


    .solution-grid {

        grid-template-columns:
            1fr;

    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .analytics-grid {

        grid-template-columns:
            1fr;

    }


    .pipeline-card {

        grid-column:
            auto;

    }


    .why-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .platform-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .comparison {

        grid-template-columns:
            1fr;

    }


    .comparison-middle {

        flex-direction: row;

    }


    .maintenance-box {

        grid-template-columns:
            1fr;

        padding: 45px;

    }


    .faq-grid {

        grid-template-columns:
            1fr;

        gap: 40px;

    }


    .faq-intro {

        position: static;

    }


    .cta-box {

        grid-template-columns:
            1fr;

        padding: 50px;

    }


    .cta-visual {

        min-height: 260px;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media (max-width: 600px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .section {

        padding: 65px 0;

    }


    .hero {

        padding:
            120px 0
            60px;

    }


    .hero h1 {

        font-size: 43px;

        letter-spacing:
            -2px;

    }


    .hero-text {

        font-size: 14px;

    }


    .hero-actions {

        flex-direction: column;

    }


    .hero-actions .btn {

        width: 100%;

    }


    .hero-trust {

        gap: 15px;

    }


    .dashboard-body {

        padding: 16px;

    }


    .metric-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .section-heading h2 {

        font-size: 34px;

        letter-spacing:
            -1.4px;

    }


    .services-grid,
    .platform-grid,
    .why-grid {

        grid-template-columns:
            1fr;

    }


    .comparison-column {

        padding: 22px;

    }


    .workflow-step {

        flex-basis: 180px;

    }


    .pipeline {

        flex-direction: column;

        align-items: stretch;

    }


    .pipeline > div {

        width: 100%;

    }


    .pipeline b {

        text-align: center;

        transform:
            rotate(90deg);

    }


    .maintenance-box {

        padding: 30px 22px;

    }


    .cycle-ring {

        width: 250px;
        height: 250px;

    }


    .cta-box {

        padding: 35px 23px;

    }


    .cta-content h2 {

        font-size: 38px;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 30px;

    }


    .footer-bottom {

        flex-direction: column;

    }


    .modal-box {

        padding: 30px 22px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;

    }

}