/* -------------------------------------------------------
   KPI Studio Landing Page
   Premium SaaS styling in pure CSS
------------------------------------------------------- */

:root {
    --bg: #071321;
    --bg-soft: #0b1b2d;
    --panel: rgba(255, 255, 255, 0.08);
    --panel-strong: rgba(255, 255, 255, 0.13);
    --line: rgba(255, 255, 255, 0.13);
    --line-soft: rgba(255, 255, 255, 0.08);
    --text: #f7fbff;
    --text-muted: #9fb0c5;
    --blue: #44a7ff;
    --blue-deep: #1677ff;
    --orange: #ff9f43;
    --orange-deep: #ff7a1a;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.24);
    --radius: 24px;
    --container: 1180px;
}

/* Base */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 18%, rgba(68, 167, 255, 0.15), transparent 34%),
        radial-gradient(circle at 82% 16%, rgba(255, 159, 67, 0.13), transparent 31%),
        linear-gradient(180deg, #071321 0%, #081524 54%, #06101c 100%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 19, 33, 0) 0%, rgba(7, 19, 33, 0.8) 100%);
}

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

img {
    display: block;
    max-width: 100%;
}

/* Ambient background */

.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

.blur-left,
.blur-right {
    position: fixed;
    z-index: -3;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.72;
    pointer-events: none;
}

.blur-left {
    top: 130px;
    left: -150px;
    background: rgba(22, 119, 255, 0.5);
}

.blur-right {
    top: 95px;
    right: -125px;
    background: rgba(255, 122, 26, 0.46);
}

/* Navbar */

header {
    position: sticky;
    top: 18px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 40px), var(--container));
    margin: 18px auto 0;
    padding: 12px 14px 12px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 19, 33, 0.68);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    font-weight: 700;
    letter-spacing: 0;
}

.logo img {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    object-fit: contain;
    image-rendering: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

/* Buttons */

.btn-nav,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn-nav {
    padding: 0 18px;
    color: #071321;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.12);
}

.btn-primary {
    min-width: 150px;
    padding: 0 22px;
    color: #06101c;
    background: linear-gradient(135deg, #ffffff 0%, #9ed8ff 47%, #ffac55 100%);
    box-shadow: 0 18px 40px rgba(68, 167, 255, 0.28), 0 12px 35px rgba(255, 159, 67, 0.14);
}

.btn-secondary {
    min-width: 176px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-nav:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    box-shadow: 0 22px 55px rgba(68, 167, 255, 0.35), 0 18px 42px rgba(255, 159, 67, 0.18);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
}

/* Hero */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    gap: clamp(36px, 6vw, 84px);
    align-items: center;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    padding: clamp(102px, calc(10vw + 24px), 152px) 0 54px;
}

.hero-left {
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 22px;
    padding: 0 13px;
    border: 1px solid rgba(68, 167, 255, 0.26);
    border-radius: 999px;
    color: #b9dcff;
    background: rgba(68, 167, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: 0;
}

.hero p {
    max-width: 650px;
    margin: 26px 0 0;
    color: var(--text-muted);
    font-size: clamp(1.04rem, 1.7vw, 1.2rem);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 46px;
}

.hero-right {
    position: relative;
    perspective: 1200px;
}

.hero-right::before,
.hero-right::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(42px);
    pointer-events: none;
}

.hero-right::before {
    width: 420px;
    height: 420px;
    top: 50%;
    right: 5%;
    background: rgba(68, 167, 255, 0.34);
    filter: blur(76px);
    transform: translateY(-50%);
}

.hero-right::after {
    width: 150px;
    height: 150px;
    bottom: -22px;
    left: 10%;
    background: rgba(255, 159, 67, 0.31);
}

.dashboard-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 34px 95px rgba(0, 0, 0, 0.46), 0 22px 65px rgba(68, 167, 255, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(0) rotate(-6deg);
    animation: float-card 5.5s ease-in-out infinite;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.dashboard-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%);
    pointer-events: none;
}

.dashboard-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    pointer-events: none;
}

.dashboard-card img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 370px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(7, 19, 33, 0.42);
}

.dashboard-card:hover {
    animation: none;
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.5), 0 28px 78px rgba(68, 167, 255, 0.28);
    transform: translateY(-10px) rotate(-4deg) scale(1.015);
}

@keyframes float-card {
    0%,
    100% {
        transform: translateY(0) rotate(-6deg);
    }

    50% {
        transform: translateY(-12px) rotate(-6deg);
    }
}

/* Metrics */

.metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 72px;
}

.metric {
    padding: 24px;
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.065);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.metric:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

.metric h2 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    background: linear-gradient(135deg, #ffffff 0%, #8fd0ff 54%, #ffb15f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.metric span {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Platform Overview */

.platform-overview {
    position: relative;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 92px;
    padding-top: 34px;
}

.platform-overview::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: -1;
    width: min(720px, 92vw);
    height: 260px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 32% 42%, rgba(68, 167, 255, 0.2), transparent 42%),
        radial-gradient(circle at 70% 44%, rgba(255, 159, 67, 0.16), transparent 38%);
    filter: blur(54px);
    transform: translateX(-50%);
    pointer-events: none;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2.1rem, 4.8vw, 4rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: 0;
}

.section-heading p {
    margin: 18px auto 0;
    max-width: 660px;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.6vw, 1.14rem);
    line-height: 1.72;
}

.platform-overview .section-heading {
    margin-bottom: 14px;
}

.platform-overview .section-heading p {
    margin-top: 6px;
}

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

.overview-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.overview-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
        radial-gradient(circle at 20% 12%, rgba(68, 167, 255, 0.18), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(255, 159, 67, 0.15), transparent 28%);
    transition: opacity 220ms ease;
    pointer-events: none;
}

.overview-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.075);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.overview-card:hover::before {
    opacity: 1;
}

.overview-image {
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 9;
    margin: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background:
        radial-gradient(circle at 22% 22%, rgba(68, 167, 255, 0.28), transparent 32%),
        radial-gradient(circle at 78% 28%, rgba(255, 159, 67, 0.2), transparent 28%),
        linear-gradient(145deg, rgba(13, 38, 63, 0.98), rgba(7, 19, 33, 0.96));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 10px 30px rgba(68, 167, 255, 0.12);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transform: scale(1);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.overview-card:hover .overview-image img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}

.overview-content {
    position: relative;
    z-index: 1;
    padding: 8px 24px 26px;
}

.overview-content h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
}

.overview-content p {
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Why KPI Studio */

.why-kpi {
    position: relative;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 104px;
    padding: 44px 0 8px;
}

.why-kpi::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 50%;
    z-index: -1;
    width: min(980px, 94vw);
    height: 380px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 24% 44%, rgba(68, 167, 255, 0.2), transparent 40%),
        radial-gradient(circle at 76% 40%, rgba(255, 159, 67, 0.17), transparent 36%);
    filter: blur(64px);
    transform: translateX(-50%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.why-card {
    position: relative;
    overflow: hidden;
    min-height: 370px;
    padding: 28px;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.125), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.058);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    opacity: 0;
    background:
        radial-gradient(circle at 24% 18%, rgba(68, 167, 255, 0.24), transparent 34%),
        radial-gradient(circle at 86% 10%, rgba(255, 159, 67, 0.18), transparent 31%);
    transition: opacity 300ms ease;
    pointer-events: none;
}

.why-card::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -54px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(68, 167, 255, 0.18), transparent 68%);
    filter: blur(14px);
    opacity: 0.82;
    transition: opacity 300ms ease, transform 300ms ease;
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.24);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.065)),
        rgba(255, 255, 255, 0.082);
    box-shadow: 0 32px 88px rgba(0, 0, 0, 0.38), 0 18px 48px rgba(68, 167, 255, 0.16);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover::after {
    opacity: 1;
    transform: scale(1.16);
}

.why-card:nth-child(even)::after {
    background:
        radial-gradient(circle, rgba(255, 159, 67, 0.18), transparent 68%);
}

.why-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 76px;
    height: 76px;
    margin-bottom: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
        rgba(68, 167, 255, 0.13);
    box-shadow:
        0 0 0 1px rgba(68, 167, 255, 0.08),
        0 18px 42px rgba(68, 167, 255, 0.26),
        18px 14px 46px rgba(255, 159, 67, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.why-icon::before {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 34% 38%, rgba(68, 167, 255, 0.28), transparent 46%),
        radial-gradient(circle at 72% 62%, rgba(255, 159, 67, 0.18), transparent 42%);
    filter: blur(16px);
    opacity: 0.74;
    transition: opacity 300ms ease, transform 300ms ease;
}

.why-card:nth-child(even) .why-icon {
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
        rgba(255, 159, 67, 0.13);
    box-shadow:
        0 0 0 1px rgba(255, 159, 67, 0.08),
        0 18px 42px rgba(255, 159, 67, 0.23),
        18px 14px 46px rgba(68, 167, 255, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.why-card:hover .why-icon {
    transform: translateY(-3px) scale(1.07);
    box-shadow:
        0 0 0 1px rgba(68, 167, 255, 0.12),
        0 24px 58px rgba(68, 167, 255, 0.34),
        20px 16px 54px rgba(255, 159, 67, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.why-card:nth-child(even):hover .why-icon {
    box-shadow:
        0 0 0 1px rgba(255, 159, 67, 0.12),
        0 24px 58px rgba(255, 159, 67, 0.32),
        20px 16px 54px rgba(68, 167, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.why-card:hover .why-icon::before {
    opacity: 1;
    transform: scale(1.15);
}

.why-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3,
.why-card p {
    position: relative;
    z-index: 1;
}

.why-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0;
}

.why-card p {
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.72;
}

/* How It Works */

.how-it-works {
    position: relative;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 104px;
    padding-top: 18px;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: 92px;
    left: 50%;
    z-index: -1;
    width: min(980px, 94vw);
    height: 360px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 28% 44%, rgba(68, 167, 255, 0.17), transparent 38%),
        radial-gradient(circle at 74% 42%, rgba(255, 159, 67, 0.15), transparent 36%);
    filter: blur(64px);
    transform: translateX(-50%);
    pointer-events: none;
}

.workflow-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.workflow-grid::before {
    content: "";
    position: absolute;
    top: 66px;
    left: 9%;
    right: 9%;
    height: 1px;
    z-index: 0;
    background: linear-gradient(90deg, rgba(68, 167, 255, 0), rgba(68, 167, 255, 0.78), rgba(255, 159, 67, 0.78), rgba(68, 167, 255, 0));
    background-size: 220% 100%;
    box-shadow: 0 0 26px rgba(68, 167, 255, 0.26), 0 0 30px rgba(255, 159, 67, 0.16);
    animation: workflow-line 5.2s linear infinite;
}

.workflow-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 330px;
    padding: 28px;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.055);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.workflow-card::before {
    content: attr(data-step);
    position: absolute;
    right: 18px;
    bottom: -18px;
    z-index: 0;
    color: rgba(255, 255, 255, 0.055);
    font-size: clamp(5.2rem, 8vw, 7.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    pointer-events: none;
}

.workflow-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    opacity: 0;
    background:
        radial-gradient(circle at 26% 18%, rgba(68, 167, 255, 0.24), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 159, 67, 0.17), transparent 30%);
    transition: opacity 300ms ease;
    pointer-events: none;
}

.workflow-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.24);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.155), rgba(255, 255, 255, 0.065)),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 88px rgba(0, 0, 0, 0.38), 0 18px 48px rgba(68, 167, 255, 0.14);
}

.workflow-card:hover::after {
    opacity: 1;
}

.workflow-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 76px;
    height: 76px;
    margin-bottom: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
        rgba(68, 167, 255, 0.13);
    box-shadow:
        0 0 0 1px rgba(68, 167, 255, 0.08),
        0 18px 42px rgba(68, 167, 255, 0.25),
        18px 14px 46px rgba(255, 159, 67, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.workflow-icon::before {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 34% 38%, rgba(68, 167, 255, 0.28), transparent 46%),
        radial-gradient(circle at 72% 62%, rgba(255, 159, 67, 0.18), transparent 42%);
    filter: blur(16px);
    opacity: 0.74;
    transition: opacity 300ms ease, transform 300ms ease;
}

.workflow-card:nth-child(even) .workflow-icon {
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
        rgba(255, 159, 67, 0.13);
    box-shadow:
        0 0 0 1px rgba(255, 159, 67, 0.08),
        0 18px 42px rgba(255, 159, 67, 0.23),
        18px 14px 46px rgba(68, 167, 255, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.workflow-card:hover .workflow-icon {
    transform: translateY(-3px) scale(1.07);
    box-shadow:
        0 0 0 1px rgba(68, 167, 255, 0.12),
        0 24px 58px rgba(68, 167, 255, 0.34),
        20px 16px 54px rgba(255, 159, 67, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.workflow-card:nth-child(even):hover .workflow-icon {
    box-shadow:
        0 0 0 1px rgba(255, 159, 67, 0.12),
        0 24px 58px rgba(255, 159, 67, 0.32),
        20px 16px 54px rgba(68, 167, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.workflow-card:hover .workflow-icon::before {
    opacity: 1;
    transform: scale(1.15);
}

.workflow-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workflow-kicker,
.workflow-card h3,
.workflow-card p {
    position: relative;
    z-index: 1;
}

.workflow-kicker {
    display: block;
    margin-bottom: 12px;
    color: #b9dcff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workflow-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0;
}

.workflow-card p {
    margin: 15px 0 0;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.7;
}

@keyframes workflow-line {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 220% 50%;
    }
}

/* Interactive Dashboard */

.interactive-dashboard {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 112px;
    padding: 42px 0 26px;
}

.interactive-dashboard::before,
.interactive-dashboard::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
}

.interactive-dashboard::before {
    top: 16%;
    right: 2%;
    width: min(560px, 52vw);
    height: 360px;
    background:
        radial-gradient(circle at 34% 42%, rgba(68, 167, 255, 0.28), transparent 45%),
        radial-gradient(circle at 74% 54%, rgba(255, 159, 67, 0.18), transparent 40%);
    filter: blur(66px);
}

.interactive-dashboard::after {
    left: 6%;
    bottom: 2%;
    width: 280px;
    height: 220px;
    background: rgba(68, 167, 255, 0.12);
    filter: blur(58px);
}

.dashboard-showcase-content {
    position: relative;
    z-index: 2;
}

.dashboard-showcase-heading {
    margin: 0 0 30px;
    text-align: left;
}

.dashboard-showcase-heading h2 {
    font-size: clamp(2.35rem, 4.8vw, 4.35rem);
}

.dashboard-showcase-heading p {
    margin-left: 0;
}

.dashboard-feature-list {
    display: grid;
    gap: 12px;
    max-width: 460px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dashboard-feature-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 58px;
    padding: 12px 15px;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    color: var(--text);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.052);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 0.98rem;
    font-weight: 700;
    transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.dashboard-feature-list li:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.2);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 12px 30px rgba(68, 167, 255, 0.1);
}

.dashboard-feature-icon {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #ffffff;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(68, 167, 255, 0.13);
    box-shadow: 0 12px 28px rgba(68, 167, 255, 0.22), 10px 8px 30px rgba(255, 159, 67, 0.1);
}

.dashboard-feature-list li:nth-child(even) .dashboard-feature-icon {
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(255, 159, 67, 0.13);
    box-shadow: 0 12px 28px rgba(255, 159, 67, 0.2), 10px 8px 30px rgba(68, 167, 255, 0.1);
}

.dashboard-feature-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dashboard-showcase-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform: translateY(-50px);
}

.dashboard-showcase-frame {
    position: relative;
    overflow: hidden;
    width: min(100%, 560px);
    max-height: 430px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.45), 0 24px 70px rgba(68, 167, 255, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(0) rotate(-2deg);
    animation: dashboard-showcase-float 5.8s ease-in-out infinite;
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.dashboard-showcase-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(255, 159, 67, 0.12), transparent 34%);
    pointer-events: none;
}

.dashboard-showcase-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    pointer-events: none;
}

.dashboard-showcase-frame img {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 0;
    max-height: 406px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(7, 19, 33, 0.42);
}

.dashboard-showcase-frame:hover {
    animation-play-state: paused;
    transform: translateY(-10px) rotate(-1deg) scale(1.01);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 44px 118px rgba(0, 0, 0, 0.5), 0 30px 86px rgba(68, 167, 255, 0.26);
}

@keyframes dashboard-showcase-float {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-12px) rotate(-2deg);
    }
}

/* Executive Reports */

.executive-reports {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(480px, 1.18fr);
    gap: clamp(36px, 5vw, 76px);
    align-items: center;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 112px;
    padding: 34px 0 28px;
}

.executive-reports::before,
.executive-reports::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
}

.executive-reports::before {
    top: 10%;
    right: 4%;
    width: min(520px, 50vw);
    height: 420px;
    background:
        radial-gradient(circle at 38% 38%, rgba(68, 167, 255, 0.24), transparent 44%),
        radial-gradient(circle at 70% 62%, rgba(255, 159, 67, 0.2), transparent 42%);
    filter: blur(68px);
}

.executive-reports::after {
    left: 2%;
    bottom: 10%;
    width: 310px;
    height: 240px;
    background: rgba(255, 159, 67, 0.1);
    filter: blur(60px);
}

.reports-content {
    position: relative;
    z-index: 2;
}

.reports-heading {
    margin: 0 0 30px;
    text-align: left;
}

.reports-heading h2 {
    font-size: clamp(2.35rem, 4.8vw, 4.35rem);
}

.reports-heading p {
    margin-left: 0;
}

.reports-checklist {
    display: grid;
    gap: 12px;
    max-width: 460px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.reports-checklist li {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 58px;
    padding: 12px 15px;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    color: var(--text);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.052);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 0.98rem;
    font-weight: 700;
    transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.reports-checklist li:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.2);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 12px 30px rgba(255, 159, 67, 0.1);
}

.reports-check-icon {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #ffffff;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(68, 167, 255, 0.13);
    box-shadow: 0 12px 28px rgba(68, 167, 255, 0.22), 10px 8px 30px rgba(255, 159, 67, 0.1);
}

.reports-checklist li:nth-child(even) .reports-check-icon {
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(255, 159, 67, 0.13);
    box-shadow: 0 12px 28px rgba(255, 159, 67, 0.2), 10px 8px 30px rgba(68, 167, 255, 0.1);
}

.reports-check-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reports-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    color: #06101c;
    background: linear-gradient(135deg, #ffffff 0%, #9ed8ff 47%, #ffac55 100%);
    box-shadow: 0 18px 40px rgba(68, 167, 255, 0.26), 0 12px 35px rgba(255, 159, 67, 0.14);
    font-weight: 800;
    line-height: 1;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.reports-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(68, 167, 255, 0.34), 0 18px 44px rgba(255, 159, 67, 0.18);
}

.reports-preview {
    position: relative;
    z-index: 1;
    display: flex;
    align-self: center;
    justify-content: center;
    perspective: 1200px;
}

.reports-frame {
    position: relative;
    overflow: hidden;
    width: min(100%, 520px);
    max-height: 430px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.45), 0 24px 70px rgba(255, 159, 67, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(0) rotate(2deg);
    animation: reports-float 6s ease-in-out infinite;
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.reports-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 32%),
        radial-gradient(circle at 12% 12%, rgba(68, 167, 255, 0.13), transparent 34%);
    pointer-events: none;
}

.reports-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    pointer-events: none;
}

.reports-frame img {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 0;
    max-height: 406px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(7, 19, 33, 0.42);
}

.reports-frame:hover {
    animation-play-state: paused;
    transform: translateY(-10px) rotate(1deg) scale(1.01);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 44px 118px rgba(0, 0, 0, 0.5), 0 30px 86px rgba(255, 159, 67, 0.24);
}

@keyframes reports-float {
    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

/* Platform Capabilities */

.platform-capabilities {
    position: relative;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 112px;
    padding: 30px 0 10px;
}

.platform-capabilities::before {
    content: "";
    position: absolute;
    top: 86px;
    left: 50%;
    z-index: -1;
    width: min(980px, 94vw);
    height: 420px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 24% 44%, rgba(68, 167, 255, 0.18), transparent 40%),
        radial-gradient(circle at 76% 40%, rgba(255, 159, 67, 0.16), transparent 36%);
    filter: blur(66px);
    transform: translateX(-50%);
    pointer-events: none;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.capability-card {
    position: relative;
    overflow: hidden;
    min-height: 286px;
    padding: 26px;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.055);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.capability-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    opacity: 0;
    background:
        radial-gradient(circle at 24% 18%, rgba(68, 167, 255, 0.24), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 159, 67, 0.17), transparent 30%);
    transition: opacity 300ms ease;
    pointer-events: none;
}

.capability-card::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -52px;
    width: 144px;
    height: 144px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(68, 167, 255, 0.16), transparent 68%);
    filter: blur(14px);
    opacity: 0.82;
    transition: opacity 300ms ease, transform 300ms ease;
    pointer-events: none;
}

.capability-card:nth-child(even)::after {
    background: radial-gradient(circle, rgba(255, 159, 67, 0.16), transparent 68%);
}

.capability-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255, 255, 255, 0.24);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.155), rgba(255, 255, 255, 0.065)),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 88px rgba(0, 0, 0, 0.38), 0 18px 48px rgba(68, 167, 255, 0.14);
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-card:hover::after {
    opacity: 1;
    transform: scale(1.14);
}

.capability-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
        rgba(68, 167, 255, 0.13);
    box-shadow:
        0 0 0 1px rgba(68, 167, 255, 0.08),
        0 18px 42px rgba(68, 167, 255, 0.25),
        18px 14px 46px rgba(255, 159, 67, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.capability-icon::before {
    content: "";
    position: absolute;
    inset: -16px;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 34% 38%, rgba(68, 167, 255, 0.28), transparent 46%),
        radial-gradient(circle at 72% 62%, rgba(255, 159, 67, 0.18), transparent 42%);
    filter: blur(16px);
    opacity: 0.74;
    transition: opacity 300ms ease, transform 300ms ease;
}

.capability-card:nth-child(even) .capability-icon {
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
        rgba(255, 159, 67, 0.13);
    box-shadow:
        0 0 0 1px rgba(255, 159, 67, 0.08),
        0 18px 42px rgba(255, 159, 67, 0.23),
        18px 14px 46px rgba(68, 167, 255, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.capability-card:hover .capability-icon {
    transform: translateY(-3px) scale(1.07);
    box-shadow:
        0 0 0 1px rgba(68, 167, 255, 0.12),
        0 24px 58px rgba(68, 167, 255, 0.34),
        20px 16px 54px rgba(255, 159, 67, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.capability-card:nth-child(even):hover .capability-icon {
    box-shadow:
        0 0 0 1px rgba(255, 159, 67, 0.12),
        0 24px 58px rgba(255, 159, 67, 0.32),
        20px 16px 54px rgba(68, 167, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.capability-card:hover .capability-icon::before {
    opacity: 1;
    transform: scale(1.15);
}

.capability-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.capability-card h3,
.capability-card p {
    position: relative;
    z-index: 1;
}

.capability-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0;
}

.capability-card p {
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.68;
}

/* Solutions */

.solutions-section {
    position: relative;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 112px;
    padding: 28px 0 10px;
}

.solutions-section::before,
.solutions-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
}

.solutions-section::before {
    top: 170px;
    left: 18%;
    width: min(520px, 56vw);
    height: 420px;
    background: rgba(68, 167, 255, 0.2);
    filter: blur(72px);
}

.solutions-section::after {
    right: 8%;
    bottom: 0;
    width: min(420px, 44vw);
    height: 320px;
    background: rgba(255, 159, 67, 0.12);
    filter: blur(68px);
}

.solutions-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 22px;
    align-items: stretch;
}

.solution-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.055);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    opacity: 0;
    background:
        radial-gradient(circle at 24% 18%, rgba(68, 167, 255, 0.22), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 159, 67, 0.15), transparent 30%);
    transition: opacity 300ms ease;
    pointer-events: none;
}

.solution-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255, 255, 255, 0.24);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.078);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card-primary {
    min-height: 560px;
    padding: clamp(30px, 4vw, 42px);
    box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42), 0 24px 76px rgba(68, 167, 255, 0.2);
}

.solution-card-primary::after {
    content: "";
    position: absolute;
    top: 16%;
    left: -16%;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(68, 167, 255, 0.24), transparent 66%);
    filter: blur(18px);
    pointer-events: none;
}

.solution-card-primary:hover {
    box-shadow: 0 42px 116px rgba(0, 0, 0, 0.48), 0 30px 88px rgba(68, 167, 255, 0.28);
}

.solution-card-secondary {
    min-height: 520px;
    align-self: center;
    padding: clamp(28px, 3.5vw, 36px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 18px 52px rgba(255, 159, 67, 0.1);
}

.solution-card-top,
.solution-card h3,
.solution-card p,
.solution-feature-list,
.solution-services,
.solution-cta-primary,
.solution-cta-secondary {
    position: relative;
    z-index: 1;
}

.solution-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 34px;
}

.solution-icon {
    position: relative;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
        rgba(68, 167, 255, 0.13);
    box-shadow:
        0 0 0 1px rgba(68, 167, 255, 0.08),
        0 18px 42px rgba(68, 167, 255, 0.27),
        18px 14px 46px rgba(255, 159, 67, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.solution-icon::before {
    content: "";
    position: absolute;
    inset: -17px;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 34% 38%, rgba(68, 167, 255, 0.3), transparent 46%),
        radial-gradient(circle at 72% 62%, rgba(255, 159, 67, 0.18), transparent 42%);
    filter: blur(16px);
    opacity: 0.78;
    transition: opacity 300ms ease, transform 300ms ease;
}

.solution-card-secondary .solution-icon {
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
        rgba(255, 159, 67, 0.13);
    box-shadow:
        0 0 0 1px rgba(255, 159, 67, 0.08),
        0 18px 42px rgba(255, 159, 67, 0.23),
        18px 14px 46px rgba(68, 167, 255, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.solution-card:hover .solution-icon {
    transform: translateY(-3px) scale(1.06);
}

.solution-card:hover .solution-icon::before {
    opacity: 1;
    transform: scale(1.14);
}

.solution-icon svg {
    width: 33px;
    height: 33px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(68, 167, 255, 0.28);
    border-radius: 999px;
    color: #b9dcff;
    background: rgba(68, 167, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 32px rgba(68, 167, 255, 0.12);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solution-card h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
}

.solution-card-secondary h3 {
    font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}

.solution-card p {
    margin: 20px 0 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.solution-card-primary > p {
    max-width: 590px;
    font-size: 1.06rem;
}

.solution-feature-list {
    display: grid;
    gap: 13px;
    margin: 30px 0 34px;
    padding: 0;
    list-style: none;
}

.solution-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 700;
}

.solution-feature-list svg {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #8fd0ff;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 34px;
}

.solution-card-secondary .solution-services {
    margin: 42px 0 44px;
}

.solution-services span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    font-weight: 700;
}

.solution-cta-primary,
.solution-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
}

.solution-cta-primary {
    padding: 0 24px;
    color: #06101c;
    background: linear-gradient(135deg, #ffffff 0%, #9ed8ff 47%, #ffac55 100%);
    box-shadow: 0 20px 48px rgba(68, 167, 255, 0.3), 0 14px 38px rgba(255, 159, 67, 0.16);
}

.solution-cta-secondary {
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.solution-cta-primary:hover,
.solution-cta-secondary:hover {
    transform: translateY(-3px);
}

.solution-cta-primary:hover {
    box-shadow: 0 26px 62px rgba(68, 167, 255, 0.38), 0 20px 48px rgba(255, 159, 67, 0.2);
}

.solution-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* FAQ */

.faq-section {
    position: relative;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 112px;
    padding: 28px 0 10px;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 50%;
    z-index: -1;
    width: min(860px, 90vw);
    height: 380px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 28% 42%, rgba(68, 167, 255, 0.17), transparent 40%),
        radial-gradient(circle at 74% 44%, rgba(255, 159, 67, 0.14), transparent 36%);
    filter: blur(66px);
    transform: translateX(-50%);
    pointer-events: none;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.055);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: -1px;
    opacity: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(68, 167, 255, 0.18), transparent 32%),
        radial-gradient(circle at 92% 18%, rgba(255, 159, 67, 0.14), transparent 30%);
    transition: opacity 300ms ease;
    pointer-events: none;
}

.faq-item:hover,
.faq-item.is-open {
    border-color: rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.072);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.32), 0 14px 38px rgba(68, 167, 255, 0.11);
}

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

.faq-item.is-open::before {
    opacity: 1;
}

.faq-question {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 24px 26px;
    border: 0;
    color: var(--text);
    background: transparent;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: #b9dcff;
    transition: transform 300ms ease, color 300ms ease;
}

.faq-item.is-open .faq-question svg {
    color: #ffb15f;
    transform: rotate(180deg);
}

.faq-answer {
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 26px 24px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.72;
}

/* Final CTA */

.final-cta-section {
    position: relative;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 112px;
    padding: 28px 0 10px;
}

.final-cta-section::before,
.final-cta-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
}

.final-cta-section::before {
    top: 4%;
    left: 50%;
    width: min(760px, 82vw);
    height: 420px;
    background:
        radial-gradient(circle at 32% 42%, rgba(68, 167, 255, 0.28), transparent 43%),
        radial-gradient(circle at 72% 56%, rgba(255, 159, 67, 0.22), transparent 40%);
    filter: blur(70px);
    transform: translateX(-50%);
}

.final-cta-section::after {
    right: 12%;
    bottom: -6%;
    width: 300px;
    height: 240px;
    background: rgba(68, 167, 255, 0.12);
    filter: blur(58px);
}

.final-cta-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 7vw, 82px) clamp(22px, 6vw, 72px);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 24px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 12%, rgba(68, 167, 255, 0.18), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(255, 159, 67, 0.16), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.135), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.06);
    box-shadow: 0 38px 110px rgba(0, 0, 0, 0.44), 0 28px 82px rgba(68, 167, 255, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.final-cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%);
    pointer-events: none;
}

.final-cta-panel h2,
.final-cta-panel p,
.final-cta-buttons,
.final-trust-list {
    position: relative;
    z-index: 1;
}

.final-cta-panel h2 {
    max-width: 880px;
    margin: 0 auto;
    color: var(--text);
    font-size: clamp(2.6rem, 6vw, 5.1rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.final-cta-panel p {
    max-width: 720px;
    margin: 24px auto 0;
    color: var(--text-muted);
    font-size: clamp(1.04rem, 1.8vw, 1.22rem);
    line-height: 1.72;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.final-cta-primary,
.final-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
}

.final-cta-primary {
    padding: 0 26px;
    color: #06101c;
    background: linear-gradient(135deg, #ffffff 0%, #9ed8ff 47%, #ffac55 100%);
    box-shadow: 0 22px 54px rgba(68, 167, 255, 0.34), 0 16px 42px rgba(255, 159, 67, 0.18);
}

.final-cta-secondary {
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--text);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.final-cta-primary:hover,
.final-cta-secondary:hover {
    transform: translateY(-3px) scale(1.025);
}

.final-cta-primary:hover {
    box-shadow: 0 28px 68px rgba(68, 167, 255, 0.42), 0 20px 52px rgba(255, 159, 67, 0.22);
}

.final-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.final-trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.final-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.065);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.final-trust-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.095);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28), 0 12px 30px rgba(68, 167, 255, 0.1);
}

.final-trust-icon {
    display: grid;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(68, 167, 255, 0.13);
    box-shadow: 0 10px 24px rgba(68, 167, 255, 0.2), 8px 6px 24px rgba(255, 159, 67, 0.1);
}

.final-trust-badge:nth-child(even) .final-trust-icon {
    background: rgba(255, 159, 67, 0.13);
    box-shadow: 0 10px 24px rgba(255, 159, 67, 0.18), 8px 6px 24px rgba(68, 167, 255, 0.1);
}

.final-trust-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer */

.site-footer {
    position: relative;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto 64px;
    padding: 34px 0 0;
    color: var(--text-muted);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(68, 167, 255, 0.22), rgba(255, 159, 67, 0.18), rgba(255, 255, 255, 0));
    box-shadow: 0 0 28px rgba(68, 167, 255, 0.18);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.55fr) minmax(220px, 0.7fr);
    gap: clamp(28px, 5vw, 72px);
    padding-bottom: 30px;
}

.footer-brand h2,
.footer-nav h3,
.footer-contact h3 {
    margin: 0;
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0;
}

.footer-brand h2 {
    font-size: 1.28rem;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-logo img {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    object-fit: contain;
    image-rendering: auto;
}

.footer-brand span {
    display: block;
    margin-top: 8px;
    color: #b9dcff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-brand p {
    max-width: 380px;
    margin: 14px 0 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-nav,
.footer-contact,
.footer-legal {
    display: flex;
}

.footer-nav,
.footer-contact {
    flex-direction: column;
    gap: 11px;
}

.footer-nav h3,
.footer-contact h3 {
    margin-bottom: 4px;
    font-size: 0.92rem;
}

.footer-nav a,
.footer-contact a,
.footer-legal a {
    color: var(--text-muted);
    font-size: 0.93rem;
    font-weight: 600;
    transition: color 220ms ease, transform 220ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
    color: var(--text);
    transform: translateX(3px);
}

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

.footer-legal {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

/* Responsive */

@media (max-width: 940px) {
    header {
        gap: 16px;
    }

    nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 76px;
    }

    .hero-left {
        text-align: center;
    }

    .hero p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .dashboard-card {
        max-width: 680px;
        margin: 0 auto;
        transform: none;
    }

    @keyframes float-card {
        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

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

    .overview-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }

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

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

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

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

    .dashboard-showcase-heading,
    .dashboard-showcase-heading p {
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }

    .dashboard-feature-list {
        max-width: 620px;
        margin: 0 auto;
    }

    .dashboard-showcase-frame {
        max-width: 560px;
        margin: 0 auto;
        transform: none;
    }

    .dashboard-showcase-visual {
        transform: none;
    }

    .executive-reports {
        grid-template-columns: 1fr;
    }

    .reports-heading,
    .reports-heading p {
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }

    .reports-checklist {
        max-width: 620px;
        margin-right: auto;
        margin-left: auto;
    }

    .reports-content {
        text-align: center;
    }

    .reports-frame {
        max-width: 680px;
        margin: 0 auto;
        transform: none;
    }

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

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

    .solution-card-secondary {
        align-self: stretch;
    }

    .faq-list {
        max-width: 760px;
    }

    @keyframes dashboard-showcase-float {
        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes reports-float {
        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }
}

@media (max-width: 620px) {
    header {
        top: 10px;
        width: min(calc(100% - 24px), var(--container));
        padding: 10px;
    }

    .logo span {
        display: none;
    }

    .btn-nav {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .hero {
        width: min(calc(100% - 24px), var(--container));
        padding: 58px 0 38px;
    }

    .badge {
        font-size: 0.68rem;
    }

    h1 {
        font-size: clamp(2.5rem, 15vw, 4.1rem);
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .dashboard-card,
    .dashboard-card img {
        min-height: 260px;
    }

    .metrics {
        grid-template-columns: 1fr;
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 30px;
    }

    .metric {
        padding: 22px;
    }

    .platform-overview {
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 54px;
        padding-top: 24px;
    }

    .section-heading {
        margin-bottom: 26px;
        text-align: left;
    }

    .platform-overview .section-heading {
        margin-bottom: 6px;
    }

    .section-heading h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .overview-content {
        padding: 6px 20px 22px;
    }

    .why-kpi {
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 58px;
    }

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

    .why-card {
        min-height: auto;
        padding: 22px;
    }

    .how-it-works {
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 58px;
        padding-top: 8px;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .workflow-grid::before {
        display: block;
        top: 20px;
        bottom: 20px;
        left: 38px;
        right: auto;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, rgba(68, 167, 255, 0), rgba(68, 167, 255, 0.78), rgba(255, 159, 67, 0.78), rgba(68, 167, 255, 0));
        background-size: 100% 220%;
        animation: workflow-line-mobile 5.2s linear infinite;
    }

    .workflow-card {
        min-height: auto;
        padding: 24px 22px 24px 96px;
    }

    .workflow-icon {
        position: absolute;
        top: 24px;
        left: 20px;
        width: 52px;
        height: 52px;
        margin-bottom: 0;
    }

    .workflow-icon::before {
        inset: -12px;
    }

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

    .interactive-dashboard {
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 58px;
        padding-top: 8px;
    }

    .dashboard-showcase-heading {
        margin-bottom: 24px;
        text-align: left;
    }

    .dashboard-showcase-heading h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .dashboard-showcase-heading p {
        text-align: left;
    }

    .dashboard-feature-list li {
        min-height: 54px;
        padding: 11px 13px;
    }

    .dashboard-showcase-frame,
    .dashboard-showcase-frame img {
        min-height: 0;
    }

    .executive-reports {
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 58px;
        padding-top: 8px;
    }

    .reports-heading {
        margin-bottom: 24px;
        text-align: left;
    }

    .reports-heading h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .reports-heading p {
        text-align: left;
    }

    .reports-content {
        text-align: left;
    }

    .reports-checklist li {
        min-height: 54px;
        padding: 11px 13px;
    }

    .reports-cta {
        width: 100%;
    }

    .reports-frame,
    .reports-frame img {
        min-height: 0;
    }

    .platform-capabilities {
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 58px;
        padding-top: 8px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .capability-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .capability-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 24px;
    }

    .capability-icon svg {
        width: 28px;
        height: 28px;
    }

    .solutions-section {
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 58px;
        padding-top: 8px;
    }

    .solutions-grid {
        gap: 16px;
    }

    .solution-card-primary,
    .solution-card-secondary {
        min-height: auto;
        padding: 24px 22px;
    }

    .solution-card-top {
        margin-bottom: 26px;
    }

    .solution-icon {
        width: 60px;
        height: 60px;
    }

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

    .solution-badge {
        min-height: 30px;
        padding: 0 11px;
        font-size: 0.68rem;
    }

    .solution-card h3,
    .solution-card-secondary h3 {
        font-size: clamp(1.55rem, 9vw, 2.2rem);
    }

    .solution-cta-primary,
    .solution-cta-secondary {
        width: 100%;
    }

    .faq-section {
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 58px;
        padding-top: 8px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-question {
        padding: 20px 18px;
        font-size: 0.98rem;
    }

    .faq-answer p {
        padding: 0 18px 20px;
    }

    .final-cta-section {
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 58px;
        padding-top: 8px;
    }

    .final-cta-panel h2 {
        font-size: clamp(2.2rem, 12vw, 3.8rem);
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-primary,
    .final-cta-secondary {
        width: 100%;
    }

    .final-trust-list {
        flex-direction: column;
        align-items: stretch;
    }

    .final-trust-badge {
        justify-content: center;
        border-radius: 18px;
    }

    .site-footer {
        width: min(calc(100% - 24px), var(--container));
        margin-bottom: 48px;
    }

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

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

    .footer-legal {
        justify-content: flex-start;
    }

}

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

@keyframes workflow-line-mobile {
    0% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 50% 220%;
    }
}
