:root {
    --blue: #075eea;
    --blue-dark: #004bc6;
    --ink: #020817;
    --muted: #61708a;
    --soft: #f6f9ff;
    --line: #e7edf7;
    --navy: #020917;
    --white: #ffffff;
    --shadow: 0 22px 55px rgba(15, 37, 71, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Inter", Arial, sans-serif;
    letter-spacing: 0;
}

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

.site {
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 15%, rgba(7, 94, 234, .06), transparent 28rem),
        linear-gradient(180deg, #fff 0%, #f9fbff 36%, #fff 68%);
}

.container {
    width: min(100% - 48px, 1240px);
    margin: 0 auto;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(226, 232, 240, .85);
    backdrop-filter: blur(16px);
}

.nav-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    line-height: 0;
}

.brand img {
    display: block;
    width: 152px;
    height: auto;
}

.nav-menu,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 46px;
    font-size: 14px;
    font-weight: 600;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-menu a,
.nav-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    padding: 0;
    color: #111827;
    background: transparent;
    font: inherit;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

.nav-trigger {
    height: 76px;
}

.nav-menu a.has-dropdown::after {
    content: none;
}

.nav-menu a i,
.nav-trigger i {
    color: currentColor;
    font-size: 10px;
    transition: transform .2s ease;
}

.nav-menu a.active,
.nav-trigger.active {
    color: var(--blue);
}

.nav-trigger.active i {
    transform: rotate(180deg);
}

.nav-product {
    position: static;
}

.mega-menu-wrap {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: grid-template-rows .38s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity .28s cubic-bezier(0.16, 1, 0.3, 1), 
                transform .38s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu-wrap.active {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu {
    min-height: 0;
    overflow: hidden;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #e7edf6;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(15, 37, 71, 0.08);
    transform: scale(.985);
    transform-origin: top center;
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu-wrap.active .mega-menu {
    transform: scale(1);
}

/* Backdrop Dark Overlay (No Blur, matching Odoo) */
.mega-menu-overlay {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 76px);
    background: rgba(2, 9, 23, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s ease;
    z-index: 15;
    pointer-events: none;
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--blue);
    opacity: 0;
    transform: scaleX(.4);
    transition: .2s ease;
}

.nav-trigger.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 45px;
    padding: 40px 0 35px;
}

.mega-module {
    min-height: auto;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    will-change: transform, opacity;
}

/* Stagger delays - 14 modules total */
.navbar.mega-open .mega-module:nth-child(1) { transition-delay: 0.02s; }
.navbar.mega-open .mega-module:nth-child(2) { transition-delay: 0.04s; }
.navbar.mega-open .mega-module:nth-child(3) { transition-delay: 0.06s; }
.navbar.mega-open .mega-module:nth-child(4) { transition-delay: 0.08s; }
.navbar.mega-open .mega-module:nth-child(5) { transition-delay: 0.10s; }
.navbar.mega-open .mega-module:nth-child(6) { transition-delay: 0.12s; }
.navbar.mega-open .mega-module:nth-child(7) { transition-delay: 0.14s; }
.navbar.mega-open .mega-module:nth-child(8) { transition-delay: 0.16s; }
.navbar.mega-open .mega-module:nth-child(9) { transition-delay: 0.18s; }
.navbar.mega-open .mega-module:nth-child(10) { transition-delay: 0.20s; }
.navbar.mega-open .mega-module:nth-child(11) { transition-delay: 0.22s; }
.navbar.mega-open .mega-module:nth-child(12) { transition-delay: 0.24s; }
.navbar.mega-open .mega-module:nth-child(13) { transition-delay: 0.26s; }
.navbar.mega-open .mega-module:nth-child(14) { transition-delay: 0.28s; }

.navbar.mega-open .mega-module {
    opacity: 1;
    transform: translateY(0);
}

.mega-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e7edf6;
}

.mega-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: 12px;
    flex: 0 0 28px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                background-color 0.3s ease, 
                color 0.3s ease;
}

.mega-module:hover .mega-icon {
    transform: scale(1.15) translateY(-1px);
}

.mega-head h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.mega-module ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.mega-module li {
    position: relative;
    padding-left: 0;
    color: #4b5563;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.mega-module li::before {
    content: none !important;
}

.mega-module li:hover {
    transform: translateX(4px);
}

/* Color Themes Styling (Uppercase headers & logo backgrounds) */
.mega-blue .mega-head { border-bottom-color: #075eea; }
.mega-blue .mega-head h3 { color: #075eea; }
.mega-blue .mega-icon { background: #eef5ff; color: #075eea; }
.mega-blue li:hover { color: #075eea; }

.mega-green .mega-head { border-bottom-color: #0ca655; }
.mega-green .mega-head h3 { color: #0ca655; }
.mega-green .mega-icon { background: #e8f7ee; color: #0ca655; }
.mega-green li:hover { color: #0ca655; }

.mega-orange .mega-head { border-bottom-color: #ff6417; }
.mega-orange .mega-head h3 { color: #ff6417; }
.mega-orange .mega-icon { background: #fff3ec; color: #ff6417; }
.mega-orange li:hover { color: #ff6417; }

.mega-purple .mega-head { border-bottom-color: #8b20ff; }
.mega-purple .mega-head h3 { color: #8b20ff; }
.mega-purple .mega-icon { background: #f4ecff; color: #8b20ff; }
.mega-purple li:hover { color: #8b20ff; }

.mega-pink .mega-head { border-bottom-color: #ef3c75; }
.mega-pink .mega-head h3 { color: #ef3c75; }
.mega-pink .mega-icon { background: #fdf2f5; color: #ef3c75; }
.mega-pink li:hover { color: #ef3c75; }

.mega-teal .mega-head { border-bottom-color: #0f9f8f; }
.mega-teal .mega-head h3 { color: #0f9f8f; }
.mega-teal .mega-icon { background: #e7f7f5; color: #0f9f8f; }
.mega-teal li:hover { color: #0f9f8f; }

.mega-cyan .mega-head { border-bottom-color: #0f9bd3; }
.mega-cyan .mega-head h3 { color: #0f9bd3; }
.mega-cyan .mega-icon { background: #e7f5fa; color: #0f9bd3; }
.mega-cyan li:hover { color: #0f9bd3; }

.mega-gold .mega-head { border-bottom-color: #d69413; }
.mega-gold .mega-head h3 { color: #d69413; }
.mega-gold .mega-icon { background: #fcf5e7; color: #d69413; }
.mega-gold li:hover { color: #d69413; }

.mega-footer {
    padding: 20px 163px;
    border-top: 1px solid #e7edf6;
    background: #fbfdff;
}

.mega-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
}

.mega-footer-help {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mega-help-icon {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 10px;
    color: var(--blue);
    background: #eef5ff;
    font-size: 18px;
}

.mega-footer-text strong {
    display: block;
    color: #17233a;
    font-size: 15px;
    font-weight: 700;
}

.mega-footer-text p {
    margin: 5px 0 0;
    color: #718096;
    font-size: 13px;
    font-weight: 500;
}

.mega-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid var(--blue);
    border-radius: 7px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.mega-cta:hover {
    background: var(--blue);
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-actions {
    gap: 22px;
}

.btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    transition: .2s ease;
}

.btn-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 24px rgba(7, 94, 234, .2);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.btn-light {
    color: var(--blue);
    background: #fff;
    border-color: rgba(255, 255, 255, .55);
    box-shadow: 0 20px 38px rgba(0, 20, 70, .18);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .05);
}

.trusted {
    padding: 62px 0 50px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .58);
}

.eyebrow {
    margin: 0 0 32px;
    color: #53627a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 34px;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 0;
    color: #7b8799;
}

.client-logo svg {
    width: 32px;
    height: 32px;
    color: #778397;
    flex: 0 0 auto;
}

.client-logo strong {
    display: block;
    color: #717d91;
    font-size: 23px;
    line-height: 1;
    white-space: nowrap;
}

.client-logo small {
    display: block;
    margin-top: 7px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hero {
    position: relative;
    padding: 42px 0 58px;
    min-height: 610px;
}

.hero::before,
.cta::before,
.steps::before {
    content: "";
    position: absolute;
    inset: auto auto -110px -90px;
    width: 470px;
    height: 360px;
    background:
        repeating-radial-gradient(ellipse at 0% 100%, rgba(7, 94, 234, .16) 0 1px, transparent 2px 13px);
    opacity: .52;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 56px;
    align-items: center;
}

.section-kicker {
    margin: 0 0 27px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.hero h1,
.choice h2,
.steps h2,
.cta h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 span,
.choice h2 span {
    display: block;
    color: var(--blue);
}

.hero h1.home-hero-title {
    font-size: clamp(34px, 4vw, 44px);
}

.hero-copy {
    margin: 24px 0 28px;
    color: #53627a;
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.btn-secondary {
    color: #0f172a;
    background: #fff;
    border-color: #e5ebf5;
    box-shadow: 0 12px 28px rgba(15, 37, 71, .06);
}

.module-dots {
    color: var(--blue);
    font-size: 17px;
}

.hero-trust {
    position: relative;
    margin: 24px 0 0;
    padding-left: 25px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.hero-trust::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 15px;
    height: 15px;
    border: 2px solid #7b8799;
    border-radius: 50% 50% 45% 45%;
    background: linear-gradient(180deg, transparent 45%, rgba(123, 135, 153, .18) 46%);
}

.link-arrow {
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
}

.module-stage {
    position: relative;
    min-height: 470px;
}

.orbit {
    position: absolute;
    inset: 6% 5% 3% 2%;
    border: 1px dashed rgba(7, 94, 234, .22);
    border-radius: 48% 52% 46% 54%;
    transform: rotate(-9deg);
}

.orbit:nth-child(2) {
    inset: 14% 15% 13% 9%;
    transform: rotate(13deg);
    opacity: .6;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0b68ff;
    box-shadow: 0 0 0 5px rgba(7, 94, 234, .09);
}

.dot:nth-of-type(3) {
    top: 3%;
    left: 47%;
}

.dot:nth-of-type(4) {
    top: 19%;
    left: 6%;
}

.dot:nth-of-type(5) {
    top: 44%;
    left: 88%;
}

.dot:nth-of-type(6) {
    top: 67%;
    left: 51%;
}

.dot:nth-of-type(7) {
    top: 91%;
    left: 71%;
}

.module-grid {
    position: relative;
    z-index: 2;
    width: 410px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
    margin-left: 34px;
}

.module-card {
    min-height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(226, 232, 240, .85);
    border-radius: 12px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 800;
}

.module-card:nth-child(1),
.module-card:nth-child(3) {
    transform: translateY(-10px);
}

.module-card:nth-child(7) {
    grid-column: 2;
}

.module-card:nth-child(8) {
    grid-column: 3;
    grid-row: 3;
}

.module-card svg,
.feature-card svg {
    width: 27px;
    height: 27px;
    color: var(--blue);
    stroke-width: 2;
}

.analytics-card {
    position: absolute;
    z-index: 3;
    top: 76px;
    right: 0;
    width: 230px;
    padding: 18px 16px 16px;
    border: 1px solid rgba(203, 213, 225, .75);
    border-radius: 17px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 26px 60px rgba(7, 94, 234, .22);
    backdrop-filter: blur(12px);
}

.analytics-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-weight: 800;
}

.analytics-head span:last-child {
    padding: 8px 10px;
    color: #778397;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
}

.stat-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.mini-stat {
    min-height: 66px;
    padding: 11px;
    border: 1px solid #edf2fa;
    border-radius: 10px;
    background: #fff;
}

.mini-stat small {
    color: #758195;
    font-size: 10px;
    font-weight: 700;
}

.mini-stat strong {
    display: block;
    margin-top: 7px;
    font-size: 22px;
}

.mini-stat .danger {
    color: #ff1f36;
}

.bar-chart {
    height: 96px;
    display: flex;
    align-items: end;
    gap: 8px;
    padding: 8px 0 0;
    border-bottom: 1px solid #dbe6f5;
}

.bar {
    width: 7px;
    min-height: 17px;
    background: #0a67ff;
    border-radius: 4px 4px 0 0;
}

.bar:nth-child(even) {
    background: #c9dcff;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #7b8799;
    font-size: 10px;
    font-weight: 700;
}

.steps {
    position: relative;
    padding: 28px 0 26px;
    color: #fff;
    background: #fff;
}

.steps::before {
    display: none;
}

.steps .container {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 28px 56px 34px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 23% 64%, rgba(7, 94, 234, .2), transparent 22rem),
        radial-gradient(circle at 73% 48%, rgba(7, 94, 234, .16), transparent 24rem),
        linear-gradient(135deg, #020611 0%, #061326 52%, #020713 100%);
}

.steps .container::before,
.steps .container::after {
    content: "";
    position: absolute;
    bottom: -125px;
    width: 390px;
    height: 235px;
    opacity: .42;
    pointer-events: none;
}

.steps .container::before {
    left: -80px;
    background:
        repeating-radial-gradient(ellipse at 0% 100%, rgba(7, 94, 234, .55) 0 2px, transparent 3px 15px);
}

.steps .container::after {
    right: -80px;
    background:
        repeating-radial-gradient(ellipse at 100% 100%, rgba(7, 94, 234, .55) 0 2px, transparent 3px 15px);
}

.steps .eyebrow {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 8px;
    font-size: 9px;
}

.steps h2 {
    text-align: center;
    font-size: clamp(20px, 2vw, 28px);
}

.step-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: clamp(14px, 2.6vw, 48px);
    margin-top: 28px;
}

.step {
    flex: 1 1 0;
    min-width: 0;
    max-width: 270px;
    text-align: center;
}

.step-icon {
    position: relative;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border: 1px solid rgba(7, 94, 234, .65);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 94, 234, .18), rgba(7, 94, 234, .04) 62%, transparent 63%);
    box-shadow: 0 0 0 10px rgba(7, 94, 234, .05);
}

.step-icon i {
    color: #d9e7ff;
    font-size: 26px;
    line-height: 1;
}

.step-number {
    position: absolute;
    bottom: -10px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 2px solid #0b68ff;
    border-radius: 50%;
    background: #051427;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.step h3 {
    margin: 0 0 7px;
    font-size: 14px;
}

.step p {
    width: min(100%, 120px);
    margin: 0 auto;
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    line-height: 1.45;
}

.arrow {
    flex: 0 0 clamp(32px, 4vw, 58px);
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f8cff;
}

.arrow::before {
    content: "";
    width: 100%;
    height: 2px;
    background: currentColor;
}

.arrow::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: -10px;
}

.choice {
    padding: 84px 0 72px;
    background: #fff;
}

.page-hero {
    padding: 104px 0 76px;
    background:
        radial-gradient(circle at 80% 14%, rgba(7, 94, 234, .08), transparent 28rem),
        linear-gradient(180deg, #fff 0%, #f7faff 100%);
    border-bottom: 1px solid var(--line);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 680px) 320px;
    gap: 70px;
    align-items: center;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
}

.page-hero p:not(.section-kicker) {
    margin: 24px 0 0;
    color: #53627a;
    font-size: 18px;
    line-height: 1.75;
}

.page-panel {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    border: 1px solid rgba(203, 213, 225, .78);
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow);
}

.page-panel strong {
    color: var(--blue);
    font-size: 52px;
    line-height: 1;
}

.page-panel span {
    margin-top: 18px;
    color: #5f6f86;
    font-size: 16px;
    line-height: 1.65;
}

.page-section {
    padding: 78px 0 92px;
    background: #fff;
}

.page-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.page-card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.info-card,
.price-card {
    padding: 28px;
    border: 1px solid #edf2fa;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 37, 71, .06);
}

.info-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 12px;
    color: var(--blue);
    background: #edf5ff;
    font-weight: 800;
}

.info-card h3,
.price-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.info-card p,
.price-card p,
.price-card li {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    display: flex;
    min-height: 360px;
    flex-direction: column;
}

.price-card ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
    padding-left: 18px;
}

.price-card .btn {
    margin-top: auto;
}

.choice-grid {
    display: grid;
    grid-template-columns: 285px 1fr;
    gap: 70px;
    align-items: center;
}

.choice h2 {
    font-size: clamp(34px, 4vw, 48px);
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature-card {
    min-height: 172px;
    padding: 27px 23px;
    border: 1px solid #edf2fa;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 37, 71, .06);
}

.feature-card h3 {
    margin: 23px 0 12px;
    font-size: 15px;
}

.feature-card p {
    margin: 0;
    color: #6c788c;
    font-size: 13px;
    line-height: 1.7;
}

.testimonial {
    padding: 68px 0 64px;
    background:
        radial-gradient(circle at 24% 58%, rgba(7, 94, 234, .08) 0 1px, transparent 1px 14px),
        radial-gradient(circle at 46% 42%, rgba(7, 94, 234, .09), transparent 26rem),
        linear-gradient(180deg, #f9fbff 0%, #fff 100%);
    border-top: 1px solid #f0f4fa;
    border-bottom: 1px solid #edf2fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: minmax(220px, .85fr) minmax(300px, 1.1fr) minmax(420px, 1.55fr);
    gap: clamp(28px, 3vw, 52px);
    align-items: center;
}

.testimonial-heading h2 {
    margin: 18px 0 0;
    color: #07111f;
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.18;
    letter-spacing: 0;
}

.testimonial-heading h2 span {
    display: block;
    color: var(--blue);
}

.quote-card {
    min-height: 220px;
    padding: 34px 36px 32px;
    border: 1px solid #e8eef8;
    border-radius: 12px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 44px rgba(15, 37, 71, .09);
}

.quote-mark {
    color: var(--blue);
    font-size: 52px;
    font-weight: 800;
    line-height: .8;
}

.quote-text {
    margin: 18px 0 24px;
    color: #243044;
    font-size: 15px;
    line-height: 1.75;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.quote-author small {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.quote-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    background: #e8eef8;
}

.quote-avatar-fallback {
    display: none;
    place-items: center;
    color: #fff;
    background: linear-gradient(160deg, #07172b, #0b3a73);
    font-size: 14px;
    font-weight: 800;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    border-left: 1px solid #e5ecf6;
}

.big-stat {
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 clamp(12px, 1.5vw, 24px);
    border-right: 1px solid #e5ecf6;
    text-align: center;
}

.big-stat strong {
    color: var(--blue);
    font-size: clamp(34px, 3vw, 44px);
    line-height: 1;
}

.big-stat span {
    margin-top: 16px;
    color: #687589;
    font-size: 13px;
    line-height: 1.55;
}

.cta {
    position: relative;
    padding: 28px 0;
    color: #fff;
    background:
        radial-gradient(circle at 78% 25%, rgba(93, 169, 255, .22), transparent 26rem),
        linear-gradient(135deg, #08357d 0%, #075eea 58%, #0041ae 100%);
}

.cta::before {
    inset: auto 15% -160px auto;
    width: 600px;
    opacity: .35;
    background:
        repeating-radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, .5) 0 2px, transparent 3px 22px);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta h2 {
    max-width: 503px;
    font-size: clamp(22px, 2.2vw, 30px);
}

.cta p {
    max-width: 390px;
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.45;
}

.cta-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.cta .btn {
    min-height: 36px;
    padding: 0 20px;
    font-size: 12px;
}

.footer {
    position: relative;
    overflow: hidden;
    padding: 63px 0 34px;
    color: #dbe7f7;
    background:
        radial-gradient(circle at 18% 0%, rgba(7, 94, 234, .16), transparent 20rem),
        #030b18;
}

.footer::before {
    content: "";
    position: absolute;
    top: -205px;
    left: 46%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    opacity: .22;
    background:
        repeating-radial-gradient(circle, transparent 0 38px, rgba(203, 218, 238, .8) 39px 41px, transparent 42px 76px);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.55fr) repeat(3, minmax(120px, .8fr)) minmax(250px, 1.7fr);
    gap: clamp(32px, 4vw, 58px);
    align-items: start;
}

.footer .brand {
    margin-bottom: 24px;
}

.footer .brand img {
    width: 132px;
}

.footer-text {
    margin: 0 0 24px;
    color: #a9c8ee;
    font-size: 15px;
    line-height: 1.65;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.socials a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #17253a;
    color: #b9d1f1;
    font-size: 13px;
    transition: .2s ease;
}

.socials a:hover {
    color: #fff;
    background: var(--blue);
    transform: translateY(-2px);
}

.footer h3 {
    margin: 0 0 25px;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.footer ul {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #bcd3f3;
    font-size: 15px;
    line-height: 1.15;
}

.footer li,
.footer li a {
    color: inherit;
}

.footer li a:hover {
    color: #fff;
}

.subscribe {
    display: flex;
    height: 52px;
    overflow: hidden;
    border-radius: 7px;
    background: #101d31;
    border: 1px solid rgba(148, 163, 184, .18);
}

.subscribe input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: #fff;
    background: transparent;
    font: inherit;
}

.subscribe button {
    width: 56px;
    border: 0;
    color: #fff;
    background: var(--blue);
    font-size: 22px;
    cursor: pointer;
}

.brochure-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 15px;
    font-weight: 800;
    transition: .2s ease;
}

.brochure-link:hover {
    border-color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .16);
}

.brochure-link i {
    font-size: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 58px;
    padding-top: 28px;
    border-top: 1px solid rgba(148, 163, 184, .14);
    color: #7f8da3;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 54px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 22px;
}

@media (max-width: 1100px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .logo-row,
    .feature-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-grid,
    .choice-grid,
    .testimonial-grid,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .module-stage {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 38px 30px;
    }

    .page-card-grid,
    .page-card-grid.three,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 30px, 1240px);
    }

    .nav-inner {
        height: auto;
        padding: 16px 0;
    }

    .brand img {
        width: 124px;
    }

    .nav-actions a:first-child {
        display: none;
    }

    .trusted {
        padding: 38px 0;
    }

    .logo-row,
    .feature-row,
    .stat-row,
    .footer-grid,
    .page-card-grid,
    .page-card-grid.three,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .client-logo {
        justify-content: flex-start;
        padding-left: 18%;
    }

    .hero {
        padding: 64px 0 58px;
    }

    .hero-grid {
        gap: 36px;
    }

    .module-stage {
        min-height: auto;
        padding-bottom: 270px;
    }

    .module-grid {
        width: 100%;
        margin: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .module-card,
    .module-card:nth-child(1),
    .module-card:nth-child(3),
    .module-card:nth-child(7),
    .module-card:nth-child(8) {
        grid-column: auto;
        grid-row: auto;
        transform: none;
    }

    .analytics-card {
        top: auto;
        right: 50%;
        bottom: 0;
        transform: translateX(50%);
    }

    .step-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .steps .container {
        padding: 30px 22px 36px;
    }

    .step {
        width: 100%;
    }

    .arrow {
        flex: 0 0 42px;
        width: 58px;
        height: 42px;
        transform: rotate(90deg);
    }

    .choice-grid,
    .testimonial-grid {
        gap: 36px;
    }

    .big-stat {
        border-bottom: 1px solid #e5ecf6;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .cta-actions,
    .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .subscribe,
    .brochure-link {
        width: 100%;
    }
}

/* Solutions Featured Card & Mockup Dashboard */
.mega-featured-card {
    grid-column: span 2;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 24px;
    align-items: center;
    overflow: hidden;
}

.mega-featured-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
}

.mega-featured-badge {
    background: #eef5ff;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 9999px;
}

.mega-featured-content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
}

.mega-featured-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    font-weight: 600;
}

.mega-featured-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.25s ease;
}

.mega-featured-cta:hover {
    transform: translateX(4px);
}

.mega-featured-preview {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

/* Mockup Dashboard */
.mockup-dashboard {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 10px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #334155;
}

.mockup-pill {
    background: #f1f5f9;
    color: #64748b;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 4px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.mockup-stat {
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 6px;
    padding: 6px;
    align-items: center;
}

.mockup-stat small {
    font-size: 7px;
    color: #94a3b8;
    white-space: nowrap;
}

.mockup-stat strong {
    font-size: 11px;
    color: #334155;
    margin-top: 2px;
}

.mockup-stat strong.success {
    color: #10b981;
}

.mockup-chart {
    border-top: 1px solid #f1f5f9;
    padding-top: 8px;
}

.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    color: #475569;
    font-weight: 700;
    margin-bottom: 6px;
}

.mockup-chart-header small {
    color: #94a3b8;
    font-size: 8px;
}

.mockup-chart-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    align-items: center;
}

.chart-svg {
    width: 100%;
    height: 32px;
}

.mockup-chart-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 7px;
    color: #64748b;
}

.bar-row small {
    white-space: nowrap;
    width: 55px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.bar-track {
    flex: 1;
    height: 4px;
    background: #f1f5f9;
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #075eea;
    border-radius: 2px;
}
