.funnel-page {
    background: linear-gradient(180deg, #f8f4ea 0, #fffdf8 45%)
}

.funnel-wrap {
    width: min(980px, calc(100% - 32px));
    margin: 36px auto 70px
}

.funnel-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px
}

.funnel-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow)
}

.funnel-main {
    padding: 34px
}

.funnel-summary {
    background: var(--green);
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px
}

.funnel-summary p {
    color: #d4e2dc;
    line-height: 1.55
}

.step-panel {
    display: none;
    animation: fade .2s ease
}

.step-panel.active {
    display: block
}

.step-panel h1 {
    font-size: 38px;
    margin: 10px 0
}

.step-panel .lead {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 24px
}

.step-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px
}

.step-actions .btn {
    flex: 1
}

.plan-controls {
    display: grid;
    gap: 22px
}

.switch-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px
}

.switch-row .choice {
    padding: 13px 16px;
    border-radius: 999px
}

.price-card {
    background: #fff8e4;
    color: var(--green);
    padding: 18px;
    border-radius: 18px
}

.price-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700
}

.service-list {
    padding-left: 18px;
    display: grid;
    gap: 8px
}

.investment-banner {
    background: var(--cream);
    border-radius: 16px;
    padding: 17px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.success-card {
    text-align: center;
    padding: 22px
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    background: var(--green);
    color: var(--gold2);
    font-size: 30px
}

@keyframes fade {
    from {
        opacity: .4;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

[hidden] {
    display: none !important
}

@media(min-width:821px) {
    .funnel-card.contact-stage {
        grid-template-columns: minmax(0, 1fr) 330px
    }
}

.builder-price {
    margin-bottom: 24px
}

.builder-price strong {
    font-size: 28px;
    color: var(--green)
}

.submit-status {
    color: #9b352b;
    line-height: 1.6
}

.submit-status:empty {
    display: none
}

.form-section {
    border: 0;
    padding: 0;
    margin: 0 0 22px
}

.form-section legend {
    font-weight: 700;
    margin-bottom: 12px
}

.readiness-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px
}

.readiness-grid .choice {
    padding: 14px
}

.profile-fields {
    margin-top: 12px
}

select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    background: #fff;
    color: var(--ink)
}

.btn:disabled {
    opacity: .65;
    cursor: wait
}

.submission-dialog {
    width: min(520px, calc(100% - 32px));
    max-height: 90vh;
    overflow: auto;
    box-sizing: border-box;
    border: 1px solid var(--gold2);
    border-radius: 28px;
    padding: 18px;
    background: var(--cream);
    color: var(--green);
    box-shadow: var(--shadow)
}

.submission-dialog::backdrop {
    background: rgba(10, 35, 25, .65);
    backdrop-filter: blur(4px)
}

.submission-dialog h2 {
    font-size: 32px;
    margin: 12px 0
}

.submission-dialog .lead {
    line-height: 1.7
}

.submission-dialog .btn {
    width: 100%;
    margin-top: 12px
}

.submission-dialog .success-card {
    padding: 16px
}

@media(prefers-reduced-motion:reduce) {
    .step-panel {
        animation: none
    }
}

.meal-preference-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 9px
}

.section-help {
    color: var(--muted);
    margin: -4px 0 12px;
    line-height: 1.5
}

.meal-preference-grid .choice {
    padding: 14px
}

@media(max-width:680px) {
    .meal-preference-grid {
        grid-template-columns: 1fr
    }
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    margin: 22px 0;
    font-size: 14px
}

.contact-consent input {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 2px;
    accent-color: var(--green)
}

.form-section+.form-section {
    border-top: 1px solid var(--line);
    padding-top: 22px
}

.form-field input, .form-field select {
    min-width: 0
}

.form-field label {
    line-height: 1.4
}

.dietary-details {
    margin-top: 16px
}

.dietary-details summary {
    cursor: pointer;
    color: var(--green);
    font-weight: 600;
    padding: 10px 0
}

.dietary-details .form-field {
    margin-top: 10px
}

.contact-grid > .choice-grid {
  grid-column: 1 / -1;
  min-width: 0;
  width: 100%;
}

@media (min-width: 681px) {
  .contact-grid > .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
This