:root {
    --navy-950: #06152f;
    --navy-900: #0a1f44;
    --navy-800: #123362;

    --blue-800: #0649ad;
    --blue-700: #075bd8;
    --blue-600: #0878ef;

    --cyan-500: #11c7df;
    --cyan-400: #36d8e8;

    --green-600: #07966d;
    --green-500: #18c48f;

    --gray-50: #f7f9fc;
    --gray-100: #eef3f8;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #718096;
    --gray-600: #536274;
    --gray-700: #36465a;

    --white: #ffffff;

    --gradient-primary:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--cyan-500)
        );

    --gradient-dark:
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );

    --shadow-sm:
        0 12px 35px rgba(6, 21, 47, 0.07);

    --shadow-md:
        0 20px 55px rgba(6, 21, 47, 0.11);

    --shadow-lg:
        0 30px 90px rgba(6, 21, 47, 0.16);

    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 38px;

    --header-height: 94px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    color: var(--navy-950);
    background: var(--white);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    font: inherit;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--white);
    border-radius: 12px;
    background: var(--navy-950);
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 120px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-700);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient-primary);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 60px;
}

.section-heading h2,
.process-heading h2,
.technology-copy h2,
.contact-copy h2,
.about-copy h2 {
    margin: 18px 0 0;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.section-heading > p,
.process-heading > p,
.technology-copy > p,
.about-copy > p,
.contact-copy > p {
    margin: 0;
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Header */

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(7, 91, 216, 0.08);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    transition:
        box-shadow 180ms ease,
        background 180ms ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 12px 35px rgba(6, 21, 47, 0.08);
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 72px;
    max-width: 245px;
    object-fit: contain;
    object-position: left center;
    transition:
        transform 180ms ease,
        filter 180ms ease;
}

.brand:hover .brand-logo {
    transform: translateY(-1px);
    filter:
        drop-shadow(
            0 8px 14px rgba(7, 91, 216, 0.14)
        );
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    color: var(--gray-600);
    font-size: 0.91rem;
    font-weight: 720;
}

.nav-link {
    position: relative;
    transition: color 180ms ease;
}

.nav-link:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-700);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 12px 18px;
    color: var(--white);
    border-radius: 12px;
    background: var(--gradient-primary);
    box-shadow:
        0 12px 25px rgba(7, 91, 216, 0.2);
}

.nav-cta:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--gray-200);
    border-radius: 13px;
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--navy-950);
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 90px 0 110px;
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(17, 199, 223, 0.17),
            transparent 29%
        ),
        radial-gradient(
            circle at 6% 92%,
            rgba(7, 91, 216, 0.13),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f7fbff
        );
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.24;
    background-image:
        linear-gradient(
            rgba(7, 91, 216, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7, 91, 216, 0.055) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 25%,
            black 70%,
            transparent
        );
}

.hero-orb {
    position: absolute;
    border: 1px solid rgba(7, 91, 216, 0.1);
    border-radius: 50%;
}

.hero-orb-one {
    width: 560px;
    height: 560px;
    top: 40px;
    right: -220px;
}

.hero-orb-two {
    width: 230px;
    height: 230px;
    right: 17%;
    bottom: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    align-items: center;
    gap: 76px;
}

.hero h1 {
    max-width: 760px;
    margin: 24px 0;
    font-size: clamp(3.8rem, 6.7vw, 6.8rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
}

.hero h1 span {
    color: transparent;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    max-width: 680px;
    margin: 0;
    color: var(--gray-600);
    font-size: 1.14rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 25px;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.button svg {
    width: 19px;
    height: 19px;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow:
        0 16px 36px rgba(7, 91, 216, 0.24);
}

.button-primary:hover {
    box-shadow:
        0 22px 45px rgba(7, 91, 216, 0.3);
}

.button-secondary {
    color: var(--navy-950);
    border: 1px solid var(--gray-300);
    background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
    border-color: rgba(7, 91, 216, 0.35);
    box-shadow: var(--shadow-sm);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gray-600);
    font-size: 0.84rem;
    font-weight: 700;
}

.trust-icon {
    width: 31px;
    height: 31px;
    display: inline-grid;
    place-items: center;
    color: var(--blue-700);
    border-radius: 10px;
    background: rgba(7, 91, 216, 0.08);
}

.trust-icon svg {
    width: 17px;
    height: 17px;
}

.hero-visual {
    position: relative;
}

.hero-panel {
    position: relative;
    z-index: 2;
    padding: 28px;
    border: 1px solid rgba(7, 91, 216, 0.12);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
}

.panel-topbar,
.panel-heading,
.panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.panel-topbar {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-100);
}

.panel-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-600);
    font-size: 0.76rem;
    font-weight: 850;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow:
        0 0 0 6px rgba(24, 196, 143, 0.1);
}

.panel-label {
    color: var(--gray-500);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.panel-heading {
    padding: 28px 0 20px;
}

.panel-overline {
    color: var(--blue-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.panel-heading h2 {
    margin: 8px 0 0;
    font-size: 1.75rem;
    letter-spacing: -0.035em;
}

.panel-pulse {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 32px;
}

.panel-pulse span {
    width: 5px;
    border-radius: 999px;
    background: var(--gradient-primary);
}

.panel-pulse span:nth-child(1) {
    height: 13px;
}

.panel-pulse span:nth-child(2) {
    height: 28px;
}

.panel-pulse span:nth-child(3) {
    height: 20px;
}

.solution-list {
    display: grid;
    gap: 10px;
}

.solution-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    background: rgba(247, 249, 252, 0.75);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.solution-row:hover {
    border-color: rgba(7, 91, 216, 0.2);
    background: var(--white);
    transform: translateX(4px);
}

.solution-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--blue-700);
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            rgba(7, 91, 216, 0.12),
            rgba(17, 199, 223, 0.12)
        );
}

.solution-icon svg {
    width: 21px;
    height: 21px;
}

.solution-row strong,
.solution-row small {
    display: block;
}

.solution-row strong {
    margin-bottom: 3px;
    font-size: 0.93rem;
}

.solution-row small {
    color: var(--gray-500);
    font-size: 0.76rem;
}

.solution-state {
    padding: 6px 9px;
    color: var(--green-600);
    border-radius: 999px;
    background: rgba(24, 196, 143, 0.1);
    font-size: 0.68rem;
    font-weight: 850;
}

.panel-footer {
    margin-top: 18px;
    padding-top: 20px;
    color: var(--gray-500);
    border-top: 1px solid var(--gray-100);
    font-size: 0.74rem;
    font-weight: 700;
}

.connection {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green-600);
}

.connection i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-500);
}

.floating-card {
    position: absolute;
    z-index: 4;
    min-width: 225px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid rgba(7, 91, 216, 0.12);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.floating-card-one {
    top: -48px;
    right: -40px;
}

.floating-card-two {
    bottom: -50px;
    left: -42px;
}

.floating-icon {
    width: 40px;
    height: 40px;
    display: grid;
    flex: 0 0 40px;
    place-items: center;
    color: var(--white);
    border-radius: 13px;
    background: var(--gradient-primary);
}

.floating-icon svg {
    width: 20px;
    height: 20px;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    margin-bottom: 3px;
    font-size: 0.83rem;
}

.floating-card small {
    color: var(--gray-500);
    font-size: 0.72rem;
}

/* Corporate strip */

.corporate-strip {
    position: relative;
    z-index: 4;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    background: var(--white);
}

.corporate-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.corporate-strip-grid > div {
    padding: 28px 24px;
    border-right: 1px solid var(--gray-100);
}

.corporate-strip-grid > div:last-child {
    border-right: 0;
}

.corporate-strip strong,
.corporate-strip span {
    display: block;
}

.corporate-strip strong {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.corporate-strip span {
    color: var(--gray-500);
    font-size: 0.76rem;
}

/* Services */

.services-section {
    background:
        linear-gradient(
            180deg,
            var(--white),
            var(--gray-50)
        );
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 430px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -90px;
    right: -70px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(17, 199, 223, 0.15),
            transparent 70%
        );
}

.service-card:hover {
    border-color: rgba(7, 91, 216, 0.24);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 16px;
    background: var(--gradient-primary);
    box-shadow:
        0 15px 30px rgba(7, 91, 216, 0.2);
}

.service-icon svg {
    width: 25px;
    height: 25px;
}

.service-number {
    position: absolute;
    top: 34px;
    right: 30px;
    color: var(--gray-200);
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.service-card h3 {
    margin: 28px 0 14px;
    font-size: 1.45rem;
    letter-spacing: -0.025em;
}

.service-card > p {
    min-height: 84px;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.75;
}

.service-card ul {
    display: grid;
    gap: 11px;
    margin: 26px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--gray-100);
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 22px;
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 680;
}

.service-card li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 3px;
    background: var(--gradient-primary);
    transform: translateY(-50%) rotate(45deg);
}

/* About */

.about-section {
    overflow: hidden;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 90px;
}

.about-visual {
    position: relative;
    padding: 35px;
}

.about-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            145deg,
            rgba(7, 91, 216, 0.1),
            rgba(17, 199, 223, 0.06)
        );
    transform: rotate(-3deg);
}

.about-dashboard {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(7, 91, 216, 0.12);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.78rem;
    font-weight: 800;
}

.dashboard-dots {
    display: flex;
    gap: 5px;
}

.dashboard-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
}

.dashboard-dots i:nth-child(2) {
    background: rgba(7, 91, 216, 0.45);
}

.dashboard-dots i:nth-child(3) {
    background: rgba(17, 199, 223, 0.65);
}

.dashboard-body {
    min-height: 335px;
    display: grid;
    grid-template-columns: 74px 1fr;
}

.dashboard-sidebar {
    display: grid;
    align-content: start;
    gap: 17px;
    padding: 24px 20px;
    border-right: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.sidebar-line {
    width: 33px;
    height: 8px;
    border-radius: 999px;
    background: var(--gray-200);
}

.sidebar-line.active {
    background: var(--gradient-primary);
}

.dashboard-content {
    padding: 28px;
}

.dashboard-title {
    width: 150px;
    height: 14px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: var(--navy-900);
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dashboard-cards span {
    height: 72px;
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            var(--white),
            var(--gray-50)
        );
}

.dashboard-chart {
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 28px;
    padding: 20px 18px 0;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    background: var(--gray-50);
}

.dashboard-chart i {
    width: 11%;
    border-radius: 8px 8px 2px 2px;
    background: var(--gradient-primary);
    opacity: 0.85;
}

.about-badge {
    position: absolute;
    z-index: 4;
    right: -18px;
    bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(7, 91, 216, 0.12);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.about-badge > span {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 14px;
    background: var(--gradient-primary);
    font-weight: 900;
}

.about-badge strong,
.about-badge small {
    display: block;
}

.about-badge strong {
    margin-bottom: 3px;
    font-size: 0.87rem;
}

.about-badge small {
    color: var(--gray-500);
    font-size: 0.73rem;
}

.about-intro {
    margin-top: 28px !important;
    color: var(--navy-900) !important;
    font-size: 1.13rem !important;
    font-weight: 650;
}

.about-copy > p + p {
    margin-top: 18px;
}

.about-values {
    display: grid;
    gap: 18px;
    margin-top: 35px;
}

.value-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 15px;
}

.value-item > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--blue-700);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(7, 91, 216, 0.1),
            rgba(17, 199, 223, 0.1)
        );
}

.value-item svg {
    width: 22px;
    height: 22px;
}

.value-item strong {
    display: block;
    margin: 2px 0 5px;
}

.value-item p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Solutions */

.solutions-section {
    color: var(--white);
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(17, 199, 223, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 4% 90%,
            rgba(7, 91, 216, 0.25),
            transparent 30%
        ),
        var(--navy-950);
}

.section-heading-light > p {
    color: rgba(255, 255, 255, 0.65);
}

.section-heading-light .eyebrow {
    color: var(--cyan-400);
}

.solutions-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.showcase-card {
    position: relative;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(18px);
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        background 200ms ease;
}

.showcase-card:hover {
    border-color: rgba(17, 199, 223, 0.3);
    background: rgba(255, 255, 255, 0.075);
    transform: translateY(-6px);
}

.showcase-large {
    min-height: 450px;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: 55px;
}

.showcase-tag {
    display: inline-flex;
    padding: 8px 11px;
    color: var(--cyan-400);
    border: 1px solid rgba(17, 199, 223, 0.2);
    border-radius: 999px;
    background: rgba(17, 199, 223, 0.08);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.showcase-card h3 {
    margin: 22px 0 14px;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
}

.showcase-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

.showcase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.showcase-features span {
    padding: 8px 11px;
    color: rgba(255, 255, 255, 0.76);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.74rem;
    font-weight: 750;
}

.showcase-interface {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.25);
    transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
}

.interface-bar {
    height: 28px;
    border-radius: 10px 10px 5px 5px;
    background: rgba(255, 255, 255, 0.09);
}

.interface-layout {
    min-height: 260px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 12px;
    margin-top: 12px;
}

.interface-menu {
    display: grid;
    align-content: start;
    gap: 15px;
    padding: 18px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.065);
}

.interface-menu i {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.interface-menu i:first-child {
    background: var(--gradient-primary);
}

.interface-main {
    padding: 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
}

.interface-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.interface-stats span {
    height: 62px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.075);
}

.interface-chart {
    height: 145px;
    display: flex;
    align-items: flex-end;
    gap: 13px;
    margin-top: 18px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
}

.interface-chart i {
    flex: 1;
    border-radius: 8px 8px 2px 2px;
    background: var(--gradient-primary);
}

.showcase-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--cyan-400);
    border-radius: 17px;
    background: rgba(17, 199, 223, 0.1);
}

.showcase-icon svg {
    width: 27px;
    height: 27px;
}

/* Process */

.process-section {
    background: var(--gray-50);
}

.process-heading {
    max-width: 820px;
    margin-bottom: 65px;
}

.process-heading > p {
    max-width: 650px;
    margin-top: 22px;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 49px;
    right: 12%;
    left: 12%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(7, 91, 216, 0.25),
            transparent
        );
}

.process-step {
    position: relative;
    z-index: 2;
    min-height: 310px;
    padding: 30px;
    border: 1px solid var(--gray-100);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.process-number {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--gray-200);
    font-size: 2rem;
    font-weight: 900;
}

.process-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 17px;
    background: var(--gradient-primary);
    box-shadow:
        0 15px 30px rgba(7, 91, 216, 0.2);
}

.process-icon svg {
    width: 25px;
    height: 25px;
}

.process-step h3 {
    margin: 28px 0 13px;
    font-size: 1.25rem;
}

.process-step p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Technology */

.technology-section {
    padding: 90px 0;
    background: var(--white);
}

.technology-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
    align-items: center;
    gap: 90px;
}

.technology-copy h2 {
    font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.technology-copy > p {
    margin-top: 22px;
}

.technology-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.technology-stack span {
    min-height: 82px;
    display: grid;
    place-items: center;
    color: var(--navy-800);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    background: var(--gray-50);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.technology-stack span:hover {
    color: var(--blue-700);
    border-color: rgba(7, 91, 216, 0.25);
    transform: translateY(-4px);
}

/* Contact */

.contact-section {
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(17, 199, 223, 0.18),
            transparent 30%
        ),
        var(--navy-950);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
    align-items: center;
    gap: 85px;
}

.contact-copy .eyebrow {
    color: var(--cyan-400);
}

.contact-copy > p {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.65);
}

.contact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.contact-points span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.83rem;
    font-weight: 700;
}

.contact-points svg {
    width: 18px;
    height: 18px;
    color: var(--cyan-400);
}

.contact-card {
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.075);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.contact-card-label {
    display: inline-flex;
    padding: 8px 11px;
    color: var(--cyan-400);
    border-radius: 999px;
    background: rgba(17, 199, 223, 0.1);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-card h3 {
    margin: 22px 0 13px;
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.contact-card p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.contact-card small {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.5;
}

.button-whatsapp {
    width: 100%;
    color: var(--navy-950);
    background: var(--white);
}

.button-whatsapp:hover {
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */

.site-footer {
    color: rgba(255, 255, 255, 0.66);
    background: #030d20;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, 0.65fr);
    gap: 55px;
    padding: 75px 0 55px;
}

.footer-logo {
    display: block;
    width: auto;
    height: 72px;
    max-width: 230px;
    object-fit: contain;
    object-position: left center;
    filter:
        brightness(0)
        invert(1);
}

.footer-brand p {
    max-width: 340px;
    margin: 18px 0 0;
    font-size: 0.9rem;
    line-height: 1.75;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.85rem;
}

.footer-column strong {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.9rem;
}

.footer-column a {
    transition: color 180ms ease;
}

.footer-column a:hover {
    color: var(--cyan-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
}

.footer-bottom p {
    margin: 0;
}

/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #12b981,
            #08a66d
        );
    box-shadow:
        0 18px 45px rgba(8, 166, 109, 0.3);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow:
        0 24px 55px rgba(8, 166, 109, 0.38);
}

.floating-whatsapp svg {
    width: 27px;
    height: 27px;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 1100px) {
    .main-nav {
        gap: 18px;
        font-size: 0.84rem;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
        gap: 45px;
    }

    .floating-card-one {
        right: -10px;
    }

    .floating-card-two {
        left: -10px;
    }

    .about-grid {
        gap: 55px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 82px;
    }

    .site-header {
        height: var(--header-height);
    }

    .brand-logo {
        height: 62px;
        max-width: 210px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        align-content: start;
        gap: 0;
        padding: 18px 20px 28px;
        border-top: 1px solid var(--gray-100);
        background: rgba(255, 255, 255, 0.98);
        box-shadow:
            0 30px 50px rgba(6, 21, 47, 0.12);
        transform: translateY(-130%);
        transition: transform 220ms ease;
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .nav-link {
        padding: 15px 5px;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-top: 14px;
        padding: 15px 18px;
        text-align: center;
        border-bottom: 0;
    }

    .hero {
        min-height: auto;
        padding: 85px 0 120px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 90px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 10vw, 6rem);
    }

    .hero-visual {
        max-width: 650px;
        margin-inline: auto;
    }

    .corporate-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-strip-grid > div:nth-child(2) {
        border-right: 0;
    }

    .corporate-strip-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--gray-100);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about-visual {
        max-width: 650px;
        margin-inline: auto;
    }

    .showcase-large {
        grid-template-columns: 1fr;
    }

    .technology-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-card {
        max-width: 650px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 26px, 1180px);
    }

    .section {
        padding: 90px 0;
    }

    .brand-logo {
        height: 55px;
        max-width: 180px;
    }

    .hero {
        padding: 70px 0 105px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        gap: 13px;
    }

    .hero-panel {
        padding: 19px;
        border-radius: 25px;
    }

    .panel-heading {
        align-items: flex-start;
    }

    .panel-heading h2 {
        font-size: 1.45rem;
    }

    .solution-row {
        grid-template-columns: 40px 1fr;
    }

    .solution-state {
        display: none;
    }

    .floating-card {
        min-width: 0;
        max-width: 220px;
    }

    .floating-card-one {
        top: -45px;
        right: -4px;
    }

    .floating-card-two {
        bottom: -62px;
        left: -4px;
    }

    .corporate-strip-grid {
        grid-template-columns: 1fr;
    }

    .corporate-strip-grid > div {
        border-right: 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .corporate-strip-grid > div:last-child {
        border-bottom: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .service-card > p {
        min-height: 0;
    }

    .about-visual {
        padding: 20px;
    }

    .dashboard-body {
        grid-template-columns: 55px 1fr;
    }

    .dashboard-content {
        padding: 18px;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .dashboard-cards span:nth-child(n + 2) {
        display: none;
    }

    .about-badge {
        right: 0;
        bottom: -30px;
    }

    .solutions-showcase {
        grid-template-columns: 1fr;
    }

    .showcase-large {
        min-height: auto;
    }

    .showcase-interface {
        transform: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .technology-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        padding: 28px;
    }

    .contact-card h3 {
        font-size: 1.7rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}