.sponsored-bar {
    width: 100%;
    padding: 10px 18px;
    background: var(--sponsored-bg);
    color: var(--sponsored-text);
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    text-align: center;
}

.btn-primary {
    width: 100%;
    background: var(--mint);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--mint-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--mint);
    border: 2px solid var(--mint);
}

.btn-secondary:hover {
    background: rgba(46, 196, 182, 0.12);
}

.btn-outline-plum {
    background: transparent;
    color: var(--plum);
    border: 2px solid var(--plum);
}

.btn-outline-plum:hover {
    background: rgba(107, 78, 155, 0.08);
}

.chip-link {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: border-color 0.2s, color 0.2s;
}

.chip-link:hover {
    border-color: var(--plum);
    color: var(--plum);
}

.stat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    background: rgba(244, 239, 230, 0.12);
    border: 1px solid rgba(244, 239, 230, 0.25);
    color: var(--text-on-dark);
    font-size: 0.8125rem;
    font-weight: 500;
}

.trust-chips {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 20px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 375px) {
    .trust-chips {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.trust-chip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1.5px solid var(--border);
    font-size: 0.8125rem;
    font-weight: 500;
    scroll-snap-align: start;
    white-space: nowrap;
}

.trust-chip img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mint);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
}

.topic-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 8px;
}

.timeline {
    position: relative;
    padding-left: 48px;
    display: grid;
    gap: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
}

.timeline-step {
    position: relative;
}

.timeline-number {
    position: absolute;
    left: -48px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--coral);
    color: var(--coral);
    font-weight: 700;
    font-size: 0.875rem;
}

.timeline-step h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.faq-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.faq-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 24px;
}

.faq-card h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.survey-section {
    background: var(--ink);
    color: var(--text-on-dark);
}

.survey-form-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--surface);
    color: var(--text-primary);
    border-radius: var(--radius-form);
    border: 2px solid var(--border);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .survey-form-card {
        padding: 40px;
    }
}

.survey-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mint);
}

.survey-form-card h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.form-chip {
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--cream-bg);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .form-row--horizontal {
        display: grid;
        grid-template-columns: 140px 1fr;
        align-items: center;
        gap: 16px;
    }

    .form-row--horizontal label {
        margin-bottom: 0;
    }
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-field);
    border: 1.5px solid var(--border);
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 2px rgba(107, 78, 155, 0.2);
    outline: none;
}

.form-row textarea {
    min-height: 120px;
    resize: vertical;
}

.survey-question.field-error {
    border-color: var(--coral);
}

.survey-question {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: var(--cream-bg);
}

.survey-question legend {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.radio-options {
    display: grid;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1.5px solid transparent;
    background: var(--surface);
    cursor: pointer;
    transition: border-color 0.2s;
}

.radio-option:hover {
    border-color: var(--border);
}

.radio-option input[type="radio"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--plum);
}

.radio-option span {
    font-size: 0.875rem;
    line-height: 1.5;
}

.radio-option input:checked + span {
    font-weight: 500;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.privacy-checkbox input {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--plum);
}

.privacy-checkbox a {
    color: var(--plum);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.form-error {
    color: var(--coral);
    font-size: 0.8125rem;
    margin-top: 6px;
}

.form-error-global {
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(224, 122, 95, 0.12);
    border: 1px solid var(--coral);
    color: var(--coral);
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.field-error {
    border-color: var(--coral);
}

.contact-bento {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .contact-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-bento {
        grid-template-columns: repeat(3, 1fr);
    }
}

.topics-grid .bento-card {
    grid-column: span 1;
}

@media (min-width: 640px) {
    .topics-grid .bento-card {
        grid-column: span 1;
    }
}

@media (min-width: 1024px) {
    .topics-grid .bento-card {
        grid-column: span 6;
    }
}

.contact-bento .bento-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-bento a {
    color: var(--plum);
    font-weight: 600;
    font-size: 1rem;
    word-break: break-word;
}

.contact-bento a:hover {
    text-decoration: underline;
}

.why-dark-panel {
    background: var(--ink);
    color: var(--text-on-dark);
    border-radius: var(--radius-bento);
    padding: 32px 24px;
    border: none;
}

.why-dark-panel .section-title {
    color: var(--text-on-dark);
}

.why-nested-grid {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

@media (min-width: 640px) {
    .why-nested-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-nested-card {
    background: var(--surface);
    color: var(--text-primary);
    border-radius: 20px;
    padding: 24px;
    border: 1.5px solid var(--border);
}

.why-nested-card img {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

.why-nested-card h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.section-cream {
    background: var(--cream-bg);
}

.section-surface {
    background: var(--surface);
}

.hero-cta-wrap {
    margin-top: 28px;
}

.section-heading-spaced {
    margin-top: 48px;
}

.topics-grid {
    margin-top: 24px;
}

.why-intro {
    color: rgba(244, 239, 230, 0.85);
    max-width: 640px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.contact-followup {
    margin-top: 32px;
}
