.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(7 9 57 / 83%), rgba(0, 0, 0, 0.30), rgb(23 18 35));
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

/* Eyebrow */
.hero-eyebrow {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.hero-eyebrow-sub {
    color: rgba(255, 255, 255, 0.30);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 500;
}

.hero-eyebrow-title {
    color: var(--color-text-white);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Heading */
.hero-heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-heading-muted {
    color: rgba(255, 255, 255, 0.80);
}

/* Description */
.hero-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Form */
.hero-form-wrapper {
    max-width: 460px;
    margin: 0 auto;
}

.hero-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 0.375rem;
    background-color: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.hero-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    background: transparent;
    font-size: 15px;
    outline: none;
    min-width: 0;
    color: var(--color-text-white);
    border: none;
}

.hero-input::placeholder {
    color: rgba(255, 255, 255, 0.50);
}

.hero-button {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 14px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    background-color: var(--color-bg-white);
    color: #1a1a1a;
}

.hero-button:hover {
    background-color: rgba(255, 255, 255, 0.90);
}

/* Link */
.hero-link-wrapper {
    margin-top: 1rem;
}

.hero-link {
    color: rgba(255, 255, 255, 0.50);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-link:hover {
    color: var(--color-text-white);
}


/* ============================================
   Dominance Section
   ============================================ */
.dominance-section {
    background-color: #1A1A2E;
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .dominance-section {
        padding: 7rem 0;
    }
}

.dominance-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.dominance-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dominance-eyebrow {
    color: var(--color-text-white);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.dominance-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.dominance-subtext {
    color: rgba(255, 255, 255, 0.50);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Stats Grid */
.dominance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .dominance-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    color: var(--color-text-white);
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.60);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.stat-source {
    color: rgba(255, 255, 255, 0.25);
    font-size: 10px;
}

/* Compare Card */
.compare-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .compare-card {
        padding: 2rem;
    }
}

.compare-title {
    color: var(--color-text-white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.compare-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.compare-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.compare-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.compare-label {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    font-weight: 500;
}

.compare-value {
    color: var(--color-text-white);
    font-size: 13px;
    font-weight: 600;
}

.progress-track {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.10);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 9999px;
    transition: width 1s ease;
}

.compare-note {
    color: rgba(255, 255, 255, 0.25);
    font-size: 10px;
}

.compare-sources {
    color: rgba(255, 255, 255, 0.20);
    font-size: 10px;
    margin-top: 1.5rem;
    text-align: center;
}


/* ============================================
   Data Moat Section
   ============================================ */
.datamoat-section {
    background-color: #1A1A2E;
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
    .datamoat-section {
        padding: 7rem 0;
    }
}

.datamoat-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Grid */
.datamoat-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .datamoat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* Text */
.datamoat-eyebrow {
    color: var(--color-text-white);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.datamoat-heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.datamoat-body {
    color: rgba(255, 255, 255, 0.50);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Chart Card */
.datamoat-chart-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.datamoat-chart-title {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Bars */
.datamoat-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-year {
    color: rgba(255, 255, 255, 0.40);
    font-size: 13px;
    width: 6rem;
    flex-shrink: 0;
    text-align: right;
}

.bar-track {
    flex: 1;
    height: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
    transition: width 1s ease;
}

.bar-label {
    color: var(--color-text-white);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.datamoat-source {
    color: rgba(255, 255, 255, 0.20);
    font-size: 10px;
    margin-top: 1rem;
    text-align: center;
}

/* ============================================
   Thesis Section
   ============================================ */
.thesis-section {
    background-color: var(--color-bg-light);
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .thesis-section {
        padding: 7rem 0;
    }
}

.thesis-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.thesis-header {
    text-align: center;
    margin-bottom: 4rem;
}

.thesis-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.thesis-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
}

.thesis-subtext {
    color: var(--color-text-secondary);
    font-size: 1rem;
    max-width: 42rem;
    margin: 1rem auto 0;
    line-height: 1.7;
}

/* Grid */
.thesis-grid {
    display: grid;
    gap: 2.5rem 3rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .thesis-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Item */
.thesis-item {
    display: flex;
    gap: 1.25rem;
}

.thesis-number {
    color: rgba(51, 51, 51, 0.15);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    width: 3.5rem;
    text-align: right;
}

.thesis-item-title {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.thesis-item-body {
    color: var(--color-text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Quote */
.thesis-quote-block {
    text-align: center;
    margin-top: 3.5rem;
    background-color: rgba(26, 26, 26, 0.05);
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.thesis-quote-text {
    color: var(--color-text-primary);
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
}

.thesis-quote-author {
    color: var(--color-text-secondary);
    font-size: 13px;
    margin-top: 1rem;
}

/* ============================================
   Product Comparison Section
   ============================================ */
.compare-section {
    background-color: var(--color-bg-white);
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .compare-section {
        padding: 7rem 0;
    }
}

.compare-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.compare-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.compare-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.compare-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
}

.compare-subtext {
    color: var(--color-text-secondary);
    font-size: 1rem;
    max-width: 42rem;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.glossary-term {
    cursor: help;
    border-bottom: 1px dotted currentColor;
}

/* ── Desktop Table ── */
.compare-table-wrapper {
    display: none;
    overflow-x: auto;
}

@media (min-width: 1024px) {
    .compare-table-wrapper {
        display: block;
    }
}

.compare-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    font-size: 14px;
}

.compare-thead-row {
    border-bottom: 2px solid var(--color-border-light);
}

.compare-th-label {
    padding: 1rem 1.5rem 1rem 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
    font-weight: 500;
    width: 180px;
}

.compare-th-product {
    padding: 1rem;
    text-align: center;
}

.product-name {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.product-type {
    color: var(--color-text-secondary);
    font-size: 11px;
    margin-top: 2px;
}

.compare-row {
    border-bottom: 1px solid var(--color-border-light);
}

.compare-row-alt {
    background-color: var(--color-bg-light);
}

.compare-row-label {
    padding: 1rem 1.5rem 1rem 0;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 13px;
}

.compare-cell {
    padding: 1rem;
    text-align: center;
    color: var(--color-text-primary);
}

.compare-cell-strong {
    font-weight: 600;
}

.compare-cell-medium {
    font-weight: 500;
}

.compare-cell-muted {
    color: var(--color-text-secondary);
    font-size: 13px;
}

/* ── Mobile Cards ── */
.compare-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .compare-cards {
        display: none;
    }
}

.compare-card {
    border: 1px solid var(--color-border-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.compare-card-header {
    margin-bottom: 1rem;
}

.compare-card-rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 14px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.card-row-label {
    color: var(--color-text-secondary);
}

.card-row-value {
    color: var(--color-text-primary);
}

.card-row-strong {
    font-weight: 600;
}

.card-row-medium {
    font-weight: 500;
}

.card-row-footer {
    border-top: 1px solid var(--color-border-light);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.card-footer-text {
    color: var(--color-text-secondary);
    font-size: 13px;
}

.card-footer-status {
    color: var(--color-text-secondary);
    font-size: 12px;
    margin-top: 0.25rem;
}

/* Disclaimer */
.compare-disclaimer {
    margin-top: 2.5rem;
    text-align: center;
}

.compare-disclaimer p {
    color: rgba(103, 103, 103, 0.50);
    font-size: 11px;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================
   Cybercab Section
   ============================================ */
.cybercab-inner {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(../images/robotaxi.webp) no-repeat center center;
    background-size: cover;
}

.cybercab-content {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 7rem 1.5rem;
}

@media (min-width: 1024px) {
    .cybercab-content {
        padding: 7rem 3rem;
    }
}

/* Grid */
.cybercab-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .cybercab-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Text */
.cybercab-eyebrow {
    color: var(--color-text-white);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.cybercab-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.cybercab-body {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Stats */
.cybercab-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cybercab-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cybercab-stat-badge {
    background-color: rgba(0, 0, 0, 0.20);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    flex-shrink: 0;
}

.cybercab-stat-value {
    color: var(--color-text-white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.cybercab-stat-desc {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    line-height: 1.4;
}

/* Note */
.cybercab-note {
    color: rgba(255, 255, 255, 0.40);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* CTA */
.cybercab-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--color-bg-white);
    color: #1a1a1a;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.cybercab-cta:hover {
    background-color: rgba(255, 255, 255, 0.90);
}

/* Source */
.cybercab-source {
    color: rgba(255, 255, 255, 0.20);
    font-size: 10px;
    margin-top: 1rem;
}

/* Visual placeholder */
.cybercab-visual {
    display: none;
}

@media (min-width: 1024px) {
    .cybercab-visual {
        display: block;
    }
}


/* ============================================
   Shared Product Sections
   ============================================ */
.product-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg-white);
}

/* Background */
.product-bg {
    position: absolute;
    inset: 0;
}

.product-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-bg-overlay--black {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
}

.product-bg-overlay--white {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.60);
}

/* Inner */
.product-inner {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.product-content {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 7rem 1.5rem;
}

@media (min-width: 1024px) {
    .product-content {
        padding: 7rem 3rem;
    }
}

/* Grid */
.product-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid--reverse .product-text {
        order: 2;
    }

    .product-grid--reverse .product-visual {
        order: 1;
    }
}

.product-visual {
    display: none;
}

@media (min-width: 1024px) {
    .product-visual {
        display: block;
        min-height: 400px;
    }
}

/* Eyebrow */
.product-eyebrow {
    color: var(--color-text-white);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.product-eyebrow--dark {
    color: var(--color-text-primary);
}

/* Heading */
.product-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.product-heading--dark {
    color: var(--color-text-primary);
}

/* Body */
.product-body {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-body--dark {
    color: var(--color-text-secondary);
}

/* Stats */
.product-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-stat-badge {
    background-color: rgba(0, 0, 0, 0.20);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    flex-shrink: 0;
}

.product-stat-badge--dark {
    background-color: rgba(0, 0, 0, 0.10);
}

.product-stat-value {
    color: var(--color-text-white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.product-stat-value--dark {
    color: var(--color-text-primary);
}

.product-stat-desc {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    line-height: 1.4;
}

.product-stat-desc--dark {
    color: var(--color-text-secondary);
}

/* Note */
.product-note {
    color: rgba(255, 255, 255, 0.40);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-note--dark {
    color: rgba(103, 103, 103, 0.60);
}

/* CTA */
.product-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
}

.product-cta--white {
    background-color: var(--color-bg-white);
    color: #1a1a1a;
}

.product-cta--white:hover {
    background-color: rgba(255, 255, 255, 0.90);
}

.product-cta--dark {
    background-color: #1a1a1a;
    color: var(--color-text-white);
}

.product-cta--dark:hover {
    opacity: 0.90;
}

/* Source */
.product-source {
    color: rgba(255, 255, 255, 0.20);
    font-size: 10px;
    margin-top: 1rem;
}

.product-source--dark {
    color: rgba(103, 103, 103, 0.30);
}

/* ============================================
   Fleet ROI Calculator
   ============================================ */
.fleet-content {
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
    .fleet-content {
        padding: 5rem 3rem;
    }
}

.fleet-body {
    max-width: 36rem;
    margin-bottom: 2.5rem;
}

.fleet-calculator {
    background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .fleet-calculator {
        padding: 2rem;
    }
}

/* Sliders */
.fleet-slider-group {
    margin-bottom: 1.5rem;
}

.fleet-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.fleet-slider-label {
    color: rgba(255, 255, 255, 0.60);
    font-size: 13px;
}

.fleet-slider-value {
    color: var(--color-text-white);
    font-size: 1.1rem;
    font-weight: 600;
}

.fleet-range {
    width: 100%;
    accent-color: #ffffff;
    cursor: pointer;
}

/* Results */
.fleet-results {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 1.5rem;
}

.fleet-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.fleet-result-label {
    color: rgba(255, 255, 255, 0.40);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.fleet-result-value {
    color: var(--color-text-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.fleet-annual {
    background-color: rgba(0, 0, 0, 0.10);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    text-align: center;
}

.fleet-annual-value {
    color: var(--color-text-white);
    font-size: 1.25rem;
    font-weight: 700;
}

.fleet-annual-label {
    color: rgba(255, 255, 255, 0.40);
    font-size: 13px;
    margin-left: 0.5rem;
}

.fleet-disclaimer {
    color: rgba(255, 255, 255, 0.20);
    font-size: 10px;
    margin-top: 1rem;
    line-height: 1.6;
}

.fleet-cta {
    font-weight: 600;
}


/* ============================================
   Access Problem Section
   ============================================ */
.access-section {
    background-color: var(--color-bg-light);
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .access-section {
        padding: 7rem 0;
    }
}

.access-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.access-header {
    text-align: center;
    margin-bottom: 4rem;
}

.access-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.access-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
}

.access-subtext {
    color: var(--color-text-secondary);
    font-size: 1rem;
    max-width: 42rem;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.access-steps {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .access-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.access-step-number {
    color: rgba(26, 26, 26, 0.12);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.access-step-title {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.access-step-body {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 20rem;
    margin: 0 auto;
}

.access-footer {
    text-align: center;
    margin-top: 3.5rem;
}

.access-link {
    color: var(--color-text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}

.access-link:hover {
    color: var(--color-text-secondary);
}

/* ============================================
   Timeline Section
   ============================================ */
.timeline-section {
    background-color: #1A1A2E;
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .timeline-section {
        padding: 7rem 0;
    }
}

.timeline-container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
}

.timeline-list {
    display: flex;
    flex-direction: column;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .timeline-item {
        gap: 2.5rem;
    }
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 6px;
}

.timeline-dot--accent {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(54, 44, 114, 0.30);
}

.timeline-line {
    width: 1px;
    flex: 1;
    background-color: rgba(255, 255, 255, 0.10);
    margin-top: 0.5rem;
}

.timeline-body {
    padding-bottom: 3rem;
}

.timeline-item--last .timeline-body {
    padding-bottom: 0;
}

.timeline-date {
    color: var(--color-text-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-text {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 36rem;
}

.timeline-footer {
    text-align: center;
    margin-top: 2rem;
}

.timeline-source {
    color: rgba(255, 255, 255, 0.30);
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================
   Final CTA Section
   ============================================ */
.finalcta-section {
    position: relative;
    min-height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1A1A2E;
    overflow: hidden;
}

.finalcta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.10;
}

.finalcta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.finalcta-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.finalcta-eyebrow {
    color: rgba(255, 255, 255, 0.30);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.30em;
    display: block;
    margin-bottom: 1.5rem;
}

.finalcta-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.finalcta-subtext {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.finalcta-form-wrapper {
    max-width: 460px;
    margin: 0 auto;
}

.finalcta-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 0.375rem;
    background-color: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.finalcta-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    background: transparent;
    font-size: 15px;
    outline: none;
    min-width: 0;
    color: var(--color-text-white);
    border: none;
}

.finalcta-input::placeholder {
    color: rgba(255, 255, 255, 0.50);
}

.finalcta-button {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 14px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    background-color: var(--color-bg-white);
    color: #1a1a1a;
}

.finalcta-button:hover {
    background-color: rgba(255, 255, 255, 0.90);
}

.finalcta-link-wrapper {
    margin-top: 1rem;
}

.finalcta-link {
    color: rgba(255, 255, 255, 0.50);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.finalcta-link:hover {
    color: var(--color-text-white);
}