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

:root {
    --green: #20c763;
    --green-dark: #128c4a;
    --teal: #087c74;
    --ink: #16212f;
    --muted: #647080;
    --line: #e3e8ef;
    --paper: #ffffff;
    --soft: #f4f8f6;
    --soft-green: #e9f8ef;
    --charcoal: #101820;
    --gold: #f4b942;
    --shadow-sm: 0 8px 20px rgb(22 33 47 / 0.08);
    --shadow-md: 0 18px 40px rgb(22 33 47 / 0.12);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    background: rgb(255 255 255 / 0.94);
    border-bottom: 1px solid rgb(227 232 239 / 0.78);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header.is-scrolled {
    background: rgb(255 255 255 / 0.98);
    box-shadow: 0 10px 30px rgb(22 33 47 / 0.08);
}

.nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    min-height: 76px;
    padding: 0 24px;
}

.nav-brand,
.footer-brand {
    align-items: center;
    display: inline-flex;
    gap: 12px;
    text-decoration: none;
}

.logo,
.footer-logo {
    border-radius: 50%;
    height: 44px;
    object-fit: cover;
    width: 44px;
}

.brand-name,
.footer-brand-name {
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 800;
}

.nav-actions {
    align-items: center;
    display: flex;
    gap: 24px;
}

.nav-link {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 650;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--green-dark);
}

.cta-button,
.primary-button,
.secondary-button,
.outline-button,
.text-button {
    align-items: center;
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-flex;
    font-weight: 750;
    gap: 10px;
    justify-content: center;
    line-height: 1.1;
    min-height: 46px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.cta-button,
.primary-button {
    background: var(--green);
    box-shadow: var(--shadow-sm);
    color: #fff;
    padding: 14px 20px;
}

.cta-button:hover,
.primary-button:hover {
    background: var(--green-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.primary-button.large {
    min-height: 54px;
    padding: 16px 24px;
}

.secondary-button {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 14px 20px;
}

.secondary-button:hover {
    border-color: var(--green);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.secondary-button.dark {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: #fff;
}

.secondary-button.dark:hover {
    background: #22303c;
    color: #fff;
}

.outline-button {
    background: transparent;
    border: 1px solid rgb(255 255 255 / 0.7);
    color: #fff;
    padding: 14px 20px;
}

.outline-button:hover {
    background: rgb(255 255 255 / 0.12);
    transform: translateY(-2px);
}

.text-button {
    color: var(--green-dark);
    min-height: auto;
    padding: 0;
}

.hero {
    background:
        radial-gradient(circle at 82% 16%, rgb(32 199 99 / 0.18), transparent 30%),
        linear-gradient(135deg, #f7fbf8 0%, #eaf8f0 100%);
    overflow: hidden;
    padding: 132px 24px 72px;
}

.hero-content {
    align-items: center;
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    margin: 0 auto;
    max-width: 1180px;
}

.eyebrow {
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.eyebrow.light {
    color: rgb(255 255 255 / 0.78);
}

.hero-title {
    color: var(--ink);
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.02;
    margin-bottom: 22px;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.18rem;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 28px;
}

.hero-stats {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
}

.stat {
    background: rgb(255 255 255 / 0.78);
    border: 1px solid rgb(227 232 239 / 0.85);
    border-radius: var(--radius);
    padding: 16px;
}

.stat-number {
    color: var(--green-dark);
    display: block;
    font-size: 1.05rem;
    font-weight: 850;
}

.stat-label {
    color: var(--muted);
    display: block;
    font-size: 0.86rem;
    margin-top: 2px;
}

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

.hero-phone-image {
    border-radius: 22px;
    box-shadow: 0 28px 70px rgb(22 33 47 / 0.22);
    display: block;
    height: auto;
    max-width: min(100%, 430px);
    object-fit: contain;
    transform: rotate(3deg);
    transition: transform 0.25s ease;
}

.hero-phone-image:hover {
    transform: rotate(0deg) translateY(-4px);
}

.section-heading {
    margin: 0 auto 44px;
    max-width: 760px;
    text-align: center;
}

.section-title {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.12;
}

.section-title.left {
    text-align: left;
}

.section-subtitle,
.section-copy {
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: 14px;
}

.city-section,
.how-it-works,
.benefits,
.testimonials,
.faq-section {
    padding: 76px 0;
}

.city-section {
    background: #fff;
}

.city-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.city-card {
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-weight: 800;
    gap: 12px;
    justify-content: center;
    min-height: 88px;
    padding: 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.city-card i {
    color: var(--green-dark);
}

.city-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.how-it-works {
    background: var(--soft);
}

.steps-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 54px;
}

.step-card,
.benefit-card,
.use-card,
.audience-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgb(22 33 47 / 0.02);
}

.step-card {
    padding: 26px;
}

.step-number {
    align-items: center;
    background: var(--green);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-weight: 850;
    height: 36px;
    justify-content: center;
    margin-bottom: 18px;
    width: 36px;
}

.step-card h3,
.benefit-title,
.use-card h3 {
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-card p,
.benefit-description,
.use-card p {
    color: var(--muted);
}

.video-container {
    align-items: start;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    margin: 0 auto;
    max-width: 920px;
}

.video-wrapper {
    background: #000;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.video-wrapper.is-vertical {
    aspect-ratio: 9 / 16;
    max-width: 420px;
    width: 100%;
}

.video-wrapper iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}

.video-description {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 5px solid var(--green);
    border-radius: var(--radius);
    padding: 28px;
}

.video-description h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.video-description p {
    color: var(--muted);
    margin-bottom: 22px;
}

.audience-section {
    background: #fff;
    padding: 84px 0;
}

.audience-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-panel {
    padding: 32px;
}

.passenger-panel {
    background: linear-gradient(135deg, #fff 0%, #f2fbf5 100%);
}

.driver-panel {
    background: linear-gradient(135deg, #15212c 0%, #243849 100%);
    border-color: #243849;
    color: #fff;
}

.driver-panel p,
.driver-panel .check-list {
    color: rgb(255 255 255 / 0.78);
}

.driver-panel h2 {
    color: #fff;
}

.panel-icon,
.benefit-icon {
    align-items: center;
    background: var(--soft-green);
    border-radius: 50%;
    color: var(--green-dark);
    display: flex;
    font-size: 1.3rem;
    height: 54px;
    justify-content: center;
    margin-bottom: 20px;
    width: 54px;
}

.driver-panel .panel-icon {
    background: rgb(255 255 255 / 0.12);
    color: #fff;
}

.audience-panel h2 {
    font-size: 1.8rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.audience-panel p {
    color: var(--muted);
}

.check-list {
    color: var(--ink);
    list-style: none;
    margin: 22px 0 26px;
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    color: var(--green);
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.benefits {
    background: var(--soft);
}

.benefits-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card {
    padding: 28px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.safety-section {
    background: var(--charcoal);
    color: #fff;
    padding: 82px 0;
}

.safety-section .section-title,
.safety-section .section-copy {
    color: #fff;
}

.safety-section .section-copy {
    color: rgb(255 255 255 / 0.72);
}

.safety-grid,
.faq-grid {
    align-items: start;
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.safety-list {
    display: grid;
    gap: 14px;
}

.safety-item {
    align-items: center;
    background: rgb(255 255 255 / 0.08);
    border: 1px solid rgb(255 255 255 / 0.12);
    border-radius: var(--radius);
    display: flex;
    gap: 14px;
    padding: 20px;
}

.safety-item i {
    color: var(--gold);
}

.testimonials {
    background: #fff;
}

.use-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-card {
    padding: 26px;
}

.use-card i {
    color: var(--green-dark);
    font-size: 1.55rem;
    margin-bottom: 18px;
}

.faq-section {
    background: var(--soft);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
    padding: 20px 48px 20px 20px;
    position: relative;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    color: var(--green-dark);
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 21px;
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(180deg);
}

.faq-list p {
    border-top: 1px solid var(--line);
    color: var(--muted);
    padding: 18px 20px 20px;
}

.final-cta {
    background: linear-gradient(135deg, var(--green-dark), var(--teal));
    color: #fff;
    padding: 84px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 850;
    line-height: 1.1;
}

.cta-subtitle {
    color: rgb(255 255 255 / 0.82);
    font-size: 1.08rem;
    margin: 14px auto 28px;
    max-width: 620px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.light-button {
    background: #fff;
    color: var(--green-dark);
}

.light-button:hover {
    background: #f2fff7;
    color: var(--green-dark);
}

.footer {
    background: #0f171f;
    color: #fff;
    padding: 36px 0 26px;
}

.footer-content {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.footer-brand-name {
    color: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-end;
}

.footer-link {
    align-items: center;
    color: rgb(255 255 255 / 0.78);
    display: inline-flex;
    gap: 8px;
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 0.1);
    color: rgb(255 255 255 / 0.58);
    font-size: 0.9rem;
    margin-top: 26px;
    padding-top: 20px;
}

.floating-whatsapp {
    align-items: center;
    background: var(--green);
    border-radius: 999px;
    bottom: 20px;
    box-shadow: 0 16px 36px rgb(18 140 74 / 0.28);
    color: #fff;
    display: inline-flex;
    font-weight: 850;
    gap: 10px;
    padding: 14px 18px;
    position: fixed;
    right: 20px;
    text-decoration: none;
    z-index: 30;
}

.floating-whatsapp:hover {
    background: var(--green-dark);
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.cta-button:focus-visible,
.outline-button:focus-visible,
.text-button:focus-visible,
.city-card:focus-visible,
.floating-whatsapp:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible {
    outline: 3px solid rgb(52 183 241 / 0.5);
    outline-offset: 3px;
}

@supports not (aspect-ratio: 9 / 16) {
    .video-wrapper.is-vertical {
        height: 0;
        padding-bottom: 177.78%;
        position: relative;
    }

    .video-wrapper.is-vertical iframe {
        inset: 0;
        position: absolute;
    }
}

@media (max-width: 1020px) {
    .nav-actions {
        gap: 14px;
    }

    .hero-content,
    .audience-grid,
    .safety-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .hero-subtitle,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .city-grid,
    .benefits-grid,
    .use-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-title.left {
        text-align: center;
    }

    .safety-grid > div:first-child,
    .faq-grid > div:first-child {
        text-align: center;
    }
}

@media (max-width: 760px) {
    .container {
        padding: 0 18px;
    }

    .nav {
        min-height: 68px;
        padding: 0 16px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .nav-link {
        display: none;
    }

    .cta-button {
        min-height: 42px;
        padding: 12px 14px;
    }

    .hero {
        padding: 104px 18px 58px;
    }

    .hero-content {
        gap: 42px;
    }

    .hero-stats,
    .steps-grid,
    .video-container {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        max-width: 440px;
    }

    .hero-phone-image {
        max-width: min(100%, 340px);
        transform: none;
    }

    .city-section,
    .how-it-works,
    .benefits,
    .testimonials,
    .faq-section,
    .audience-section,
    .safety-section,
    .final-cta {
        padding: 58px 0;
    }

    .video-wrapper.is-vertical {
        margin: 0 auto;
        max-height: 78vh;
        max-width: 340px;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .hero-actions,
    .cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button,
    .outline-button,
    .cta-button {
        width: 100%;
    }

    .nav .cta-button {
        width: auto;
    }

    .city-grid,
    .benefits-grid,
    .use-grid {
        grid-template-columns: 1fr;
    }

    .audience-panel,
    .benefit-card,
    .step-card,
    .use-card {
        padding: 22px;
    }

    .floating-whatsapp {
        bottom: 14px;
        left: 14px;
        justify-content: center;
        right: 14px;
    }
}
