/* DrawSort landing — how-it-works + trust + pricing + final CTA. Split from the imported monolith (module-size
   guard: one stylesheet layer per file, load order = the <link> order). */
/* ============================================================
   4. FEATURE CAROUSEL SECTION
   ============================================================ */
.carousel-section {
    padding: 96px 0;
    background: var(--white);
}

.carousel-section .container {
    margin-bottom: 48px;
}

/* ============================================================
   5. HOW IT WORKS
   ============================================================ */
.how-it-works {
    background: var(--section-bg);
    padding: 96px 24px;
    border-top: 1px solid var(--section-border);
    border-bottom: 1px solid var(--section-border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.67% + 16px);
    right: calc(16.67% + 16px);
    height: 1px;
    background: var(--card-border);
    z-index: 0;
}

.step {
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-family: var(--font-mono);
    flex-shrink: 0;
}

.step h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
}

/* ============================================================
   6. TRUST SIGNALS
   ============================================================ */
.trust-signals {
    background: var(--dark);
    padding: 64px 24px;
}

.trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.trust-label {
    font-size: 14px;
    color: var(--text-muted-dark);
    line-height: 1.5;
}

/* ============================================================
   7. PRICING
   ============================================================ */
.pricing {
    background: var(--white);
    padding: 96px 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: start;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.pricing-card:hover {
    box-shadow: var(--card-shadow-md);
}

.pricing-card.featured {
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 0 0 4px var(--accent-glow), var(--card-shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.5;
}

.pricing-amount {
    margin-bottom: 6px;
}

.pricing-amount .price {
    font-family: var(--font-mono);
    font-size: 44px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1;
}

.pricing-amount .period {
    font-size: 16px;
    color: #64748b;
    font-weight: 400;
}

.pricing-sublabel {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 28px;
}

.pricing-divider {
    height: 1px;
    background: var(--card-border);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    padding: 5px 0;
    line-height: 1.5;
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
    cursor: pointer;
    border: none;
}

.pricing-cta.primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.pricing-cta.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.pricing-cta.secondary {
    background: #0f172a;
    color: var(--white);
}

.pricing-cta.secondary:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

/* ============================================================
   8. FINAL CTA
   ============================================================ */
.final-cta {
    background: var(--dark);
    padding: 96px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(37, 99, 235, 0.12), transparent);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1.2px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.final-cta p {
    font-size: 17px;
    color: var(--text-muted-dark);
    margin-bottom: 36px;
    line-height: 1.6;
}

