:root {
    /* Single brand green — all accents use this hue */
    --green: #3CAC24;
    --green-rgb: 60, 172, 36;
    --green-dark: #2f8f1f;
    --green-soft: rgba(var(--green-rgb), 0.1);
    --green-soft-mid: rgba(var(--green-rgb), 0.16);
    /* Dark slate = text only; surfaces stay white / green-tinted */
    --black: #1e293b;
    --surface: #fafafa;
    --surface-elevated: #ffffff;
    --surface-mint: #ecfdf5;
    --surface-band: #ffffff;
    --surface-ink: #334155;
    --white: #ffffff;
    --bg-cream: var(--surface);
    --bg-white: var(--surface-elevated);
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

html *,
html *::before,
html *::after {
    border-radius: 0 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.65;
    font-size: 1rem;
    font-feature-settings: "kern" 1, "liga" 1;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   SIDE NAVIGATION BAR
========================================= */
.side-boxes {
    position: fixed;
    right: 16px;
    bottom: 24px;
    transform: none;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-box {
    width: 56px;
    height: 52px;
    background: var(--green);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse;
    border: 0;
    position: relative;
    box-shadow: 0 12px 28px rgba(var(--green-rgb), 0.35);
    color: #fff;
    padding: 0;
    overflow: hidden;
    appearance: none;
    flex-shrink: 0;
}

.side-box-icon {
    color: #fff;
    font-size: 1.05rem;
    width: 56px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    flex-shrink: 0;
}

.side-box-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    width: 0;
    margin-left: 0;
    margin-right: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: block;
}

.side-box:hover,
.side-box:focus-visible {
    filter: brightness(1.06);
    transform: translateX(-4px);
}

.side-box:hover .side-box-label,
.side-box:focus-visible .side-box-label {
    opacity: 1;
    width: auto;
    min-width: 80px;
    margin-right: 14px;
    transform: translateX(0);
}

.side-box:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

.side-box:nth-child(1) { animation: slideInLeft 0.5s ease 0.1s both; }
.side-box:nth-child(2) { animation: slideInLeft 0.5s ease 0.25s both; }
.side-box:nth-child(3) { animation: slideInLeft 0.5s ease 0.4s both; }

/* =========================================
   MARQUEE SECTION
========================================= */
.marquee-section {
  
    padding: 0.85rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-section--mini {
    background: var(--surface-mint);
    border-bottom: 1px solid var(--green-soft-mid);
    padding: clamp(0.5rem, 2vw, 0.65rem) clamp(0.75rem, 4vw, 1.25rem);
    box-sizing: border-box;
}

.marquee-content {
    display: flex;
    gap: 7rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.marquee-section--mini .marquee-content {
    animation: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    white-space: normal;
    gap: 1rem 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.marquee-section--mini .marquee-item {
    font-size: clamp(0.72rem, 2.8vw, 0.78rem);
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    min-width: 0;
    max-width: 100%;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.marquee-icon {
    color: var(--green);
    flex-shrink: 0;
    font-size: 1em;
    line-height: 1;
}

.marquee-thumb {
    width: 56px;
    height: 36px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
 
}

.marquee-section--mini .marquee-thumb {
    width: 48px;
    height: 31px;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    min-height: min(85vh, 880px);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem) 3.5rem;
}

.hero-content {
    padding: 0 1rem 0 0;
    animation: fadeInUp 0.6s ease;
    order: -1;
    padding-left: 0;
}

.hero-title {
    font-size: clamp(2.1rem, 4.2vw, 3.15rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--black);
    margin-bottom: 1.1rem;
    letter-spacing: -0.035em;
    text-transform: none;
    text-wrap: balance;
}

.hero-title span {
    color: var(--green);
}

.hero-description {
    font-size: 1.0625rem;
    color: var(--text-gray);
    margin-bottom: 1.75rem;
    max-width: 28rem;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    max-width: 720px;
    
    padding: 0;
    overflow: hidden;
    
}

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

/* =========================================
   DOWNLOAD BUTTON (from Uiverse TCdesign-dev)
========================================= */
.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--green);
    color: var(--white);
    font-family: inherit;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    min-width: 11rem;
    padding: 0.85rem 1.25rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.download-button:hover {
    background: var(--green-dark);
    color: var(--white);
    filter: none;
    transform: translateY(-1px);
}

.download-button span {
    cursor: pointer;
    display: inline-block;
}

/* =========================================
   DOWNLOAD MODAL
========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(22, 50, 32, 0.38);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: min(520px, 94vw);
    max-height: min(90vh, 420px);
    background: var(--bg-white);
    border: none;
    position: relative;
    overflow: hidden;
    transform: translateY(16px);
    transition: transform 0.25s ease;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
}

.modal-card > .modal-card__body:only-child {
    width: 100%;
    max-width: 100%;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-card__visual {
    padding: 10px;
    flex: 0 0 42%;
    min-width: 0;
    background: var(--white);
}

.modal-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-card__body {
    flex: 1;
    min-width: 0;
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 1.35rem;
    line-height: 1;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    padding-right: 2rem;
    letter-spacing: -0.02em;
}

.modal-card__text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0 0 0.85rem;
}

.modal-card__features {
    list-style: none;
    margin: 0 0 0.9rem;
    padding: 0;
    display: grid;
    gap: 0.38rem;
}

.modal-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.84rem;
    line-height: 1.35;
    color: var(--text-dark);
}

.modal-card__features i {
    color: var(--green);
    margin-top: 0.1rem;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.modal-card__note {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    color: var(--text-gray);
}

.modal-card__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1rem;
    border: none;
    background: var(--green);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    position: relative;
}

.modal-card__download-default {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* [hidden] must stay hidden — do not set display on .modal-card__download-busy globally
   or it overrides the UA hidden rule and both rows show at once */
.modal-card__download-busy[hidden] {
    display: none !important;
}

.modal-card__download-busy:not([hidden]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.06em;
}

.modal-card__download-spinner {
    width: 1.1rem;
    height: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.modal-card__download.is-loading .modal-card__download-spinner {
    animation: ejeep-download-spin 0.65s linear infinite;
}

@keyframes ejeep-download-spin {
    to {
        transform: rotate(360deg);
    }
}

.modal-card__download.is-loading {
    pointer-events: none;
    cursor: wait;
    opacity: 0.95;
}

.modal-card__download:hover:not(.is-loading) {
    background: var(--green-dark);
    color: var(--white);
}

@media (max-width: 560px) {
    .modal-card {
        flex-direction: row;
        width: min(520px, 96vw);
        max-height: min(88vh, 460px);
    }

    .modal-card__visual {
        flex: 0 0 38%;
        padding: 8px;
    }

    .modal-card__body {
        padding: 1.1rem 1rem 0.95rem;
    }

    .modal-card__title {
        font-size: 1.1rem;
    }

    .modal-card__text,
    .modal-card__features li {
        font-size: 0.82rem;
    }

    .modal-card__note {
        font-size: 0.74rem;
        margin-bottom: 0.8rem;
    }

    .modal-card__download {
        min-height: 44px;
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .modal-card {
        width: calc(100vw - 16px);
        max-height: min(90vh, 500px);
    }

    .modal-card__body {
        padding: 0.95rem 0.85rem 0.85rem;
    }

    .modal-card__title {
        font-size: 1rem;
    }

    .modal-card__text,
    .modal-card__features li {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .modal-card__note {
        font-size: 0.72rem;
    }
}

/* =========================================
   PRICING SECTION
========================================= */
.pricing-section {
    padding: 4rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-cream);
    overflow-x: clip;
    box-sizing: border-box;
}

.pricing-section .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.45rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.55;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

.pricing-grid > .plan-card {
    min-width: 0;
}

.plan-card {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border: none;
    font-family: 'Inter', sans-serif;
    position: relative;
    isolation: isolate;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-md);
}

.plan-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.plan-card--featured {
    box-shadow: 0 12px 40px rgba(var(--green-rgb), 0.2);
    padding-top: 2.35rem;
}

.plan-card--featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(var(--green-rgb), 0.24);
}

.plan-popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--green);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    white-space: nowrap;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.plan-card h2 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
}

.plan-card h2 span {
    display: block;
    margin-top: -4px;
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
    overflow-wrap: break-word;
}

.etiquet-price {
    position: relative;
    background: var(--green-soft-mid);
    width: 100%;
    margin-left: 0;
    padding: 0.5rem 1rem;
    margin-bottom: 0.75rem;
}

.plan-card--featured .etiquet-price {
    background: var(--green);
}

.etiquet-price p {
    margin: 0;
    padding-top: 0.4rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.15rem 0.35rem;
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.plan-card--featured .etiquet-price p {
    color: var(--white);
}

.etiquet-price p::before {
    content: "₱";
    margin-right: 4px;
    font-size: 0.95rem;
    font-weight: 400;
}

.etiquet-price p::after {
    content: " card load";
    margin-left: 6px;
    font-size: 0.8rem;
    font-weight: 400;
}

.plan-card--featured .etiquet-price p::after {
    color: rgba(255, 255, 255, 0.88);
}

.plan-card__driver-note {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.55;
    margin: -2px 0 0.9rem;
    padding: 0.65rem 0.75rem;
    background: var(--surface);
    border-left: 3px solid var(--green-soft-mid);
}

.plan-card__driver-note strong {
    color: var(--text-dark);
    font-weight: 600;
}

.etiquet-price div {
    display: none;
}

.plan-card .benefits-list {
    margin-top: 1.5rem;
}

.plan-card .benefits-list ul {
    padding: 0;
    font-size: 14px;
}

.plan-card .benefits-list ul li {
    color: var(--text-gray);
    list-style: none;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-card .benefits-list ul li svg {
    width: 0.9rem;
    flex-shrink: 0;
    fill: var(--green);
}

.plan-card--featured .benefits-list ul li svg {
    fill: var(--green);
}

.plan-card .benefits-list ul li span {
    font-weight: 300;
}

.plan-badge {
    margin-top: 1rem;
    background: var(--bg-cream);
    padding: 0.5rem 0.75rem;
    font-size: 0.78rem;
    color: var(--black);
    font-weight: 600;
    line-height: 1.45;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.plan-card--featured .plan-badge {
    background: var(--green-soft);
}

.button-get-plan {
    display: flex;
    justify-content: center;
    margin-top: 1.2rem;
    position: relative;
    z-index: 1;
}

.button-get-plan a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--green);
    color: var(--white);
    padding: 0.75rem 1rem;
    border: none;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
}

.button-get-plan a:hover {
    background: var(--green-dark);
    color: var(--white);
}

.plan-card--featured .button-get-plan a {
    background: var(--green);
}

.plan-card--featured .button-get-plan a:hover {
    background: var(--green-dark);
    color: var(--white);
}

.button-get-plan .svg-rocket {
    margin-right: 8px;
    width: 0.85rem;
    fill: currentColor;
}

/* =========================================
   E-JEEP CARD SHOWCASE
========================================= */
.card-showcase {
   
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0rem 2rem ;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.card-visual {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
}

.card-visual__img {
    width: 100%;
    max-width: 100%;
    max-height: min(75vh, 720px);
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    object-fit: contain;
}

.card-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.card-info p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-pill {
    background: var(--green-soft);
    color: var(--text-dark);
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background: var(--surface-elevated);
    color: var(--text-dark);
    border-top: 1px solid var(--green-soft-mid);
    padding: 3rem 2rem 2rem;
    margin-top: 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--green-soft);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
    background: var(--green);
    color: var(--white);
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--green);
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeftPhone {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-left-phone {
    opacity: 0;
    animation: fadeInLeftPhone 0.85s ease-out forwards;
}

.fade-in-left-phone--delay {
    animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-left-phone,
    .fade-in-left-phone--delay {
        animation: none;
        opacity: 1;
    }
}

/* =========================================
   UTILITY
========================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
        min-height: auto;
        width: 100%;
    }

    .hero-visual { order: -1; }
    .hero-content { order: 1; padding: 0; }
    .hero-content,
    .hero-visual {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

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

    .hero-cta-group { justify-content: center; }

    .hero-image-container { min-height: 300px; }

    .pricing-section {
        padding: 4rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: min(480px, 100%);
        margin: 0 auto;
        gap: 2rem;
    }

    .plan-card--featured {
        transform: none;
        order: -1;
        padding-top: 1.5rem;
    }

    .plan-popular-badge {
        position: static;
        display: block;
        width: 100%;
        margin: 0 0 0.75rem;
        box-sizing: border-box;
        text-align: center;
        line-height: 1.25;
        padding: 0.4rem 0.5rem;
        white-space: normal;
    }

    .plan-card--featured:hover {
        transform: translateY(-3px);
    }

    .etiquet-price {
        width: 100%;
        margin-left: 0;
    }

    .card-showcase {
        margin-left: auto;
        margin-right: auto;
    }

    .card-showcase-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-pills { justify-content: center; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-left: 2rem;
    }

    .bottom-nav { display: flex; }

    body { padding-bottom: 64px; }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1.25rem;
        gap: 1.5rem;
        min-height: auto;
    }

    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 1rem; }
    .hero-image-container { min-height: 200px; }
    .hero-image { max-height: 260px; }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .download-button {
        width: auto;
        min-width: 200px;
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .pricing-section {
        padding: 3rem 1.25rem;
    }

    .pricing-section .section-header {
        max-width: 100%;
        padding: 0 0.25rem;
        box-sizing: border-box;
    }

    .pricing-grid {
        max-width: 100%;
        gap: 2.5rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-card h2 {
        font-size: 1.35rem;
    }

    .plan-card__driver-note {
        font-size: 0.8rem;
    }

    .etiquet-price {
        width: 100%;
        margin-left: 0;
    }

    .etiquet-price p {
        font-size: 1.6rem;
    }

    .button-get-plan a {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .card-showcase {
        margin: 2rem 0;
        padding: 2.5rem 1.25rem;
    }

    .card-info h3 { font-size: 1.75rem; }

    .footer {
        padding: 3rem 1.25rem 2rem;
        margin-top: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

}

@media (max-width: 560px) {
    .marquee-section--mini .marquee-content {
        flex-direction: column;
        gap: 0.65rem;
        align-items: center;
    }

    .marquee-section--mini .marquee-item {
        width: 100%;
        max-width: 22rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .marquee-section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .marquee-section:not(.marquee-section--mini) .marquee-item {
        font-size: 0.85rem;
    }

    .marquee-section--mini {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .marquee-section--mini .marquee-item {
        font-size: 0.72rem;
    }

    .pricing-section {
        padding: 2.5rem 1rem 3rem;
    }

    .pricing-section .section-title { font-size: 1.6rem; }
    .pricing-section .section-subtitle { font-size: 0.9rem; line-height: 1.5; }

    .plan-card { padding: 1.25rem; }

    .plan-card h2 span {
        font-size: 0.7rem;
    }

    .etiquet-price {
        width: 100%;
        margin-left: 0;
    }

    .plan-badge { font-size: 0.72rem; }

    .button-get-plan a {
        padding: 1rem;
        font-size: 0.9rem;
        min-height: 52px;
        letter-spacing: 0.04em;
    }

    .download-button {
        min-width: 190px;
        padding: 0.875rem 1.5rem;
    }

    .card-showcase {
        padding: 2rem 1rem;
    }

    .card-visual__img {
        max-width: 100%;
    }
}


/* =========================================
   AI ASSISTANT PANEL
========================================= */
.ai-fab {
    position: fixed;
    bottom: 28px;
    right: 88px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.ai-chat-box {
    background: #fff;
    border: none;
    width: 310px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.ai-chat-box.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.ai-chat-header {
    background: var(--green);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-header-avatar {
    width: 32px;
    height: 32px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-header-avatar svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.ai-header-info {
    flex: 1;
}

.ai-header-info p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.ai-header-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

.ai-header-status {
    width: 10px;
    height: 10px;
    background: var(--green);
    flex-shrink: 0;
}

.ai-chat-body {
    padding: 12px 12px 6px;
    max-height: 230px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scroll-behavior: smooth;
    background: #fafafa;
}

.ai-chat-body::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-body::-webkit-scrollbar-track {
    background: #eee;
}

.ai-chat-body::-webkit-scrollbar-thumb {
    background: rgba(var(--green-rgb), 0.45);
}

.ai-msg {
    font-size: 12.5px;
    line-height: 1.55;
    padding: 8px 10px;
    max-width: 88%;
    animation: ai-msg-in 0.2s ease;
}

@keyframes ai-msg-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ai-msg.bot {
    background: var(--green-soft);
    color: var(--text-dark);
    align-self: flex-start;
}

.ai-msg.user {
    background: var(--green);
    color: rgba(255, 255, 255, 0.98);
    align-self: flex-end;
}

.ai-typing {
    display: flex;
    gap: 4px;
    padding: 8px 10px;
    background: var(--green-soft);
    width: fit-content;
    align-items: center;
    animation: ai-msg-in 0.2s ease;
}

.ai-typing span {
    width: 6px;
    height: 6px;
    background: var(--green);
    animation: ai-dot-blink 1.2s infinite;
}

.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes ai-dot-blink {
    0%, 80%, 100% { opacity: 0.3; }
    40%            { opacity: 1; }
}

.ai-chips {
    padding: 8px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ai-chip {
    font-size: 11px;
    padding: 6px 10px;
    background: var(--green-soft);
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.ai-chip:hover {
    background: var(--green);
    color: #fff;
}

.ai-chip:active {
    transform: translateY(0);
}

.ai-chat-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    box-shadow: 0 -1px 0 rgba(51, 65, 85, 0.1);
}

.ai-chat-footer input {
    flex: 1;
    border: none;
    padding: 8px 10px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    background: #f3f4f6;
    color: var(--text-dark);
    outline: none;
    transition: background 0.2s;
}

.ai-chat-footer input:focus {
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(51, 65, 85, 0.12);
}

.ai-chat-footer input::placeholder {
    color: #6b7280;
}

.ai-send-btn {
    width: 36px;
    height: 36px;
    background: var(--green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s ease, transform 0.1s ease;
}

.ai-send-btn:hover  { background: var(--green-dark); }
.ai-send-btn:hover svg { color: #fff; }
.ai-send-btn:active { transform: scale(0.96); }

.ai-send-btn svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

.ai-powered {
    text-align: center;
    font-size: 10px;
    color: #6b7280;
    padding: 4px 0 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #fafafa;
}

@media (max-width: 768px) {
    .ai-fab {
        bottom: 76px;
        right: 16px;
        left: 16px;
        align-items: stretch;
    }

    .ai-chat-box {
        width: min(360px, calc(100vw - 32px));
        max-width: 100%;
        margin-left: auto;
    }

    .ai-chat-body {
        max-height: min(42vh, 300px);
    }
}

@media (max-width: 480px) {
    .ai-fab {
        bottom: 72px;
        right: 12px;
        left: 12px;
    }

    .ai-chat-box {
        width: 100%;
    }

    .ai-chat-header {
        padding: 10px 12px;
    }

    .ai-chat-footer {
        padding: 8px 10px;
    }

    .ai-chat-footer input {
        font-size: 11.5px;
        padding: 7px 9px;
    }
}