:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #ff3333;
    --driver-color: #2b2b2b;
    --passenger-color: #1a1a1a;
    --font-display: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none;
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .cursor-follower {
        display: block;
    }
}

.cursor-follower.active {
    transform: translate(-50%, -50%) scale(3);
}

/* Navigation */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 100;
}

.logo {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0px;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-downloads {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.header-icon {
    color: #ffffff;
    opacity: 1;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon img {
    display: block;
    filter: brightness(1);
}

.header-icon:hover {
    transform: scale(1.1);
}

.menu-btn {
    font-family: var(--font-body);
    letter-spacing: 0px;
    font-size: 1.1rem;
    z-index: 101;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2.5rem;
    border-radius: 32px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    line-height: 1;
}

.menu-text {
    display: inline;
}

/* Menu Overlay */
.big-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.big-menu.active {
    opacity: 1;
    pointer-events: all;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-body);
    letter-spacing: 0px;
    font-size: 1.1rem;
    cursor: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2.5rem;
    border-radius: 32px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.menu-link {
    font-family: var(--font-body);
    font-size: 4vw;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    cursor: none;
    letter-spacing: 0px;
}

.menu-link:hover {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-color);
}

.link-num {
    font-family: var(--font-body);
    font-size: 1rem;
    position: absolute;
    top: 0;
    right: -2rem;
    font-weight: 400;
    opacity: 0.5;
}

.menu-footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    opacity: 0.5;
}

.menu-legal {
    display: flex;
    align-items: center;
    gap: 0;
}

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

.menu-legal a:hover {
    opacity: 0.7;
}

.menu-social {
    display: flex;
    align-items: center;
    gap: 0;
}

.menu-social a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.menu-social a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--bg-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero[data-bg-loaded="true"] {
    background-image: url('../assets/capa.jpg');
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.split-text {
    font-family: var(--font-body);
    font-size: 12vw;
    line-height: 1;
    font-weight: 700;
    opacity: 0;
    transform: translateY(50px);
    letter-spacing: -4px;
}

.split-text.outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-color);
}

.hero-sub {
    margin-top: 2rem;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    font-weight: 300;
    letter-spacing: 0px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    font-size: 0.95rem;
    z-index: 2;
}

.line {
    width: 1px;
    height: 60px;
    background: var(--text-color);
    animation: scrollLine 2s infinite;
    transform-origin: top;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Concept Section */
.concept {
    padding: 10rem 0;
    overflow: hidden;
    will-change: transform;
}

.marquee {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 0.8rem 0;
    transform: rotate(-2deg) scale(1.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 2rem;
    margin-right: 2rem;
    letter-spacing: 0px;
}

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

    100% {
        transform: translateX(-50%);
    }
}

.concept-text {
    padding: 0 2rem;
    font-size: 4.4rem;
    line-height: 1.2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0px;
    background: linear-gradient(to right, #fff, #666);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.concept-text p {
    margin-bottom: 1rem;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.concept-text p.visible {
    opacity: 1;
}

/* Split View Section */
.split-view {
    display: flex;
    min-height: 100vh;
    position: relative;
    padding: 4rem 2rem;
    align-items: center;
    justify-content: center;
}

.split-view-container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.role {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--bg-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.role:last-child {
    border-right: none;
}

.role-content {
    position: relative;
    z-index: 1;
}

.role.passenger {
    align-items: flex-start;
    text-align: left;
}

.role.passenger[data-bg-loaded="true"] {
    background-image: url('../assets/passenger.jpg');
}

.role.driver {
    align-items: flex-end;
    text-align: right;
}

.role.driver[data-bg-loaded="true"] {
    background-image: url('../assets/driver.jpg');
}

.role:hover {
    flex: 1.5;
    background-color: rgba(255, 255, 255, 0.02);
}

.role-caption {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
}

.role h2 {
    font-family: var(--font-body);
    font-size: 3rem;
    margin-bottom: 10rem;
    font-weight: 500;
    letter-spacing: -1px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-list li {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0px;
}

.role.driver .benefit-list {
    text-align: right;
}

.role.passenger .benefit-list {
    text-align: left;
}

.cta-btn {
    padding: 1.5rem 3.5rem;
    border-radius: 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: none;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: none;
    display: inline-block;
}

.role.driver .cta-btn {
    align-self: flex-end;
}

.role.passenger .cta-btn {
    align-self: flex-start;
}

.btn-filled {
    background: var(--text-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
}

.btn-filled:hover {
    background: transparent;
    color: var(--text-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Manifesto Section */
.manifesto {
    min-height: 300vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #000;
    padding: 5rem 0 3rem;
}

.manifesto-content {
    margin-top: 10rem;
    margin-bottom: 8rem;
}

.large-text {
    font-family: var(--font-body);
    font-size: 6vw;
    text-align: center;
    font-weight: 500;
    background: linear-gradient(to right, #fff, #666);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0px;
}

/* Showcase */
.app-showcase {
    padding: 0;
    background: #000;
    display: flex;
    justify-content: center;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.video-container[data-bg-loaded="true"] {
    background-image: url('../assets/app.jpg');
}

.video-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 2;
}

.video-overlay h3 {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.4;
}

/* Timeline Component */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 6rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.timeline-content h3 {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0px;
    line-height: 1.2;
}

.timeline-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    letter-spacing: 0px;
}

/* Features Horizontal Scroll Section */
.features-grid {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.features-grid::-webkit-scrollbar {
    display: none;
}

.features-grid {
    display: flex;
    gap: 2rem;
    padding: 4rem calc(50vw - 250px);
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    transition: background 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 500px;
    min-height: 600px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-number {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 0px;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0px;
    line-height: 1.1;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    opacity: 0.9;
    letter-spacing: 0px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Download Section */
.download-section {
    min-height: 100vh;
    padding: 8rem 2rem;
    background-color: var(--bg-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-section[data-bg-loaded="true"] {
    background-image: url('../assets/baixe-app.jpg');
}

.download-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-title {
    font-family: var(--font-body);
    font-size: 4.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0px;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #666);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 3rem;
}

.store-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    color: var(--bg-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: none;
}

.store-button:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
}

.store-button img {
    filter: brightness(0) invert(0);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.store-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    opacity: 0.6;
    font-weight: 400;
}

.store-name {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    min-height: 100vh;
    padding: 8rem 2rem;
    background: var(--bg-color);
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-title {
    font-family: var(--font-body);
    font-size: 4.4rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
    background: linear-gradient(to right, #fff, #666);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0px;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 2rem;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.7;
    color: var(--text-color);
    margin: 0;
}

/* Footer */
.footer {
    min-height: 100vh;
    padding: 2rem 1rem 2rem;
    background: var(--bg-color);
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.footer-card {
    width: 100%;
    max-width: 1400px;
    height: auto;
    min-height: calc(100vh - 4rem);
    background: #111;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-card[data-bg-loaded="true"] {
    background-image: url('../assets/cars-roads.webp');
}

.footer-card>div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.footer-left .logo {
    mix-blend-mode: normal;
}

.footer-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    opacity: 1;
    margin-top: 1rem;
    font-weight: 400;
}

.footer-company {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    opacity: 1;
    margin-top: 2rem;
    font-weight: 500;
}

.footer-address {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    opacity: 1;
    margin-top: 0.25rem;
    font-weight: 300;
}

.footer-cnpj {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    opacity: 1;
    margin-top: 0.25rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.footer-legal-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.footer-legal-link:hover {
    opacity: 0.7;
}

.footer-separator {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.3;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: none;
    letter-spacing: 0px;
}

.footer-link:hover {
    opacity: 0.5;
}

.footer-nav-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-end;
    flex-direction: row-reverse;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

/* Hero with Background Detail */
.hero-section-detail {
    padding: 12rem 2rem 2rem;
    background: var(--bg-color);
    background-image: url('../assets/detail.svg');
    background-position: center top;
    background-size: auto;
    background-repeat: no-repeat;
}

.hero-section-detail-tall {
    padding: 18rem 2rem 2rem;
    background: var(--bg-color);
    background-image: url('../assets/detail.svg');
    background-position: center top;
    background-size: auto;
    background-repeat: no-repeat;
}

/* Concept Text Variations */
.concept-text-left {
    text-align: left;
    margin-left: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 2rem 2rem 8rem;
    background: var(--bg-color);
}

.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sticky-card {
    position: sticky;
    top: 10rem;
}

.sticky-card-content {
    padding: 2rem;
}

.sticky-card-title {
    font-family: var(--font-body);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.2;
}

.sticky-card-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 6rem;
    line-height: 1.6;
}

.sticky-card-features {
    margin-top: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    color: #4ade80;
    width: 24px;
    height: 24px;
}

.feature-text {
    font-size: 1rem;
    opacity: 0.9;
}

.price-display {
    font-family: var(--font-body);
    font-size: 3.5rem;
    font-weight: 500;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.price-period {
    font-family: var(--font-body);
    font-size: 2rem;
    opacity: 0.7;
}

.steps-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Evaluation Form Styles */
.eval-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem 8rem;
}

.eval-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
}

.eval-title {
    font-family: var(--font-body);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
}

.eval-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-label {
    font-family: var(--font-body);
    font-size: 1rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.5rem;
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.stars-container {
    display: flex;
    gap: 0.5rem;
    font-size: 3rem;
    cursor: pointer;
}

.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    resize: vertical;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-small-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    opacity: 0.5;
    display: block;
    margin-top: 0.5rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-title {
    font-family: var(--font-body);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4ade80;
}

.success-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    opacity: 0.8;
}

.hero-subtitle {
    opacity: 0.8;
    margin-top: 2rem;
    font-size: 1.5rem;
}

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

.max-w-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-1 {
    margin-top: 1rem;
}

.align-self-center {
    align-self: center;
}

.concept-padding {
    padding: 4rem 0;
}

.download-section-short {
    min-height: 60vh;
}

.max-w-900 {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-size: auto;
    }

    .nav-overlay {
        padding: 2rem 1.5rem 1rem;
    }

    .logo img {
        height: 50px !important;
    }

    .menu-btn {
        padding: 0.9rem 1.2rem;
        border-radius: 24px;
    }

    .menu-text {
        display: none;
    }

    .menu-icon {
        display: inline;
    }

    .logo {
        font-size: 1rem;
    }

    .split-view {
        flex-direction: column;
    }

    .split-text {
        font-size: 18vw;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .role {
        padding: 4rem 2rem;
        min-height: 70vh;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        align-items: flex-start !important;
        text-align: left !important;
    }

    .role h2 {
        margin-bottom: 3rem;
    }

    .benefit-list li {
        font-size: 1.5rem;
    }

    .role.driver .benefit-list {
        text-align: left;
    }

    .cta-btn {
        align-self: flex-start !important;
    }

    .role:hover {
        flex: 1;
    }

    .concept-text {
        font-size: 2.5rem;
    }

    .large-text {
        font-size: 12vw;
    }

    .video-container {
        min-height: 60vh;
        aspect-ratio: auto;
    }

    .video-overlay {
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
    }

    .video-overlay h3 {
        font-size: 1.2rem;
    }

    .manifesto-content {
        margin-top: 5rem;
        margin-bottom: 4rem;
    }

    .features-grid {
        padding: 2rem calc(50vw - 150px);
        gap: 1.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .feature-card {
        min-width: 300px;
        min-height: 400px;
        padding: 2rem;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
        will-change: auto;
        -webkit-transform: none !important;
    }

    .feature-card * {
        transform: none !important;
        transition: none !important;
    }

    .feature-card h3 {
        font-size: 3rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .footer-card {
        padding: 12rem 2rem 2.5rem;
        background-size: 200%;
    }

    .footer-card>div {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .footer-nav {
        align-items: flex-start;
    }

    .footer-link {
        font-size: 1rem;
    }

    .download-title {
        font-size: 2.5rem;
    }

    .faq-section {
        padding: 8rem 3rem;
    }

    .footer-nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-card {
        background-position: top left;
    }

    .footer-social {
        align-items: flex-start;
    }

    .menu-link {
        font-size: 8vw;
    }

    .download-subtitle {
        font-size: 1rem;
    }

    .store-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .store-button {
        width: 100%;
        justify-content: center;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-section {
        padding: 4rem 4rem;
    }

    .faq-question {
        font-size: 1.2rem;
        padding: 1.5rem 0;
    }

    .faq-icon {
        font-size: 1.5rem;
        margin-left: 1rem;
    }

    .split-view {
        padding: 2rem 1rem;
    }

    .split-view-container {
        flex-direction: column;
        border-radius: 16px;
    }

    .role:last-child {
        border-right: none;
    }

    /* Timeline Mobile Styles */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        align-self: flex-start;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.8rem;
    }

    .timeline-content p {
        font-size: 1rem;
    }

    /* Responsive styles for driver and passenger pages */
    .passenger-benefits>div,
    .driver-benefits>div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .passenger-benefits>div>div:first-child,
    .driver-benefits>div>div:first-child {
        position: static !important;
    }

    .concept-text {
        font-size: 2.5rem;
    }

    /* Mantém centralizado apenas para concept-text sem a classe left */
    section:not(.hero-section-detail) .concept-text:not(.concept-text-left) {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Hero section adjustments for mobile */
    .hero-section-detail {
        padding: 8rem 1.5rem 2rem;
    }

    .passenger-benefits,
    .driver-benefits {
        padding: 2rem 1.5rem 4rem !important;
    }

    /* Sticky card content adjustments */
    .passenger-benefits h2,
    .driver-benefits h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .passenger-benefits p,
    .driver-benefits p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    /* Feature cards mobile */
    .feature-card {
        padding: 2rem 1.5rem !important;
        min-height: auto !important;
    }
}

/* ===== CHECKOUT STYLES ===== */

/* Checkout Container */
.checkout-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.progress-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step.active .progress-number {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.progress-step.completed .progress-number {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.progress-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    opacity: 0.5;
}

.progress-step.active .progress-label,
.progress-step.completed .progress-label {
    opacity: 1;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
}

.progress-line.active {
    background: #10b981;
}

/* Checkout Grid */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

/* Checkout Main */
.checkout-main {
    padding: 0;
}

.step-indicator {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.step-indicator.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.step-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.step-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.step-heading {
    font-family: var(--font-body);
    font-size: 1.75rem;
    font-weight: 500;
    margin: 0 0 2rem 0;
    letter-spacing: -0.5px;
}

.step-heading:first-child {
    margin-top: 0;
}

/* Page Header with Back Button */
.page-header-with-back {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.page-header-with-back .step-heading {
    margin: 0;
}

.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

.back-button i {
    width: 20px;
    height: 20px;
}

/* Input Card */
.input-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.input-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.input-card:focus-within {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.input-card .form-label {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    opacity: 1;
    color: var(--text-color);
}

.input-card .form-input {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.input-card .form-input:focus {
    background: transparent;
}

/* PIX Authorization Text */
.pix-authorization-text {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
}

.pix-authorization-text p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Plan Selection */
.plan-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.plan-option {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.plan-option:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-option input[type="radio"]:checked~.plan-option-content {
    opacity: 1;
}

.plan-option input[type="radio"]:checked+.plan-option-content::before {
    opacity: 1;
}

.plan-option.featured {
    border-color: #10b981;
}

.plan-option input[type="radio"]:checked {
    &~* {
        border-color: var(--text-color);
    }
}

.plan-option:has(input[type="radio"]:checked) {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-color);
}

.plan-option-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-option-title {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 500;
}

.plan-option-price {
    font-family: var(--font-body);
    font-size: 1.65rem;
    font-weight: 500;
    color: #10b981;
}

.plan-option-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    opacity: 0.7;
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.payment-method-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

.payment-method-card.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-color);
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.method-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    font-size: 2rem;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
}

.method-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Payment Details */
.payment-details {
    display: none;
    animation: fadeIn 0.3s ease;
}

.payment-details.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: var(--font-body);
    font-size: 1rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Apple Pay */
.apple-pay-container {
    text-align: center;
    padding: 2rem 0;
}

.apple-pay-button {
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    border-radius: 12px;
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.apple-pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.apple-icon {
    font-size: 1.5rem;
}

.payment-hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* PIX Info */
.pix-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-text strong {
    display: block;
    margin-bottom: 0.5rem;
}

.info-text p {
    opacity: 0.8;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label.large {
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    justify-content: space-between;
}

.btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Checkout Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 2rem;
}

.plan-summary-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.summary-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Plan Info */
.plan-info {
    text-align: left;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.plan-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.plan-name {
    font-family: var(--font-body);
    font-size: 1.65rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-family: var(--font-body);
    font-size: 2.75rem;
    font-weight: 500;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.plan-period {
    font-size: 1.05rem;
    opacity: 0.7;
}

/* Terms Notice */
.terms-notice {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-align: center;
}

.terms-notice p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

.terms-notice a {
    color: #10b981;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.terms-notice a:hover {
    opacity: 0.7;
}

/* Terms Notice Outside Card */
.terms-notice-outside {
    margin-top: 1.5rem;
    text-align: left;
}

.terms-notice-outside p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.terms-notice-outside a {
    color: #10b981;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.terms-notice-outside a:hover {
    opacity: 0.9;
}

.payment-method-name {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Plan Features */
.plan-features {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.feature-check {
    color: #10b981;
    font-weight: bold;
}

/* Plan Toggle */
.plan-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toggle-btn {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.toggle-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-color);
}

.savings-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* Security Badge */
.security-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.security-icon {
    font-size: 2rem;
}

.security-text {
    flex: 1;
}

.security-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.security-text p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Review Page */
.review-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
}

.edit-link {
    color: #10b981;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.edit-link:hover {
    opacity: 0.7;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    opacity: 0.7;
}

.review-value {
    font-weight: 500;
}

/* Terms Section */
.terms-section {
    padding: 2rem 0;
}

.terms-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.terms-link {
    color: #10b981;
    text-decoration: underline;
}

.terms-link:hover {
    opacity: 0.7;
}

/* Total Breakdown */
.total-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.breakdown-item.discount {
    color: #10b981;
}

.breakdown-item.total {
    font-size: 1.2rem;
    font-weight: 500;
    padding-top: 0.75rem;
}

.breakdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.billing-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.9rem;
}

.billing-info p {
    margin-bottom: 0.5rem;
}

.billing-info p:last-child {
    margin-bottom: 0;
}

.savings {
    color: #10b981;
}

/* Benefits Card */
.benefits-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.benefits-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.benefit-icon {
    color: #10b981;
    font-weight: bold;
}

/* Guarantee Badge */
.guarantee-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.guarantee-text p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Success Page */
.success-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-container-left {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.success-animation {
    margin-bottom: 3rem;
}

.success-checkmark {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
}

.check-icon {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #10b981;
}

.icon-line {
    height: 5px;
    background-color: #10b981;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 72px;
    left: 28px;
    width: 40px;
    transform: rotate(45deg);
    animation: checkTip 0.75s;
}

.icon-line.line-long {
    top: 66px;
    right: 24px;
    width: 80px;
    transform: rotate(-45deg);
    animation: checkLong 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(16, 185, 129, 0.2);
}

.icon-fix {
    top: 16px;
    width: 10px;
    left: 50px;
    z-index: 1;
    height: 135px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: var(--bg-color);
}

@keyframes checkTip {
    0% {
        width: 0;
        left: 8px;
        top: 72px;
    }

    54% {
        width: 0;
        left: 8px;
        top: 72px;
    }

    70% {
        width: 50px;
        left: -10px;
        top: 72px;
    }

    84% {
        width: 35px;
        left: 28px;
        top: 72px;
    }

    100% {
        width: 40px;
        left: 28px;
        top: 72px;
    }
}

@keyframes checkLong {
    0% {
        width: 0;
        right: 63px;
        top: 66px;
    }

    65% {
        width: 0;
        right: 63px;
        top: 66px;
    }

    84% {
        width: 90px;
        right: 0;
        top: 66px;
    }

    100% {
        width: 80px;
        right: 24px;
        top: 66px;
    }
}

.success-content {
    opacity: 0;
}

.success-title {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.success-container-left .success-title {
    text-align: left;
}

.success-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.success-container-left .success-subtitle {
    text-align: left;
}

/* Subscription Details */
.subscription-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.detail-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.85rem;
    opacity: 0.6;
}

.detail-value {
    font-size: 1rem;
    font-weight: 500;
}

/* Next Steps */
.next-steps {
    margin: 4rem 0;
}

.steps-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    color: #10b981;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.step-description {
    font-size: 0.95rem;
    opacity: 0.7;
    margin: 0;
}

/* Download Actions */
.download-actions {
    margin: 3rem 0;
}

/* Help Section */
.help-section {
    margin: 3rem 0;
}

.help-card {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.help-icon {
    font-size: 3rem;
}

.help-content {
    flex: 1;
    text-align: left;
}

.help-content h4 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.help-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.help-link {
    color: #10b981;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.help-link:hover {
    opacity: 0.7;
}

/* Success Footer */
.success-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive - Checkout */
@media (max-width: 768px) {
    .checkout-container {
        padding: 0 1.5rem;
    }

    .checkout-progress {
        gap: 0.5rem;
        margin-bottom: 3rem;
    }

    .progress-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .progress-label {
        font-size: 0.75rem;
    }

    .progress-line {
        width: 40px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-main {
        padding: 2rem 1.5rem;
    }

    .checkout-title {
        font-size: 2rem;
    }

    .checkout-subtitle {
        font-size: 1rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn-secondary,
    .form-actions .cta-btn {
        width: 100%;
        text-align: center;
    }

    .checkout-sidebar {
        position: static;
    }

    .subscription-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-subtitle {
        font-size: 1rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-content {
        text-align: center;
    }

    .help-card {
        flex-direction: column;
        text-align: center;
    }

    .help-content {
        text-align: center;
    }
}