/* ===========================================
   LANDING PAGE STYLES
   =========================================== */

/* Sections & headers */
.section {
    padding: 4.5rem 0;
}

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

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Hero stats */
.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-main);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Hero trust chips */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.trust-chip i {
    color: #059669;
    font-size: 0.9rem;
}

/* Hero visual: decorative gradient blob */
.circle-gradient {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 87, 42, 0.14) 0%, rgba(30, 58, 138, 0.06) 45%, transparent 68%);
    top: -70px;
    right: -90px;
    z-index: -1;
    pointer-events: none;
}

/* Third floating card: verified Aero-Dasher */
.card-3 {
    transform: translate(70px, 30px);
}

.dasher-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #fb923c);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(249, 87, 42, 0.3);
}

.card-3 h4,
.card-3 p {
    color: var(--text-main);
}

.card-3 .verified-ic {
    color: #059669;
    font-size: 0.85em;
}

.card-3 .card-rating {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.card-3 .card-rating .fa-star {
    color: #f59e0b;
}

.card-3 .card-status {
    color: #059669;
    font-size: 0.85rem;
}

/* Gentle float animation for hero cards (desktop only) */
@media (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
    .card-1 {
        animation: float-1 6s ease-in-out infinite;
    }

    .card-2 {
        animation: float-2 7s ease-in-out 1.2s infinite;
    }

    .card-3 {
        animation: float-3 6.5s ease-in-out 0.6s infinite;
    }

    .card-wrapper:hover {
        animation-play-state: paused;
    }
}

@keyframes float-1 {
    0%, 100% { transform: translate(185px, -55px); }
    50% { transform: translate(185px, -69px); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(-120px, 10px); }
    50% { transform: translate(-120px, -4px); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(70px, 30px); }
    50% { transform: translate(70px, 16px); }
}

@media (max-width: 1024px) {
    .floating-card.card-3 {
        transform: none;
    }

    .hero-visual {
        flex-wrap: wrap;
    }
}

/* Assurance strip */
.assurance-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    box-shadow: var(--glass-shadow);
}

.assurance-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.assurance-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 3px;
}

.assurance-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.assurance-item span {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* How it works steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 87, 42, 0.35);
    box-shadow: 0 14px 30px -10px rgba(15, 23, 42, 0.15);
}

.step-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #fb923c);
    color: #ffffff;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 12px rgba(249, 87, 42, 0.3);
}

.step-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px -10px rgba(15, 23, 42, 0.15);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #374151;
    font-size: 0.97rem;
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #fb923c);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.testimonial-route {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* FAQ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: rgba(249, 87, 42, 0.35);
    box-shadow: var(--glass-shadow);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.faq-item summary::after {
    content: '\002B';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-answer {
    padding: 0 1.3rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
}

.faq-footnote {
    text-align: center;
    color: var(--text-muted);
    margin-top: 1.75rem;
    font-size: 0.95rem;
}

.faq-footnote a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.faq-footnote a:hover {
    text-decoration: underline;
}

/* Final CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--primary), #fb923c);
    border-radius: 20px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 45px -18px rgba(249, 87, 42, 0.55);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -130px;
    right: -80px;
    pointer-events: none;
}

.cta-band h2 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.cta-band p {
    opacity: 0.93;
    margin: 0 auto 1.9rem;
    max-width: 580px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-on-orange {
    background: #ffffff;
    color: var(--primary);
    border: 1px solid transparent;
}

.btn-on-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    color: var(--primary-hover);
}

.btn-ghost-light {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .assurance-bar {
        padding: 1.5rem;
    }

    .cta-band {
        padding: 2.5rem 1.25rem;
    }

    .cta-band h2 {
        font-size: 1.7rem;
    }
}
