* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0A0A0A;
    --text: #E8E8E8;
    --accent: #2C7FB8;
    --accent-light: #AEE2FF;
    --divider: #2A2A2A;
    --white: #081D33;
    --gradient: linear-gradient(135deg, #2C7FB8 0%, #AEE2FF 100%);
    --nav-height: 80px;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow-x: hidden;
}

/* Hide native scrollbar and use dot page nav */
html {
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.page-dots {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 120;
}

.page-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: rgba(44, 127, 184, 0.22);
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s, border-color 0.2s;
}

.page-dot:hover {
    background: rgba(44, 127, 184, 0.45);
}

.page-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.35);
}

/* Chatbot UI */
.chatbot {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.chatbot-launcher {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 11px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
    transition: transform 0.2s, background-color 0.2s, border-color 0.2s;
}

.chatbot-launcher:hover {
    transform: translateY(-1px);
    background: #4A86AD;
    border-color: #4A86AD;
}

.chatbot-launcher i {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.chatbot-panel {
    width: min(320px, calc(100vw - 24px));
    height: min(68vh, 540px);
    background: #0B1118;
    border: 1px solid rgba(44, 127, 184, 0.4);
    border-radius: 16px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.chatbot.is-open .chatbot-panel {
    display: flex;
    animation: chatbot-pop 0.2s ease-out;
}

.chatbot-header {
    background: linear-gradient(135deg, #16334C 0%, #2C7FB8 100%);
    color: #fff;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.chatbot-title {
    font-size: 14px;
    font-weight: 700;
}

.chatbot-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 2px;
}

.chatbot-close {
    border: 0;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chatbot-close i {
    width: 15px;
    height: 15px;
}

.chatbot-messages {
    padding: 10px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(2, 8, 14, 0.7);
    scrollbar-width: thin;
    scrollbar-color: rgba(44, 127, 184, 0.5) rgba(255, 255, 255, 0.04);
}

.chatbot-messages::-webkit-scrollbar {
    width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 99px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(44, 127, 184, 0.5);
    border-radius: 99px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(44, 127, 184, 0.85);
}

.chat-msg {
    max-width: 86%;
    border-radius: 12px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.4;
}

.chat-msg.bot {
    background: rgba(44, 127, 184, 0.18);
    border: 1px solid rgba(44, 127, 184, 0.34);
    color: #EAF6FF;
    align-self: flex-start;
}

.chat-msg.user {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    align-self: flex-end;
}

.chatbot-form {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 8px;
    padding: 8px;
    background: rgba(7, 14, 22, 0.95);
}

.chatbot-input {
    flex: 1;
    border: 1px solid rgba(174, 226, 255, 0.25);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 8px 10px;
    font-size: 12px;
    outline: none;
}

.chatbot-input::placeholder {
    color: rgba(232, 232, 232, 0.64);
}

.chatbot-input:focus {
    border-color: rgba(174, 226, 255, 0.7);
    box-shadow: 0 0 0 2px rgba(44, 127, 184, 0.2);
}

.chatbot-send {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    min-width: 44px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chatbot-send i {
    width: 15px;
    height: 15px;
}

@keyframes chatbot-pop {
    from {
        opacity: 0;
        transform: translateY(6px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Grid System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Navigation */
nav {
    position: fixed;
    top: 12px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 14px 28px;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.logo-img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 6px;
    transition: color 0.2s;
    position: relative;
}

nav a:visited {
    color: var(--text);
}

nav a:hover {
    color: var(--accent);
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s;
}

nav a:hover:after {
    width: 100%;
}

/* Typography */
h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 16px;
    max-width: 65ch;
    font-weight: 400;
}

.subheading {
    font-size: 22px;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 300;
}

/* Sections � each snaps to the viewport */
section {
    padding: 60px 0;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

section>.container {
    width: 100%;
}

section:first-of-type {
    padding-top: calc(60px + var(--nav-height));
}

/* Decorative Elements */
.section-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 127, 184, 0.15) 0%, rgba(44, 127, 184, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.decoration-top-right {
    top: -300px;
    right: -200px;
}

/* Hero */
.hero {
    background: var(--bg);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

#hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.72) 0%, rgba(10, 10, 10, 0.88) 100%);
    z-index: 1;
    pointer-events: none;
}

.landing-section .container {
    position: relative;
    z-index: 3;
}

.landing-divider {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 140px;
    z-index: 4;
    pointer-events: none;
    display: block;
}

.landing-inner {
    width: 100%;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.landing-typewriter {
    font-size: clamp(40px, 8vw, 92px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.landing-static {
    display: block;
}

.typewriter-word {
    display: inline-block;
    color: var(--accent-light);
    border-right: 3px solid var(--accent-light);
    padding-right: 6px;
    white-space: nowrap;
    animation: caret-blink 0.9s steps(1, end) infinite;
}

.landing-actions {
    margin-top: 100px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transform: translate(0, 100px);
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    transition: transform 0.2s, opacity 0.2s, background-color 0.2s, border-color 0.2s, color 0.2s;
    position: relative;
}

.landing-btn:hover {
    transform: translateY(-2px);
}

.landing-btn.primary {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
}

.landing-btn.primary:hover {
    background: #4A86AD;
    border-color: #4A86AD;
}

.landing-btn.ghost {
    border: 1px solid rgba(174, 226, 255, 0.9);
    color: #fff;
    background: rgba(8, 29, 51, 0.35);
}

.landing-btn.ghost:hover {
    background: rgba(44, 127, 184, 0.22);
    border-color: var(--accent-light);
    color: #fff;
}

.landing-btn i {
    width: 17px;
    height: 17px;
    stroke-width: 2.4;
    transition: transform 0.2s;
}

.landing-btn:hover i {
    transform: translateX(3px);
}

.landing-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 5;
    animation: bounce-down 1.4s ease-in-out infinite;
    text-decoration: none;
}

.landing-scroll-cue i {
    width: 28px;
    height: 28px;
    stroke-width: 2.2;
}

@keyframes bounce-down {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }
}

@keyframes caret-blink {

    0%,
    49% {
        border-right-color: var(--accent-light);
    }

    50%,
    100% {
        border-right-color: transparent;
    }
}

.overview-section {
    background: linear-gradient(135deg, #101F2A 0%, #171B1E 100%);
    border-top: 1px solid rgba(44, 127, 184, 0.2);
    border-bottom: 1px solid rgba(44, 127, 184, 0.2);
    overflow: hidden;
}

.hero-content {
    grid-column: 1 / 8;
    position: relative;
    z-index: 3;
}

.overview-section .hero-content h1 {
    opacity: 0;
    transform: translateY(-36px);
    will-change: transform, opacity;
}

.overview-section .hero-content .subheading,
.overview-section .hero-content p:not(.subheading) {
    opacity: 0;
    transform: translateY(34px);
    will-change: transform, opacity;
}

.overview-section.is-visible .hero-content h1 {
    animation: fade-slide-down 0.6s ease-out forwards;
}

.overview-section.is-visible .hero-content .subheading {
    animation: fade-slide-up 0.62s ease-out 0.1s forwards;
}

.overview-section.is-visible .hero-content p:not(.subheading):nth-of-type(2) {
    animation: fade-slide-up 0.62s ease-out 0.2s forwards;
}

.overview-section.is-visible .hero-content p:not(.subheading):nth-of-type(3) {
    animation: fade-slide-up 0.62s ease-out 0.3s forwards;
}

@keyframes fade-slide-down {
    from {
        opacity: 0;
        transform: translateY(-36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(44, 127, 184, 0.15);
    border: 1px solid rgba(44, 127, 184, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.hero-stats {
    grid-column: 9 / 13;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.stat {
    background: rgba(44, 127, 184, 0.08);
    border-left: 3px solid var(--accent);
    padding: 24px;
    border-radius: 8px;
    transition: all 0.3s;
}

.overview-section .hero-stats .stat {
    opacity: 0;
    transform: translateX(90px);
    will-change: transform, opacity;
}

.overview-section.is-visible .hero-stats .stat {
    animation: slide-in-right 0.6s ease-out forwards;
}

.overview-section.is-visible .hero-stats .stat:nth-child(2) {
    animation-delay: 0.12s;
}

.overview-section.is-visible .hero-stats .stat:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(90px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat:hover {
    background: rgba(44, 127, 184, 0.12);
    transform: translateX(4px);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #909090;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Footer */
footer {
    background: #000000;
    border-top: 1px solid var(--divider);
    padding: 60px 0 32px;
    min-height: 44vh;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    color: var(--accent-light);
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 14px;
}

footer a {
    color: #808080;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

footer a:visited {
    color: #808080;
}

footer a:hover {
    color: var(--accent);
}

.copyright {
    padding-top: 32px;
    border-top: 1px solid var(--divider);
    font-size: 14px;
    color: #606060;
    text-align: center;
}

/* -- How It Works Overhaul -- */
.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --timeline-gap: 80px;
    --step-track-width: 430px;
    column-gap: var(--timeline-gap);
    gap: 32px;
    width: min(100%, 1020px);
    padding: 10px 0;
    align-items: start;
    justify-items: center;
    --timeline-x: 16px;
    --timeline-line-shift-left: 12px;
    --timeline-line-shift-right: -12px;
    --timeline-line: rgba(44, 127, 184, 0.35);
}

.process-grid-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 72px;
}

.process-grid::before {
    content: '';
    position: absolute;
    left: calc(((50% - (var(--timeline-gap) / 2) - var(--step-track-width)) / 2) + var(--timeline-x) + var(--timeline-line-shift-left));
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    transform: none;
    background: var(--timeline-line);
    z-index: 0;
}

.process-grid::after {
    content: '';
    position: absolute;
    left: calc(50% + (var(--timeline-gap) / 2) + ((50% - (var(--timeline-gap) / 2) - var(--step-track-width)) / 2) + var(--timeline-x) + var(--timeline-line-shift-right));
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    transform: none;
    background: var(--timeline-line);
    z-index: 0;
}

.process-step {
    position: relative;
    min-height: 0;
    padding-left: 64px;
    width: min(100%, var(--step-track-width));
}

.process-step:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.process-step:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.process-step:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
}

.process-step:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 22px;
    width: 34px;
    height: 2px;
    background: rgba(44, 127, 184, 0.55);
    z-index: 1;
}

.step-number {
    position: absolute;
    left: 16px;
    top: 22px;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    border: 2px solid #081D33;
    box-shadow: 0 0 0 4px rgba(44, 127, 184, 0.18);
}

.step-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
    text-align: left;
}

.step-head {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    padding: 5px 22px 5px 5px;
    border-radius: 999px;
    margin-bottom: 14px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    z-index: 3;
}

.step-icon i {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.step-title {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.step-desc {
    margin: 0;
}

.step-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-desc li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.step-desc li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: rgba(44, 127, 184, 0.55);
    font-size: 11px;
}

/* Process section reveal animations */
#process-section .section-label,
#process-section h2,
#process-section .subheading {
    opacity: 0;
    transform: translateY(-26px);
    will-change: transform, opacity;
}

#process-section .process-step .step-head,
#process-section .process-step .step-desc {
    opacity: 0;
    transform: translateX(-22px);
    will-change: transform, opacity;
}

#process-section.is-visible .section-label {
    animation: process-top-in 0.52s ease-out forwards;
}

#process-section.is-visible h2 {
    animation: process-top-in 0.55s ease-out 0.08s forwards;
}

#process-section.is-visible .subheading {
    animation: process-top-in 0.58s ease-out 0.16s forwards;
}

#process-section.is-visible .process-step:nth-child(1) .step-head {
    animation: process-item-out 0.55s ease-out 0.26s forwards;
}

#process-section.is-visible .process-step:nth-child(1) .step-desc {
    animation: process-item-out 0.55s ease-out 0.34s forwards;
}

#process-section.is-visible .process-step:nth-child(2) .step-head {
    animation: process-item-out 0.55s ease-out 0.4s forwards;
}

#process-section.is-visible .process-step:nth-child(2) .step-desc {
    animation: process-item-out 0.55s ease-out 0.48s forwards;
}

#process-section.is-visible .process-step:nth-child(3) .step-head {
    animation: process-item-out 0.55s ease-out 0.54s forwards;
}

#process-section.is-visible .process-step:nth-child(3) .step-desc {
    animation: process-item-out 0.55s ease-out 0.62s forwards;
}

#process-section.is-visible .process-step:nth-child(4) .step-head {
    animation: process-item-out 0.55s ease-out 0.68s forwards;
}

#process-section.is-visible .process-step:nth-child(4) .step-desc {
    animation: process-item-out 0.55s ease-out 0.76s forwards;
}

@keyframes process-top-in {
    from {
        opacity: 0;
        transform: translateY(-26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes process-item-out {
    from {
        opacity: 0;
        transform: translateX(-22px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* -- Solutions Preview -- */
.solutions-preview {
    background: rgba(20, 20, 20, 0.6);
}

.solutions-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
    gap: 44px;
    align-items: start;
}

.solutions-intro {
    position: sticky;
    top: 108px;
}

.solutions-intro h2 {
    margin-bottom: 20px;
}

.solutions-intro .subheading {
    margin-bottom: 0;
    max-width: 36ch;
}

#solutions-section .solutions-intro .section-label,
#solutions-section .solutions-intro h2,
#solutions-section .solutions-intro .subheading {
    opacity: 0;
    transform: translateY(-26px);
    will-change: transform, opacity;
}

#solutions-section .solution-card {
    opacity: 0;
    transform: translateY(26px);
    will-change: transform, opacity;
}

#solutions-section.is-visible .solutions-intro .section-label {
    animation: solutions-top-in 0.5s ease-out forwards;
}

#solutions-section.is-visible .solutions-intro h2 {
    animation: solutions-top-in 0.54s ease-out 0.08s forwards;
}

#solutions-section.is-visible .solutions-intro .subheading {
    animation: solutions-top-in 0.58s ease-out 0.16s forwards;
}

#solutions-section.is-visible .solution-card:nth-child(1) {
    animation: solutions-card-in 0.56s ease-out 0.24s forwards;
}

#solutions-section.is-visible .solution-card:nth-child(2) {
    animation: solutions-card-in 0.56s ease-out 0.34s forwards;
}

#solutions-section.is-visible .solution-card:nth-child(3) {
    animation: solutions-card-in 0.56s ease-out 0.44s forwards;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
}

.solutions-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 0;
}

.solution-card {
    border: 1px solid var(--divider);
    border-radius: 14px;
    padding: 40px 32px;
    background: var(--bg);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    color: var(--text);
    text-decoration: none;
}

.solution-card:visited {
    color: var(--text);
}

.solution-card:hover {
    border-color: rgba(44, 127, 184, 0.4);
    background: rgba(44, 127, 184, 0.05);
    transform: translateY(-6px);
}

.solution-icon {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.solution-icon svg {
    width: 26px;
    height: 26px;
    stroke: #ffffff;
    stroke-width: 1.75;
    fill: none;
}

.solution-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.solution-desc {
    font-size: 14px;
    color: #909090;
    line-height: 1.65;
    flex: 1;
    margin: 0 0 28px;
    max-width: 100%;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    width: fit-content;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
}

.solution-link:visited {
    color: #fff;
}

.solution-link:hover {
    background: #4A86AD;
    border-color: #4A86AD;
    transform: translateY(-1px);
}

.solution-link i {
    width: 15px;
    height: 15px;
    stroke-width: 2.4;
}

@keyframes solutions-top-in {
    from {
        opacity: 0;
        transform: translateY(-26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes solutions-card-in {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#why-section .section-label,
#why-section h2,
#why-section .subheading {
    opacity: 0;
    transform: translateY(-24px);
    will-change: transform, opacity;
}

#why-section .why-item {
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
}

#why-section.is-visible .section-label {
    animation: why-top-in 0.5s ease-out forwards;
}

#why-section.is-visible h2 {
    animation: why-top-in 0.54s ease-out 0.08s forwards;
}

#why-section.is-visible .subheading {
    animation: why-top-in 0.58s ease-out 0.16s forwards;
}

#why-section.is-visible .why-item:nth-child(1) {
    animation: why-item-in 0.52s ease-out 0.24s forwards;
}

#why-section.is-visible .why-item:nth-child(2) {
    animation: why-item-in 0.52s ease-out 0.32s forwards;
}

#why-section.is-visible .why-item:nth-child(3) {
    animation: why-item-in 0.52s ease-out 0.4s forwards;
}

#why-section.is-visible .why-item:nth-child(4) {
    animation: why-item-in 0.52s ease-out 0.48s forwards;
}

#why-section.is-visible .why-item:nth-child(5) {
    animation: why-item-in 0.52s ease-out 0.56s forwards;
}

#why-section.is-visible .why-item:nth-child(6) {
    animation: why-item-in 0.52s ease-out 0.64s forwards;
}

@keyframes why-top-in {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes why-item-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -- Why GRAI -- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.why-item {
    padding: 32px;
    border-radius: 12px;
    background: rgba(44, 127, 184, 0.06);
    border: 1px solid var(--divider);
    transition: all 0.3s;
}

.why-item:hover {
    border-color: rgba(44, 127, 184, 0.3);
    background: rgba(44, 127, 184, 0.1);
}

.why-icon {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 1.75;
    fill: none;
}

.why-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-desc {
    font-size: 14px;
    color: #909090;
    line-height: 1.65;
    margin: 0;
    max-width: 100%;
}

/* -- CTA Banner -- */
.cta-section {
    background: linear-gradient(135deg, rgba(44, 127, 184, 0.18) 0%, rgba(174, 226, 255, 0.08) 100%);
    border-top: none;
    border-bottom: 1px solid rgba(44, 127, 184, 0.2);
    text-align: center;
    min-height: 62vh;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-section .subheading {
    margin: 0 auto 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: #4A86AD;
    border-color: #4A86AD;
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid rgba(44, 127, 184, 0.4);
    color: var(--accent-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-left: 16px;
    transition: all 0.2s;
}

.btn-ghost:hover {
    background: rgba(44, 127, 184, 0.1);
    border-color: var(--accent);
    color: #fff;
}

/* -- Responsive -- */
@media (max-width: 968px) {
    .container {
        padding: 0 24px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    section {
        padding: 80px 0;
    }

    .hero-content {
        grid-column: 1 / 13;
    }

    .hero-stats {
        grid-column: 1 / 13;
        flex-direction: row;
        justify-content: flex-start;
        padding-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    nav ul {
        gap: 24px;
        position: static;
        left: auto;
        transform: none;
    }

    nav {
        padding: 12px 16px;
    }

    .logo-container {
        left: 16px;
    }

    .solutions-cards,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .solutions-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .solutions-intro {
        position: static;
    }

    .process-grid {
        grid-template-columns: 1fr;
        --timeline-gap: 0px;
        gap: 50px;
        min-height: auto;
        padding-left: 20px;
    }

    .process-grid-wrap {
        margin-top: 50px;
    }

    .process-grid::before {
        left: 16px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
        transform: none;
    }

    .process-grid::after {
        display: none;
    }

    .process-step {
        justify-content: flex-start;
        text-align: left;
        min-height: 0;
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .process-step::after {
        display: none;
    }

    .step-content {
        margin: 0;
        max-width: 100%;
        padding-left: 40px;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .step-head {
        margin-bottom: 15px;
        padding: 4px 16px 4px 4px;
        max-width: 100%;
    }

    .step-number {
        left: 16px;
        top: 24px;
        transform: translate(-50%, -50%);
    }

    .step-title {
        font-size: 18px;
        line-height: 1.2;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-desc {
        font-size: 15px;
    }

    .step-icon {
        width: 34px;
        height: 34px;
        margin-right: 10px;
    }

    .step-icon i {
        width: 15px;
        height: 15px;
    }

    .step-desc {
        font-size: 16px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .btn-ghost {
        margin-left: 0;
        margin-top: 12px;
    }

    .page-dots {
        right: 10px;
        gap: 10px;
    }

    .page-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
    }

    section {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        min-height: auto;
        padding: 68px 0;
    }

    section:first-of-type {
        padding-top: calc(88px + var(--nav-height));
    }

    nav {
        top: 0;
        padding: 12px 14px;
        justify-content: space-between;
        background: rgba(10, 10, 10, 0.82);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(44, 127, 184, 0.2);
    }

    .logo-container {
        position: static;
        transform: none;
    }

    .logo-img {
        height: 34px;
    }

    nav ul {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: 72%;
    }

    nav a {
        font-size: 13px;
        padding: 6px 2px;
    }

    .landing-inner {
        min-height: 52vh;
    }

    .landing-typewriter {
        font-size: clamp(30px, 10vw, 56px);
        line-height: 1.08;
    }

    .landing-actions {
        margin-top: 34px;
        transform: none;
        width: 100%;
        gap: 10px;
    }

    .landing-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 18px;
    }

    .stat {
        padding: 18px;
    }

    .stat-number {
        font-size: 32px;
    }

    .process-grid {
        padding-left: 0;
        gap: 36px;
    }

    .process-grid::before {
        left: 12px;
    }

    .process-step {
        padding-left: 34px;
        width: 100%;
    }

    .step-number {
        left: 12px;
    }

    .step-content {
        padding-left: 26px;
    }

    .step-head {
        padding: 4px 14px 4px 4px;
        max-width: 100%;
    }

    .step-title {
        font-size: 17px;
        white-space: normal;
        line-height: 1.2;
    }

    .step-icon {
        margin-right: 10px;
    }

    .solutions-cards,
    .why-grid {
        gap: 18px;
    }

    .solution-card,
    .why-item {
        padding: 22px 18px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .btn-primary,
    .btn-ghost {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .btn-ghost {
        margin-top: 12px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-about {
        max-width: 100%;
    }

    .page-dots {
        display: none;
    }

    .chatbot {
        right: 12px;
        left: 12px;
        bottom: 12px;
        align-items: stretch;
    }

    .chatbot-panel {
        width: 100%;
        max-height: 58vh;
    }

    .chatbot-launcher {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }

    .subheading {
        font-size: 18px;
    }

    nav {
        gap: 10px;
    }

    nav ul {
        gap: 10px;
        max-width: 74%;
    }

    .landing-scroll-cue {
        bottom: 22px;
    }
}