.start-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark) 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.start-hero h1 {
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.start-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

.start-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.start-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 165, 116, 0.35);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.92rem;
}

.start-badge i {
    color: var(--primary-gold);
}

.start-highlight-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

.start-highlight-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.start-highlight-card ul {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.8;
}

.zero-banner {
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-gold));
    color: white;
    text-align: center;
    padding: 0.85rem 1rem;
    margin-top: 76px;
    font-weight: 600;
}

.zero-banner a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.intake-form-card {
    padding: 2rem;
}

.intake-check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.intake-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: white;
    border: 1px solid rgba(30, 58, 95, 0.12);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    margin: 0;
}

.intake-check-item input {
    margin-top: 0.2rem;
}

.intake-check-item span {
    line-height: 1.4;
}

.share-section {
    padding: 80px 0 100px;
    background: var(--light);
}

.share-panel {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.06);
}

.share-link-wrap {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-link-wrap .form-control {
    flex: 1 1 280px;
}

.share-copy-box {
    background: var(--light);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
}

.share-copy-box h3 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.share-copy-box p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.share-tip {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    color: #6c757d;
}

.share-tip code {
    color: var(--primary-navy);
}

@media (max-width: 992px) {
    .start-hero h1 {
        font-size: 2.4rem;
    }

    .zero-banner {
        margin-top: 70px;
        font-size: 0.92rem;
    }
}

@media (max-width: 768px) {
    .start-hero {
        padding: 130px 0 80px;
    }

    .start-hero h1 {
        font-size: 2rem;
    }

    .share-panel {
        padding: 1.5rem;
    }
}
