/* ===========================
   DESIGN TOKENS - resolved from React landingPages.css
   =========================== */
:root {
    --primary: #3A279B;
    --primary-dark: #2e1f8a;
    --primary-10: rgba(58, 39, 155, 0.10);
    --secondary: #f97316;
    --foreground: #1D2030;
    --body-text: #1D2030;
    --muted-fg: #757888;
    --card: #ffffff;
    --bg: #f5f6f9;
    --border: #e3e5ea;
    --dark: #1D2030;
    --stats-bg: #21232B;
    --footer-bg: #1a1d2e;
    --card-warm: #FFFAFC;
    --card-gray: #E4E7EC;
    --icon-orange: #FFF5EB;
    --icon-purple: #F8F6FF;
    --value-strip: #F6F7F9;
    --opt-border: #aea7d1;
    --r-xs: 4px;
    --r-sm: 6px;
    --r-md: 8px;
    --r-lg: 12px;
    --r-xl: 16px;
    --r-2xl: 20px;
    --r-full: 9999px;
    --sh-sm: 0 1px 3px rgba(0, 0, 0, 0.07);
    --sh-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --sh-lg: 0 10px 40px rgba(0, 0, 0, 0.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

/* body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--card);
    -webkit-font-smoothing: antialiased
} */

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none
}

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

table {
    border-collapse: collapse;
    width: 100%
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 24px
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.underline {
    text-decoration: underline
}

.section {
    padding-block: 40px 64px
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 32px
}

/* .section-header h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 8px;
    line-height: 1.2
} */

.section-header p {
    color: var(--body-text);
    font-size: 1rem !important;
    line-height: 1.7
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: .9375rem;
    font-weight: 600;
    border-radius: var(--r-md);
    transition: all .25s;
    cursor: pointer;
    white-space: nowrap;
    min-height: 44px;
    border: 1.5px solid transparent
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark)
}

.btn-outline-purple {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary)
}

.btn-outline-purple:hover {
    background: var(--primary);
    color: #fff
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary)
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff
}

.btn-outline-white {
    background: transparent;
    border-color: #fff;
    color: #fff
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary)
}

.btn-cta-demo {
    background: transparent;
    border-color: #fff;
    color: #fff
}

.btn-cta-demo:hover {
    background: #f88c1f;
    border-color: #f88c1f;
    color: #fff
}

.btn-dark {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark)
}

/* NAVBAR */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 16px 0;
    transition: background .45s, box-shadow .45s, padding .45s, border-color .45s;
    background: transparent;
    border-bottom: 1px solid transparent
}

.nav-header.scrolled {
    background: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .08);
    padding: 12px 0;
    border-bottom: 1px solid rgba(227, 229, 234, .7)
}

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

.nav-logo img {
    max-width: 150px;
    height: auto
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px
}

.nav-link {
    font-size: .9375rem;
    font-weight: 500;
    color: #111827;
    transition: color .2s
}

.nav-link:hover {
    color: var(--primary)
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 12px
}

.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    transition: background .2s
}

.hamburger:hover {
    background: rgba(0, 0, 0, .05)
}

/* MOBILE OVERLAY */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto
}

.mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px)
}

.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0f0a2e 0%, #1a1050 50%, #0f0a2e 100%);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .4);
    transform: translateX(100%);
    transition: transform .3s ease-out
}

.mobile-overlay.open .mobile-panel {
    transform: translateX(0)
}

.mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 8px
}

.mobile-brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #3A279B;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-brand span {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700
}

.mobile-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.mobile-close:hover {
    background: rgba(255, 255, 255, .2)
}

.mobile-nav {
    flex: 1;
    padding: 24px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, .7);
    transition: background .2s, color .2s
}

.mobile-nav-item:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.mobile-nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(58, 39, 155, .3);
    border: 1px solid rgba(109, 95, 211, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.mobile-nav-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.mobile-nav-label {
    font-size: .9375rem;
    font-weight: 600;
    color: #fff
}

.mobile-nav-desc {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4)
}

.mobile-nav-arrow {
    flex-shrink: 0
}

.mobile-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    color: rgba(255, 255, 255, .2);
    font-size: .75rem;
    font-family: monospace
}

.divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .1)
}

.mobile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 16px
}

.mobile-stat {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.stat-val {
    font-size: 1rem;
    font-weight: 700;
    color: #a78bfa
}

.stat-lbl {
    font-size: .625rem;
    color: rgba(255, 255, 255, .4)
}

.mobile-cta {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mobile-cta .btn {
    width: 100%;
    padding: 14px;
    justify-content: center
}

/* HERO — light background, DARK text */
.hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

/* NO dark overlay */
.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%
}

.hero-text {
    text-align: center;
    max-width: 540px;
    width: 100%
}

.hero-badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px
}

.hero-title {
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 900;
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: 16px
}

.hero-title .text-primary {
    color: var(--primary) !important;
}

.hero-desc {
    font-size: .9375rem !important;
    color: var(--body-text);
    line-height: 1.75;
    margin-bottom: 28px
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center
}

.hero-image {
    width: 100%
}

.hero-image img {
    width: 100%;
    height: auto
}

/* STATS BAR — dark #21232B, white text */
.stats-bar {
    background: var(--stats-bg);
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding-block: 12px
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center
}

.stat-item img {
    flex-shrink: 0
}

.stat-item span {
    font-size: .75rem;
    font-weight: 500;
    color: #fff
}

/* FEATURES */
.features-section {
    background: var(--card)
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px
}

.feature-card {
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--card-warm);
    overflow: hidden;
    transition: box-shadow .25s, border-color .25s
}

.feature-card:hover {
    box-shadow: var(--sh-md);
    border-color: rgba(58, 39, 155, .3)
}

.feature-card-body {
    padding: 24px 24px 16px
}

.feature-card-body h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 800;
    color: var(--body-text);
    margin-bottom: 8px
}

.feature-subtitle {
    font-size: .875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px
}

.feature-desc {
    font-size: .875rem;
    color: var(--body-text);
    line-height: 1.65
}

.feature-card-img {
    padding: 0 24px 24px
}

.feature-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--r-lg);
    background: #0f1535
}

/* VIDEO */
.video-section {
    background: var(--card);
    padding-bottom: 24px
}

.video-container {
    max-width: 1105px;
    margin-inline: auto
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: var(--sh-lg);
    background: #000
}

.video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 2;
    cursor: pointer;
    border: none
}

.video-play-btn.hidden {
    display: none
}

.play-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .8;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
    transition: transform .2s
}

.video-play-btn:hover .play-ring {
    transform: scale(1.05)
}

.play-inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    padding-left: 4px
}

/* HOW IT WORKS */
.how-section {
    background: var(--card)
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.how-step {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.step-number {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 900;
    color: #D2D2D2;
    line-height: 1;
    margin-bottom: 8px
}

.how-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--body-text);
    margin-bottom: 12px
}

.how-content p {
    color: var(--body-text);
    line-height: 1.75 !important;
    font-size: 1rem
}

.how-image img {
    width: 100%;
    border-radius: 20px;
    height: 200px;
    object-fit: cover;
    background: #191D38
}

/* OPTIMIZE — dark bg */
.optimize-section {
    background: var(--dark);
    padding-block: 40px
}

.optimize-section .container {
    max-width: 1280px;
    padding-inline: 24px
}

.optimize-section .section-header {
    margin-bottom: 28px
}

/* .optimize-section .section-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2
} */

.optimize-section .section-header p {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem !important;
    line-height: 1.55;
    max-width: 1152px;
    margin-inline: auto
}

.optimize-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch
}

.optimize-row:last-child {
    margin-bottom: 0
}

.optimize-card {
    border-radius: var(--r-xl);
    border: 1px solid var(--opt-border);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%
}

.opt-card-top {
    background: var(--primary-10);
    padding: 24px;
    min-height: 182px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.opt-card-top.bg-black {
    background-color: #1d2030;
}

.opt-card-top>img {
    width: 100%;
    height: 133px;
    object-fit: cover;
}

.opt-card-bottom {
    background: #fff;
    padding: 20px;
    text-align: center;
    margin-top: auto
}

.opt-card-bottom p {
    font-size: .875rem !important;
    color: var(--muted-fg);
    line-height: 1.35
}

.opt-table-wrap {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: var(--r-xl);
    border: 1px solid rgba(58, 39, 155, .2);
    overflow: hidden
}

.opt-table th,
.opt-table td {
    padding: 8px 12px;
    text-align: left;
    font-size: .75rem
}

.opt-table th {
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid var(--border)
}

.opt-table td {
    font-weight: 600;
    color: #000
}

.opt-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--border)
}

.opt-chart-sm {
    background: #fff;
    border-radius: var(--r-xl);
    border: 1px solid rgba(58, 39, 155, .2);
    overflow: hidden;
    width: 100%;
    flex-shrink: 0
}

.opt-chart-sm img {
    width: 100%;
    height: 133px;
    object-fit: cover
}

.opt-lifecycle {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    align-items: center
}

.lifecycle-img {
    flex: 1;
    min-width: 0;
    height: 193px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px
}

.lifecycle-legend {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 12px;
    width: 100%;
    max-width: 200px;
    min-height: 188px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lifecycle-legend h4 {
    font-size: .75rem;
    font-weight: 700;
    color: var(--foreground)
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px
}

.legend-val {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground)
}

.legend-unit {
    font-size: .875rem;
    color: var(--muted-fg)
}

/* RUN RELIABLY */
.reliable-section {
    background: #f6f7f9;
    padding-block: 40px 64px
}

.reliable-section .section-header {
    max-width: 1120px;
    margin-bottom: 28px
}

/* 
.reliable-section .section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2
} */

.reliable-section .section-header p {
    max-width: 930px;
    margin-inline: auto;
    font-size: 1rem !important;
    line-height: 1.55
}

.reliable-row {
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: stretch
}

.reliable-card {
    border-radius: 16px;
    border: 1px solid var(--opt-border);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%
}

.reliable-card-top {
    background: var(--primary-10);
    padding: 20px
}

.reliable-card-bottom {
    background: #fff;
    padding: 8px 16px;
    text-align: center;
    margin-top: auto
}

.reliable-card-bottom p {
    font-size: .875rem !important;
    color: var(--muted-fg);
    line-height: 1.35
}

.vehicle-info-card {
    display: flex;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(58, 39, 155, .2);
    border-radius: var(--r-xl);
    padding: 16px
}

.vehicle-thumb {
    width: 96px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
    background: #eee
}

.vehicle-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700
}

.vehicle-sub {
    font-size: .75rem !important;
    color: var(--muted-fg);
    margin-top: 2px
}

.vehicle-miles {
    font-size: .75rem;
    font-weight: 600;
    color: #c58c3c;
    margin-top: 4px
}

.status-active {
    color: #000;
    font-weight: 400
}

.vehicle-alert {
    font-size: .625rem !important;
    color: #000;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px
}

.inspection-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.inspection-table {
    background: #fff;
    border-radius: var(--r-xl);
    border: 1px solid rgba(58, 39, 155, .2);
    overflow: hidden;
    width: 100%
}

.inspection-table th,
.inspection-table td {
    padding: 8px 15px;
    font-size: .75rem;
    text-align: left
}

.inspection-table th {
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid var(--border)
}

.inspection-table td {
    font-weight: 600;
    color: #000
}

.inspection-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--border)
}

.muted {
    font-weight: 400;
    color: var(--muted-fg)
}

.text-danger {
    color: #dc2626 !important;
}

.text-info {
    color: #2563eb !important;
}

.inspection-action {
    background: #fff;
    border-radius: var(--r-xl);
    border: 1px solid rgba(58, 39, 155, .2);
    padding: 12px;
    text-align: center;
    flex-shrink: 0;
    width: 100%
}

.inspection-action h4 {
    font-size: .875rem;
    font-weight: 700;
    margin-bottom: 4px
}

.inspection-action p {
    font-size: .75rem !important;
    color: var(--muted-fg);
    margin-bottom: 12px;
    line-height: 1.1;
}

.inspection-btns {
    display: flex;
    justify-content: center;
    gap: 8px
}

.insp-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.insp-ok {
    background: #07a355
}

.insp-fail {
    background: #edf1f2
}

.reliable-analytics-img {
    width: 100%;
    height: 133px;
    object-fit: contain;
    border-radius: 12px
}

/* VALUE PROPOSITION — bg-white with gray strip pseudo-element */
.value-section {
    background: #fff;
    position: relative;
    padding-block: 40px 64px
}

.value-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 270px;
    background: #F6F7F9;
    z-index: 0
}

.value-inner {
    position: relative;
    z-index: 1
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, border-color .25s
}

.value-card:hover {
    box-shadow: var(--sh-lg);
    border-color: rgba(58, 39, 155, .2)
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-sm);
    background: var(--icon-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background .2s
}

.value-card:hover .value-icon {
    background: #ffdfbe
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--body-text);
    margin-bottom: 4px
}

.value-subtitle {
    font-size: .875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px
}

.value-desc {
    font-size: .875rem;
    color: var(--body-text);
    line-height: 1.625;
    margin-bottom: 16px
}

.value-points {
    margin-top: auto;
    background: var(--icon-purple);
    border-radius: var(--r-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.value-point img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.value-point span {
    font-size: .875rem;
    color: var(--foreground);
    line-height: 1.5
}

/* PURCHASE STEPS — bg-white with gray strip */
.purchase-section {
    background: #fff;
    position: relative;
    padding-block: 40px 80px
}

.purchase-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: #F6F7F9;
    z-index: 0
}

.purchase-inner {
    position: relative;
    z-index: 1
}

/* .purchase-section .section-header h2 {
    color: var(--foreground)
} */

.purchase-section .section-header p {
    color: var(--body-text)
}

.steps-track {
    position: relative
}

.steps-line {
    display: none
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 10
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0
}

.step-label {
    font-size: .875rem;
    font-weight: 700;
    color: var(--body-text)
}

.step-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background: none;
}

.step-item p {
    font-size: .875rem !important;
    color: var(--body-text);
    max-width: 200px
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--card);
    padding: 16px 0 80px
}

.testimonials-track-wrap {
    display: flex;
    align-items: center;
    gap: 12px
}

.testimonials-track {
    flex: 1;
    overflow: hidden
}

.testimonials-inner {
    display: flex;
    align-items: stretch;
    transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    will-change: transform
}

.testi-card {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    background: var(--card-gray);
    border-radius: 5px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%
}

.testimonials-inner {
    touch-action: pan-y;
    cursor: grab
}

.testimonials-inner:active {
    cursor: grabbing
}

.testi-card .testi-cover,
.testi-card>img:not(.testi-stars):not(.testi-avatar) {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.testi-stars {
    height: 24px;
    width: auto;
    object-fit: contain;
    object-position: left
}

.testi-quote {
    font-size: .875rem;
    color: var(--foreground);
    line-height: 1.7;
    flex: 1
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(58, 39, 155, .2);
    overflow: hidden;
    flex-shrink: 0
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.testi-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground)
}

.testi-role {
    font-size: .875rem;
    color: var(--body-text)
}

.testi-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--foreground);
    transition: background .2s
}

.testi-btn:hover {
    background: var(--bg)
}

.testi-btn:disabled {
    opacity: .3;
    cursor: not-allowed;
    pointer-events: none
}

.testi-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    border: none;
    background: #d1d5db;
    transition: all .2s;
    cursor: pointer
}

.testi-dot.active {
    width: 20px;
    background: var(--primary)
}

/* PRICING — header bg-[#1D2030] */
.pricing-section {
    background: #fff;
    padding-bottom: 72px
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

.pricing-table {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden
}

.pricing-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--dark);
    color: #fff;
    font-size: .9375rem;
    font-weight: 600
}

.pricing-table td {
    padding: 10px 16px;
    font-size: .9375rem;
    color: var(--foreground)
}

.pricing-table tbody tr:nth-child(even) td {
    background: #fafafa
}

.pricing-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--border)
}

.pricing-table tbody tr:hover td {
    background: rgba(0, 0, 0, .02)
}

.td-center {
    text-align: center
}

.check-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 9999px;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1
}

.check-circle {
    display: inline-flex;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    align-items: center;
    justify-content: center
}

.badge-unlimited {
    font-size: .875rem;
    font-weight: 500;
    color: var(--foreground)
}

.pricing-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

/* SERVER REQUIREMENTS — no card borders */
.server-section {
    background: var(--card)
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.server-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px
}

.server-item img {
    height: 50px;
    width: auto;
    object-fit: contain
}

.server-name {
    font-size: .875rem;
    font-weight: 700;
    color: var(--foreground)
}

.server-note {
    font-size: .875rem;
    color: var(--body-text);
    line-height: 1.5
}

/* CTA — solid purple #3a279b */
.cta-section {
    background: #3a279b;
    padding-block: 40px 80px
}

.cta-inner {
    text-align: center;
    max-width: 896px;
    margin-inline: auto;
    padding-inline: 24px
}

.cta-inner h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px
}

.cta-inner p {
    color: #fff;
    font-size: 1rem !important;
    margin-bottom: 32px
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center
}

/* FOOTER — bg-foreground #1a1d2e */
.site-footer {
    background: var(--footer-bg);
    padding: 40px 0 24px
}

.footer-inner {}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px
}

.footer-logo {
    max-width: 150px;
    height: auto
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px
}

.footer-links a {
    font-size: .875rem;
    color: #98a2b3;
    transition: color .2s
}

.footer-links a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 24px;
    text-align: center
}

.footer-bottom p {
    font-size: .875rem !important;
    color: rgba(255, 255, 255, .4)
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px)
}

.modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.95);
    background: #fff;
    border-radius: var(--r-2xl);
    width: calc(100% - 32px);
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--sh-lg);
    transition: transform .3s;
    padding: 32px
}

.modal-overlay.open .modal-box {
    transform: translate(-50%, -50%) scale(1)
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg);
    font-size: 1.375rem;
    line-height: 1;
    color: var(--muted-fg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.modal-close-btn:hover {
    background: var(--border)
}

.modal-header {
    margin-bottom: 24px
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px
}

.modal-header p {
    font-size: .9375rem !important;
    color: var(--body-text)
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group label {
    font-size: .875rem;
    font-weight: 500;
    color: var(--foreground)
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: .9375rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--card);
    color: var(--foreground);
    outline: none;
    min-height: 44px;
    transition: border-color .2s, box-shadow .2s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(58, 39, 155, .1)
}

.form-group textarea {
    resize: vertical;
    min-height: 90px
}

.required {
    color: #dc2626
}

.field-error {
    font-size: .8125rem;
    color: #dc2626;
    display: none
}

.field-error.visible {
    display: block
}

.form-submit {
    margin-top: 8px
}

.form-submit .btn {
    width: 100%;
    padding: 13px
}

.contact-success {
    text-align: center;
    padding: 32px 0
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

.contact-success h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px
}

.contact-success p {
    color: var(--body-text)
}

/* AOS */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none !important
}

/* RESPONSIVE SM 640px+ */
@media(min-width:640px) {
    .section {
        padding-block: 48px 64px
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center
    }

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

    .feature-card-img img {
        height: 227px
    }

    .how-image img {
        height: 280px
    }

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

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

    .opt-chart-sm {
        max-width: 160px
    }

    .inspection-action {
        width: auto
    }

    .form-row {
        flex-direction: row
    }

    .server-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .stat-item img {
        width: auto
    }

    .stat-item span {
        font-size: .875rem
    }
}

@media(max-width:767px) {
    .testimonials-track-wrap {
        gap: 0
    }

    .testi-btn {
        display: none
    }

    .testi-dots {
        display: flex
    }

    .mobile-brand img {
        max-width: 150px;
    }
}

@media(max-width:479px) {
    .testi-card {
        padding: 20px
    }

    .testi-card .testi-cover,
    .testi-card>img:not(.testi-stars):not(.testi-avatar) {
        height: 150px;
    }
}

/* RESPONSIVE MD 768px+ */
@media(min-width:768px) {
    .section {
        padding-block: 64px
    }

    .nav-links,
    .nav-cta {
        display: flex
    }

    .hamburger {
        display: none
    }

    .nav-header {
        padding-top: 33px;
        padding-bottom: 56px
    }

    .nav-header.scrolled {
        padding-top: 20px;
        padding-bottom: 20px
    }

    .hero {
        padding-top: 112px;
        padding-bottom: 0;
        min-height: 724px;
        align-items: flex-start
    }

    .hero-inner {
        flex-direction: row;
        align-items: flex-end;
        gap: 0
    }

    .hero-text {
        text-align: left;
        max-width: 468px;
        flex-shrink: 0;
        padding-bottom: 48px;
        margin-bottom: 0
    }

    .hero-title {
        font-size: 3rem
    }

    .hero-desc {
        font-size: 1rem !important
    }

    .hero-actions {
        justify-content: flex-start
    }

    .hero-image {
        flex: 1;
        padding-left: 109px
    }

    .stats-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        padding-block: 12px
    }

    .stat-item img {
        width: 28px;
    }

    .stats-inner .stat-item:first-child img {
        width: 80px;
    }

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

    .feature-card-img img {
        height: 227px
    }

    .how-step {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center
    }

    .how-step-reverse .how-content {
        order: 2
    }

    .how-step-reverse .how-image {
        order: 1
    }

    .how-image img {
        height: 380px
    }

    .optimize-section {
        padding-block: 80px
    }

    .optimize-section .section-header {
        margin-bottom: 40px
    }

    /* .optimize-section .section-header h2 {
        font-size: 2.25rem
    } */

    .optimize-section .section-header p {
        font-size: 1.125rem !important;
        line-height: 1.5
    }

    .optimize-row {
        flex-direction: row
    }

    .optimize-card-sm {
        max-width: 390px;
        width: 100%;
        flex-shrink: 0
    }

    .optimize-card-lg {
        width: 100%;
        flex: 1
    }

    .opt-card-top {
        flex-wrap: nowrap
    }

    .opt-card-bottom {
        padding: 32px
    }

    .opt-chart-sm {
        max-width: 160px;
        flex-shrink: 0;
        width: 160px
    }

    .opt-lifecycle {
        flex-wrap: nowrap
    }

    .lifecycle-legend {
        max-width: 200px;
        flex-shrink: 0
    }

    .reliable-section {
        padding-block: 56px 64px
    }

    /* .reliable-section .section-header h2 {
        font-size: 2.25rem
    } */

    .reliable-section .section-header p {
        font-size: 1.125rem !important
    }

    .reliable-row {
        flex-direction: row;
        align-items: stretch
    }

    .reliable-row .reliable-card:nth-child(1) {
        width: 100%;
        max-width: 375px
    }

    .reliable-row .reliable-card:nth-child(2) {
        width: 100%;
        max-width: 524px
    }

    .reliable-row .reliable-card:nth-child(3) {
        width: 100%;
        max-width: 315px
    }

    .inspection-wrap {
        flex-wrap: nowrap
    }

    .inspection-table {
        width: auto;
        flex: 1
    }

    .inspection-action {
        width: auto;
        min-width: 153px;
        max-width: 153px;
    }

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

    .steps-grid {
        flex-direction: row;
        grid-template-columns: unset;
        justify-content: space-between;
        align-items: flex-start
    }

    .steps-line {
        display: block;
        position: absolute;
        top: 27px;
        left: calc(10% + 28px);
        right: calc(10% + 28px);
        height: 1px;
        background: #000;
        z-index: 1
    }

    .step-item {
        flex: 1
    }

    .testi-card {
        width: 50%
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr
    }

    .server-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center
    }

    .footer-top {
        flex-direction: row;
        justify-content: space-between
    }
}

/* RESPONSIVE LG 1024px+ */
@media(min-width:1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .how-step {
        gap: 107px
    }

    .how-image img {
        height: 416px
    }

    .value-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .steps-grid {
        grid-template-columns: repeat(5, 1fr)
    }

    .testi-card {
        width: 25%
    }

    .server-grid {
        grid-template-columns: repeat(6, 1fr)
    }
}