:root {
    --primary-color: #08605f;
    --primary-dark: #054847;
    --secondary-color: #f1f5f9;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --success-color: #598381;
    --gradient-start: #08605f;
    --gradient-end: #177e89;
    --accent-green: #a2ad59;
    --accent-teal: #177e89;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.hero-content {
    width: 50%;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-image {
    width: 50%;
    position: relative;
    overflow: hidden;
    animation: fadeInRight 0.8s ease-out;
    min-height: 500px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-headline {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}


.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.trust-line {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

section {
    padding: 80px 0;
}

section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
}

.how-it-works {
    background-color: #ffffff;
}

.steps {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

.step {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
    font-size: 0.938rem;
}

.inline-cta {
    text-align: center;
}

.inline-cta .btn {
    box-shadow: 0 4px 14px rgba(8, 96, 95, 0.4);
    font-size: 1.125rem;
    padding: 16px 40px;
}

.inline-cta .btn:hover {
    box-shadow: 0 6px 20px rgba(8, 96, 95, 0.5);
}

.for-owners {
    background-color: var(--secondary-color);
}

.for-drivers {
    background-color: #ffffff;
}

.features-list {
    list-style: none;
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.for-owners .features-list li {
    background-color: white;
}

.for-drivers .features-list li {
    background-color: var(--secondary-color);
}

.features-list li:hover {
    transform: translateX(8px);
}

.features-list .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.features-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.features-list p {
    color: var(--text-medium);
    font-size: 0.938rem;
}

.microcopy {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.938rem;
    font-style: italic;
}

.safety {
    background-color: white;
}

.safety-grid {
    display: grid;
    gap: 32px;
}

.safety-item {
    text-align: center;
    padding: 32px 20px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-4px);
}

.icon-large {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.safety-item h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.safety-item p {
    color: var(--text-medium);
    font-size: 0.938rem;
}

.why-now {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    text-align: center;
}

.why-now h2 {
    color: white;
}

.why-now .btn-primary {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.why-now-text {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Waitlist form */
.waitlist-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    align-items: stretch;
}

.waitlist-input {
    min-width: 200px;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    width: 300px;
}

.waitlist-input::placeholder {
    color: var(--primary-color);
    opacity: 0.7;
}

.waitlist-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(8, 96, 95, 0.15);
}

.waitlist-button {
    flex: 0 0 auto;
    padding: 14px 24px;
}

.waitlist-message {
    margin-top: 8px;
    font-size: 0.938rem;
    width: 100%;
}

.cta-group .waitlist-form {
    max-width: 100%;
}

.inline-cta .waitlist-form {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .waitlist-input {
        flex: 1 1 100%;
    }
    
    .waitlist-button {
        flex: 1 1 100%;
    }
}

.faq {
    background-color: var(--secondary-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    text-align: center;
    padding: 32px 0;
}

.footer p {
    font-size: 0.875rem;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero .container {
        flex-direction: column;
        min-height: auto;
    }

    .hero::before {
        right: 0;
    }

    .hero-content {
        width: 100%;
        padding: 60px 20px 40px;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        min-height: 300px;
    }

    .hero-image img {
        object-fit: cover;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .cta-group {
        align-items: center;
    }

    .btn {
        width: 100%;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .btn {
        width: auto;
        min-width: 240px;
    }
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-subheadline {
        font-size: 1.25rem;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .hero-content {
        padding: 80px 100px;
    }

    .hero-headline {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        min-height: 600px;
    }

    section {
        padding: 100px 0;
    }

    section h2 {
        font-size: 2.5rem;
    }
}


