/* =============================================
   FLEETEASY — STYLE.CSS
   Color Palette: Deep Navy Blue + Crimson Red
============================================= */

:root {
    --red: #E8192C;
    --red-dark: #B5111F;
    --red-light: #FF3346;
    --blue: #0B1C3D;
    --blue-mid: #112558;
    --blue-light: #1A3A7A;
    --blue-glow: #2254C5;
    --accent: #4D8AFF;
    --white: #FFFFFF;
    --off-white: #F0F4FF;
    --grey: #8A9BC0;
    --border: rgba(77, 138, 255, 0.15);
    --card-bg: rgba(17, 37, 88, 0.6);
    --glass: rgba(255, 255, 255, 0.04);
    --shadow-blue: 0 20px 60px rgba(11, 28, 61, 0.8);
    --shadow-red: 0 20px 60px rgba(232, 25, 44, 0.3);
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--blue);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot,
.cursor-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    top: 0;
    left: 0;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(232, 25, 44, 0.5);
    top: 0;
    left: 0;
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

body:hover .cursor-dot {
    opacity: 1;
}

a:hover~.cursor-ring,
button:hover~.cursor-ring {
    width: 50px;
    height: 50px;
    border-color: var(--red);
}

/* ── PRELOADER ── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.done {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.loader-logo span {
    color: var(--red);
}

.loader-bar {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--red), var(--accent));
    border-radius: 99px;
    animation: loaderFill 1.8s ease forwards;
}

@keyframes loaderFill {
    to {
        width: 100%;
    }
}

/* ── TEXT GRADIENT ── */
.text-gradient {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 0.85rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(232, 25, 44, 0.35);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(232, 25, 44, 0.5);
}

.btn-primary:hover::after {
    background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.85rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: none;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: rgba(77, 138, 255, 0.1);
    transform: translateY(-2px);
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
    background: rgba(11, 28, 61, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: var(--white);
}

.nav-logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 0;
    margin-left: auto;
}

.nav-links li a {
    padding: 0.5rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1.1rem;
    right: 1.1rem;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links li a:hover {
    color: var(--white);
}

.nav-links li a:hover::after {
    transform: scaleX(1);
}

.btn-nav {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 0.6rem 1.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-nav:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    margin-left: 1rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--blue-mid);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(.77, 0, .18, 1);
    border-left: 1px solid var(--border);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu ul li a {
    display: block;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu ul li a:hover {
    background: rgba(232, 25, 44, 0.1);
    color: var(--white);
}

/* ── SECTION COMMON ── */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 25, 44, 0.1);
    border: 1px solid rgba(232, 25, 44, 0.3);
    color: var(--red-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--grey);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    width: 100%;
}

#hero>.hero-content,
#hero>.hero-visual,
#hero>.scroll-indicator {
    position: relative;
    z-index: 1;
}

/* Inner wrapper to constrain content */
#hero .hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(77, 138, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 138, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 25, 44, 0.25), transparent 70%);
    top: -100px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 84, 197, 0.3), transparent 70%);
    bottom: -50px;
    left: 200px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-40px) scale(1.05);
    }
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
    max-width: 580px;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 25, 44, 0.12);
    border: 1px solid rgba(232, 25, 44, 0.35);
    color: var(--red-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.4rem 1.1rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.0;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hstat {
    display: flex;
    flex-direction: column;
}

.hnum {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
}

.hlbl {
    font-size: 0.75rem;
    color: var(--grey);
    font-weight: 500;
    margin-top: 2px;
}

.hstat-div {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── HERO VISUAL ── */
.hero-visual {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
}

.dashboard-mock {
    width: 480px;
    background: rgba(17, 37, 88, 0.7);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-blue), 0 0 0 1px rgba(77, 138, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: mockFloat 6s ease-in-out infinite;
}

@keyframes mockFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.mock-bar {
    background: rgba(11, 28, 61, 0.8);
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #FF5F57;
}

.dot.yellow {
    background: #FEBC2E;
}

.dot.green {
    background: #28C840;
}

.mock-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    color: var(--grey);
    margin-left: 0.5rem;
}

.mock-body {
    display: flex;
    height: 340px;
}

.mock-sidebar {
    width: 50px;
    background: rgba(11, 28, 61, 0.5);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}

.mock-nav-item {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--grey);
    cursor: none;
    transition: background 0.2s, color 0.2s;
}

.mock-nav-item.active {
    background: var(--red);
    color: var(--white);
}

.mock-main {
    flex: 1;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    overflow: hidden;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.mock-card {
    border-radius: 8px;
    padding: 0.7rem;
    border: 1px solid var(--border);
}

.blue-card {
    background: rgba(34, 84, 197, 0.3);
    border-color: rgba(34, 84, 197, 0.4);
}

.red-card {
    background: rgba(232, 25, 44, 0.2);
    border-color: rgba(232, 25, 44, 0.3);
}

.dark-card {
    background: rgba(0, 0, 0, 0.3);
}

.mcard-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    line-height: 1;
}

.mcard-lbl {
    font-size: 0.58rem;
    color: var(--grey);
    margin-top: 2px;
}

.mock-chart {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.7rem;
    flex: 1;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 60px;
    margin-bottom: 0.4rem;
}

.bar {
    flex: 1;
    background: rgba(34, 84, 197, 0.5);
    border-radius: 3px 3px 0 0;
    transition: background 0.3s;
}

.bar.active {
    background: var(--red);
}

.chart-label {
    font-size: 0.6rem;
    color: var(--grey);
}

.mock-table {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 0.6fr 0.6fr;
    padding: 0.4rem 0.6rem;
    font-size: 0.62rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.table-row.header {
    color: var(--grey);
    font-weight: 600;
}

.badge-out {
    color: var(--red-light);
    font-weight: 600;
}

.badge-in {
    color: #4ade80;
    font-weight: 600;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    color: var(--grey);
    letter-spacing: 0.2em;
    animation: fadeInUp 1s ease 2.5s both;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--red));
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ── MARQUEE ── */
.marquee-strip {
    background: var(--red);
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 2rem;
    animation: marqueeScroll 25s linear infinite;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.sep {
    color: rgba(255, 255, 255, 0.5);
}

/* ── FEATURES SECTION ── */
#features {
    padding: 7rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 25, 44, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 25, 44, 0.4);
    box-shadow: 0 20px 50px rgba(232, 25, 44, 0.15);
}

.feat-card:hover::before {
    opacity: 1;
}

.feat-card.featured {
    border-color: rgba(232, 25, 44, 0.5);
    background: rgba(232, 25, 44, 0.08);
    box-shadow: 0 10px 40px rgba(232, 25, 44, 0.15);
}

.feat-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feat-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 25, 44, 0.15);
    border: 1px solid rgba(232, 25, 44, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--red-light);
    margin-bottom: 1.2rem;
    transition: background 0.3s, transform 0.3s;
}

.feat-card:hover .feat-icon {
    background: rgba(232, 25, 44, 0.25);
    transform: scale(1.1);
}

.feat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.feat-card p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.7;
}

.feat-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--red), var(--accent));
    transition: width 0.4s ease;
}

.feat-card:hover .feat-line {
    width: 100%;
}

/* ── STATS SECTION ── */
#stats {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%);
    z-index: 0;
}

#stats .section-container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 2.5rem 1rem;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    background: linear-gradient(135deg, var(--white), var(--grey));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-plus {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--red);
    display: inline;
    vertical-align: super;
}

.stat-label {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--grey);
    font-weight: 500;
}

/* ── PRICING SECTION ── */
#pricing {
    padding: 7rem 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.toggle-lbl {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--grey);
    transition: color 0.3s;
}

.toggle-lbl.active {
    color: var(--white);
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 99px;
    position: relative;
    cursor: none;
    transition: background 0.3s;
}

.toggle-switch.annual {
    background: var(--red);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.annual .toggle-knob {
    transform: translateX(24px);
}

.save-badge {
    background: rgba(77, 138, 255, 0.2);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: 99px;
    margin-left: 0.3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
}

.price-card.popular {
    border-color: var(--red);
    background: rgba(232, 25, 44, 0.07);
    box-shadow: 0 0 60px rgba(232, 25, 44, 0.2), 0 0 0 1px rgba(232, 25, 44, 0.3);
    transform: scale(1.02);
}

.price-card.popular:hover {
    transform: scale(1.02) translateY(-6px);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-plan {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.price-desc {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.price-amount {
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--grey);
    padding-bottom: 0.5rem;
}

.amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--white);
}

.period {
    font-size: 0.85rem;
    color: var(--grey);
    padding-bottom: 0.6rem;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.price-features li i.fa-check {
    color: #4ade80;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.price-features li i.fa-times {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.price-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.btn-plan {
    width: 100%;
    padding: 0.85rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s;
}

.btn-plan.outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-plan.outline:hover {
    border-color: var(--red);
    background: rgba(232, 25, 44, 0.1);
}

.btn-plan.solid {
    background: var(--red);
    border: 1.5px solid var(--red);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(232, 25, 44, 0.35);
}

.btn-plan.solid:hover {
    background: var(--red-dark);
    box-shadow: 0 14px 40px rgba(232, 25, 44, 0.5);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    color: var(--accent);
}

/* ── TESTIMONIALS ── */
#testimonials {
    padding: 7rem 0;
}

.testimonial-swiper {
    padding-bottom: 3rem !important;
}

.testi-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}

.testi-card:hover {
    border-color: rgba(232, 25, 44, 0.3);
}

.testi-stars {
    color: #FEBC2E;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.testi-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--red), var(--blue-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.testi-role {
    font-size: 0.78rem;
    color: var(--grey);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--red) !important;
    background: rgba(232, 25, 44, 0.1);
    border: 1px solid rgba(232, 25, 44, 0.3);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    transition: background 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(232, 25, 44, 0.25);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 0.9rem !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: var(--grey) !important;
}

.swiper-pagination-bullet-active {
    background: var(--red) !important;
}

/* ── CTA / CONTACT ── */
#contact {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 25, 44, 0.12) 0%, rgba(34, 84, 197, 0.12) 100%);
    border-top: 1px solid rgba(232, 25, 44, 0.2);
    border-bottom: 1px solid rgba(232, 25, 44, 0.2);
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-orb1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 25, 44, 0.2), transparent 70%);
    top: -100px;
    right: -50px;
}

.cta-orb2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(34, 84, 197, 0.25), transparent 70%);
    bottom: -100px;
    left: 100px;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.cta-sub {
    font-size: 1.05rem;
    color: var(--grey);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-form input {
    flex: 1;
    min-width: 240px;
    padding: 0.85rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid var(--border);
    border-radius: 6px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.cta-form input::placeholder {
    color: var(--grey);
}

.cta-form input:focus {
    border-color: var(--red);
}

.cta-fine {
    font-size: 0.8rem;
    color: var(--grey);
    margin-bottom: 2.5rem;
}

.cta-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    color: var(--grey);
}

.cta-logos span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cta-logos i {
    font-size: 1rem;
}

/* ── FOOTER ── */
footer {
    background: var(--blue-mid);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: var(--grey);
    max-width: 300px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--grey);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-socials a:hover {
    background: rgba(232, 25, 44, 0.15);
    color: var(--red-light);
    border-color: rgba(232, 25, 44, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--grey);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--grey);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom a {
    color: var(--grey);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1a3a2a;
    border: 1px solid #4ade80;
    color: #4ade80;
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 9998;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .dashboard-mock {
        width: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 900px) {
    #hero {
        padding-top: 8rem;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        width: 100%;
        justify-content: center;
    }

    .dashboard-mock {
        width: 100%;
        max-width: 480px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }
}


/* ── APP OVERVIEW SECTION ── */
#app-overview {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.app-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.app-overview-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 260px;
    background: rgba(17, 37, 88, 0.8);
    border: 1px solid var(--border);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-blue), 0 0 0 1px rgba(77, 138, 255, 0.1), 0 0 80px rgba(232, 25, 44, 0.1);
    backdrop-filter: blur(20px);
    animation: mockFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: rgba(11, 28, 61, 0.9);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
}

.phone-screen {
    padding: 0.8rem 1rem 1.5rem;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border);
}

.phone-header-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: var(--white);
}

.phone-header-logo span {
    color: var(--red);
}

.phone-status {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    color: var(--grey);
}

.phone-km-card {
    background: linear-gradient(135deg, rgba(232, 25, 44, 0.2), rgba(34, 84, 197, 0.2));
    border: 1px solid rgba(232, 25, 44, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.7rem;
    text-align: center;
}

.phone-km-label {
    font-size: 0.6rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.phone-km-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
}

.phone-km-unit {
    font-size: 0.7rem;
    color: var(--red-light);
    font-weight: 600;
}

.phone-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.phone-mini-card {
    background: rgba(11, 28, 61, 0.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.6rem;
}

.pmcard-icon {
    font-size: 0.75rem;
    color: var(--red-light);
    margin-bottom: 0.3rem;
}

.pmcard-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--white);
}

.pmcard-lbl {
    font-size: 0.52rem;
    color: var(--grey);
}

.phone-log-list {
    background: rgba(11, 28, 61, 0.4);
    border-radius: 8px;
    overflow: hidden;
}

.phone-log-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.58rem;
}

.phone-log-row:last-child {
    border-bottom: none;
}

.phone-log-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-log-vehicle {
    color: var(--white);
    font-weight: 600;
}

.phone-log-driver {
    color: var(--grey);
}

.phone-log-km {
    color: var(--red-light);
    font-family: 'Space Mono', monospace;
    font-weight: 700;
}

/* Floating orbit badges around phone */
.orbit-badge {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    white-space: nowrap;
}

.orbit-badge i {
    color: var(--red-light);
    font-size: 0.9rem;
}

.orbit-badge-text {
    display: flex;
    flex-direction: column;
}

.orbit-badge-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    line-height: 1;
    color: var(--white);
}

.orbit-badge-lbl {
    font-size: 0.6rem;
    color: var(--grey);
}

.orbit-1 {
    top: 10%;
    right: -10%;
    animation: orbitFloat1 5s ease-in-out infinite;
}

.orbit-2 {
    bottom: 20%;
    left: -12%;
    animation: orbitFloat2 6s ease-in-out infinite;
}

.orbit-3 {
    top: 50%;
    right: -14%;
    animation: orbitFloat1 7s ease-in-out infinite reverse;
}

@keyframes orbitFloat1 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes orbitFloat2 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ── KM FEATURES SECTION ── */
#km-features {
    padding: 7rem 0;
    background: linear-gradient(180deg, transparent, rgba(17, 37, 88, 0.3), transparent);
}

.km-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 1rem;
}

.km-feat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    text-align: center;
}

.km-feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.km-feat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 25, 44, 0.4);
    box-shadow: 0 20px 50px rgba(232, 25, 44, 0.12);
}

.km-feat-card:hover::after {
    transform: scaleX(1);
}

.km-feat-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 25, 44, 0.12);
    border: 1px solid rgba(232, 25, 44, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--red-light);
    margin: 0 auto 1.2rem;
    transition: transform 0.3s, background 0.3s;
}

.km-feat-card:hover .km-feat-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(232, 25, 44, 0.22);
}

.km-feat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.km-feat-card p {
    font-size: 0.83rem;
    color: var(--grey);
    line-height: 1.65;
}

/* ── WHO IT'S FOR SECTION ── */
#who-for {
    padding: 7rem 0;
}

.who-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.who-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.who-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 25, 44, 0.35);
    box-shadow: 0 20px 50px rgba(232, 25, 44, 0.12);
}

.who-card:hover::before {
    transform: scaleX(1);
}

.who-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.who-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.who-card p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.6;
}

/* ── WHY CHOOSE SECTION ── */
#why-choose {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 25, 44, 0.06) 0%, rgba(17, 37, 88, 0.4) 50%, rgba(34, 84, 197, 0.06) 100%);
    z-index: 0;
}

#why-choose .section-container {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, transform 0.3s;
}

.why-item:hover {
    border-color: rgba(232, 25, 44, 0.4);
    transform: translateX(6px);
}

.why-check {
    width: 36px;
    height: 36px;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.why-text p {
    font-size: 0.83rem;
    color: var(--grey);
    line-height: 1.6;
}

.why-visual {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.why-stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 25, 44, 0.3);
}

.why-stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 25, 44, 0.15);
    border: 1px solid rgba(232, 25, 44, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--red-light);
    flex-shrink: 0;
}

.why-stat-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.why-stat-content p {
    font-size: 0.85rem;
    color: var(--grey);
}

/* Responsive additions */
@media (max-width: 1100px) {
    .km-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .app-overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .app-overview-visual {
        order: -1;
    }

    .who-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .orbit-badge {
        display: none;
    }
}

@media (max-width: 600px) {
    .km-features-grid {
        grid-template-columns: 1fr;
    }

    .who-for-grid {
        grid-template-columns: 1fr;
    }
}