/**
 * TDB Forms — public membership form styles.
 * All styles scoped under .tdb-form-wrap so they don't bleed into the host theme.
 */

.tdb-form-wrap {
    --plum: #603F5D;
    --plum-deep: #3E2940;
    --plum-soft: #8A6685;
    --plum-mist: #F1E9EF;
    --plum-tint: #FAF6F9;
    --green: #1C7012;
    --green-deep: #14530D;
    --green-mist: #EAF3E5;
    --peach: #F4D5C3;
    --gold: #C9A961;
    --cream: #FBF8F3;
    --bone: #FDFCF8;
    --ink: #1A1614;
    --ink-soft: #4A4039;
    --ink-muted: #7A6E64;
    --ink-faint: #B8AC9F;
    --line: #ECE4D6;
    --line-soft: #F4EEE2;
    --white: #FFFFFF;
    --red: #B85450;
    --red-soft: #F4DCDB;

    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;

    /* Surround page styling */
    background: var(--cream);
    background-image:
        radial-gradient(ellipse 800px 500px at 10% 5%, rgba(96,63,93,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 700px 400px at 95% 30%, rgba(28,112,18,0.06) 0%, transparent 55%);
    padding: 0;
    position: relative;
    min-height: 600px;
}

.tdb-form-wrap *,
.tdb-form-wrap *::before,
.tdb-form-wrap *::after {
    box-sizing: border-box;
}

.tdb-form-wrap .tdb-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important; height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* STICKY PROGRESS */
.tdb-form-wrap .tdb-sticky-progress {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251,248,243,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(96,63,93,0.08);
}
.tdb-form-wrap .tdb-sticky-inner {
    max-width: 720px; margin: 0 auto;
    padding: 14px 24px;
    display: flex; align-items: center; gap: 16px;
}
.tdb-form-wrap .tdb-sp-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.tdb-form-wrap .tdb-sp-mark {
    width: 32px; height: 32px;
    background: var(--plum);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 14px;
    flex-shrink: 0;
}
.tdb-form-wrap .tdb-sp-mark-img {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
    padding: 2px;
    flex-shrink: 0;
}
.tdb-form-wrap .tdb-sp-brand-text {
    font-size: 12px; color: var(--ink-muted); line-height: 1.2;
}
.tdb-form-wrap .tdb-sp-brand-text strong {
    display: block; color: var(--ink); font-weight: 700;
    font-size: 13px; font-family: 'Poppins', sans-serif;
}
.tdb-form-wrap .tdb-sp-progress { flex: 1; }
.tdb-form-wrap .tdb-sp-bar {
    height: 4px;
    background: var(--line);
    border-radius: 4px;
    overflow: hidden;
}
.tdb-form-wrap .tdb-sp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--plum), var(--green));
    border-radius: 4px;
    width: 33%;
    transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.tdb-form-wrap .tdb-sp-meta {
    display: flex; justify-content: space-between;
    font-size: 11px; color: var(--ink-muted);
    font-weight: 500; margin-top: 5px;
}
.tdb-form-wrap .tdb-sp-meta strong { color: var(--plum); font-weight: 700; }

/* CONTAINER */
.tdb-form-wrap .tdb-form-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    position: relative;
}

/* HERO */
.tdb-form-wrap .tdb-hero { text-align: center; margin-bottom: 36px; }
.tdb-form-wrap .tdb-hero-logo {
    width: 92px; height: 92px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%), var(--plum);
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 24px -4px rgba(96,63,93,0.35), inset 0 -2px 8px rgba(0,0,0,0.15), 0 0 0 6px rgba(96,63,93,0.06);
}
.tdb-form-wrap .tdb-hero-logo span { display: block; text-align: center; line-height: 1; }
.tdb-form-wrap .tdb-hero-logo .t1 { font-size: 8.5px; letter-spacing: 0.08em; font-weight: 700; opacity: 0.95; margin-bottom: 2px; }
.tdb-form-wrap .tdb-hero-logo .t2 { font-size: 11px; letter-spacing: 0.04em; font-weight: 800; }
.tdb-form-wrap .tdb-hero-logo .t3 { font-size: 9px; letter-spacing: 0.06em; font-weight: 700; }
.tdb-form-wrap .tdb-hero-logo-img {
    width: 92px; height: 92px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
    padding: 6px;
    margin: 0 auto 22px;
    display: block;
    box-shadow: 0 8px 24px -4px rgba(96,63,93,0.18), 0 0 0 6px rgba(96,63,93,0.06);
}
.tdb-form-wrap .tdb-hero-tag {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--plum); font-weight: 700;
    margin-bottom: 12px;
}
.tdb-form-wrap .tdb-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px; line-height: 1.05;
    color: var(--ink); margin: 0 0 16px;
    font-weight: 600; letter-spacing: -0.02em;
}
.tdb-form-wrap .tdb-hero-title em { color: var(--plum); font-style: italic; font-weight: 500; }
.tdb-form-wrap .tdb-hero-sub {
    color: var(--ink-soft);
    font-size: 16.5px; line-height: 1.55;
    max-width: 540px; margin: 0 auto;
}
.tdb-form-wrap .tdb-hero-stats {
    display: flex; justify-content: center; gap: 28px;
    margin-top: 24px; flex-wrap: wrap;
}
.tdb-form-wrap .tdb-hero-stat {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--ink-muted);
}
.tdb-form-wrap .tdb-hero-stat strong {
    font-family: 'Poppins', sans-serif;
    color: var(--plum); font-weight: 700; font-size: 16px;
}

/* CONTEXT CARD */
.tdb-form-wrap .tdb-context-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px 26px;
    margin-bottom: 24px;
    box-shadow: 0 1px 2px rgba(26,22,20,0.03), 0 12px 30px -12px rgba(96,63,93,0.1);
}
.tdb-form-wrap .tdb-vision-block {
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--plum-tint), var(--bone));
    border-radius: 14px;
    border: 1px solid var(--plum-mist);
    margin-bottom: 18px;
}
.tdb-form-wrap .tdb-vision-label {
    font-size: 10.5px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--plum); font-weight: 700;
    margin-bottom: 6px;
}
.tdb-form-wrap .tdb-vision-text {
    font-family: 'Poppins', sans-serif;
    font-size: 17px; line-height: 1.4;
    color: var(--ink); font-weight: 500; font-style: italic;
    letter-spacing: -0.01em;
    margin: 0;
}
.tdb-form-wrap .tdb-eligibility {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--green-mist), #f3f9ee);
    border: 1px solid rgba(28,112,18,0.15);
    border-radius: 14px;
}
.tdb-form-wrap .tdb-eligibility-icon {
    width: 36px; height: 36px;
    background: var(--green); color: var(--white);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tdb-form-wrap .tdb-eligibility-text { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.tdb-form-wrap .tdb-eligibility-text strong {
    color: var(--ink); display: block; font-weight: 700;
    margin-bottom: 3px; font-family: 'Poppins', sans-serif;
}
.tdb-form-wrap .tdb-eligibility-text ul {
    list-style: none; padding: 0; margin: 4px 0 0;
    display: flex; flex-direction: column; gap: 2px;
}
.tdb-form-wrap .tdb-eligibility-text li { padding-left: 14px; position: relative; }
.tdb-form-wrap .tdb-eligibility-text li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 5px; height: 5px;
    background: var(--green); border-radius: 50%;
}

/* STEP CARD */
.tdb-form-wrap .tdb-step-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px 36px 28px;
    box-shadow: 0 1px 2px rgba(26,22,20,0.03), 0 16px 40px -16px rgba(96,63,93,0.12);
    position: relative;
    margin-bottom: 36px;
}
.tdb-form-wrap .tdb-step-card[hidden] { display: none !important; }
.tdb-form-wrap .tdb-step-num {
    position: absolute;
    top: -16px; left: 36px;
    background: var(--plum);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 12px -2px rgba(96,63,93,0.35);
}
.tdb-form-wrap .tdb-step-num span { color: var(--peach); }
.tdb-form-wrap .tdb-step-head { margin-bottom: 30px; }
.tdb-form-wrap .tdb-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px; line-height: 1.1;
    color: var(--ink); font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
}
.tdb-form-wrap .tdb-step-title em { color: var(--plum); font-style: italic; font-weight: 500; }
.tdb-form-wrap .tdb-step-desc { color: var(--ink-muted); font-size: 14px; line-height: 1.5; }

/* FIELDS */
.tdb-form-wrap .tdb-field-block { margin-bottom: 22px; }
.tdb-form-wrap .tdb-field-row { display: grid; gap: 14px; margin-bottom: 22px; }
.tdb-form-wrap .tdb-cols-2 { grid-template-columns: 1fr 1fr; }
.tdb-form-wrap .tdb-cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.tdb-form-wrap .tdb-field-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px; letter-spacing: 0.04em;
    color: var(--ink); font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.tdb-form-wrap .tdb-opt {
    color: var(--ink-muted); font-weight: 500;
    text-transform: none; letter-spacing: 0; margin-left: 4px;
}
.tdb-form-wrap .tdb-req { color: var(--green); }

.tdb-form-wrap .tdb-input,
.tdb-form-wrap .tdb-select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bone);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: all 0.15s;
    font-weight: 500;
}
.tdb-form-wrap .tdb-input::placeholder { color: var(--ink-faint); font-weight: 400; }
.tdb-form-wrap .tdb-input:hover,
.tdb-form-wrap .tdb-select:hover { border-color: var(--plum-soft); }
.tdb-form-wrap .tdb-input:focus,
.tdb-form-wrap .tdb-select:focus {
    background: var(--white);
    border-color: var(--plum);
    box-shadow: 0 0 0 4px rgba(96,63,93,0.08);
}
.tdb-form-wrap .tdb-input.error,
.tdb-form-wrap .tdb-select.error {
    border-color: var(--red);
    background: var(--red-soft);
}
.tdb-form-wrap .tdb-select {
    appearance: none; -webkit-appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23603F5D' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

/* PILL */
.tdb-form-wrap .tdb-pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.tdb-form-wrap .tdb-pill {
    padding: 11px 18px;
    background: var(--bone);
    border: 1.5px solid var(--line);
    border-radius: 100px;
    font-family: inherit;
    font-size: 13.5px; font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}
.tdb-form-wrap .tdb-pill:hover { border-color: var(--plum-soft); transform: translateY(-1px); }
.tdb-form-wrap .tdb-pill.selected {
    background: var(--plum); color: var(--white); border-color: var(--plum);
    box-shadow: 0 4px 12px -2px rgba(96,63,93,0.35);
}

/* CHOICE */
.tdb-form-wrap .tdb-choice-grid { display: grid; gap: 10px; }
.tdb-form-wrap .tdb-choice-grid.tdb-cols-2 { grid-template-columns: 1fr 1fr; }
.tdb-form-wrap .tdb-choice-grid.tdb-cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.tdb-form-wrap .tdb-choice {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: var(--bone);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
    font-size: 14px; font-weight: 500;
    color: var(--ink-soft);
}
.tdb-form-wrap .tdb-choice:hover { border-color: var(--plum-soft); background: var(--white); }
.tdb-form-wrap .tdb-choice.selected {
    background: linear-gradient(135deg, var(--plum-tint), var(--bone));
    border-color: var(--plum); color: var(--ink); font-weight: 600;
}
.tdb-form-wrap .tdb-check-box {
    width: 20px; height: 20px;
    border: 2px solid var(--line); border-radius: 6px;
    flex-shrink: 0; background: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.tdb-form-wrap .tdb-choice.selected .tdb-check-box {
    background: var(--plum); border-color: var(--plum);
}
.tdb-form-wrap .tdb-choice.selected .tdb-check-box::after {
    content: '';
    width: 9px; height: 5px;
    border-left: 2px solid white; border-bottom: 2px solid white;
    transform: rotate(-45deg) translateY(-2px);
}
.tdb-form-wrap .tdb-radio-circle {
    width: 20px; height: 20px;
    border: 2px solid var(--line); border-radius: 50%;
    flex-shrink: 0; background: var(--white);
    position: relative; transition: all 0.15s;
}
.tdb-form-wrap .tdb-choice.tdb-radio-style.selected .tdb-radio-circle { border-color: var(--plum); }
.tdb-form-wrap .tdb-choice.tdb-radio-style.selected .tdb-radio-circle::after {
    content: ''; position: absolute; inset: 3px;
    background: var(--plum); border-radius: 50%;
}

/* YES NO */
.tdb-form-wrap .tdb-yes-no { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tdb-form-wrap .tdb-yn-card {
    padding: 22px;
    background: var(--bone);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    cursor: pointer; text-align: center;
    transition: all 0.15s;
}
.tdb-form-wrap .tdb-yn-card:hover { border-color: var(--plum-soft); background: var(--white); }
.tdb-form-wrap .tdb-yn-emoji { font-size: 26px; margin-bottom: 6px; }
.tdb-form-wrap .tdb-yn-card strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 17px; font-weight: 700;
    color: var(--ink); margin-bottom: 3px;
}
.tdb-form-wrap .tdb-yn-card span { font-size: 12px; color: var(--ink-muted); }
.tdb-form-wrap .tdb-yn-card.selected {
    background: linear-gradient(135deg, var(--plum), var(--plum-deep));
    border-color: var(--plum); color: var(--white);
    box-shadow: 0 6px 18px -4px rgba(96,63,93,0.35);
}
.tdb-form-wrap .tdb-yn-card.selected strong,
.tdb-form-wrap .tdb-yn-card.selected span { color: var(--white); }
.tdb-form-wrap .tdb-yn-card.selected span { opacity: 0.7; }

/* STEP NAV */
.tdb-form-wrap .tdb-step-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid var(--line-soft);
    gap: 12px;
}
.tdb-form-wrap .tdb-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px;
    border-radius: 100px;
    border: none;
    font-family: inherit;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
}
.tdb-form-wrap .tdb-btn-primary {
    background: var(--plum); color: var(--white);
    box-shadow: 0 4px 12px -2px rgba(96,63,93,0.35), 0 8px 32px -8px rgba(96,63,93,0.25);
}
.tdb-form-wrap .tdb-btn-primary:hover { background: var(--plum-deep); transform: translateY(-1px); }
.tdb-form-wrap .tdb-btn-submit {
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: var(--white);
    box-shadow: 0 4px 12px -2px rgba(28,112,18,0.4), 0 8px 32px -8px rgba(28,112,18,0.25);
}
.tdb-form-wrap .tdb-btn-submit:hover { transform: translateY(-1px); }
.tdb-form-wrap .tdb-btn-submit:disabled,
.tdb-form-wrap .tdb-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.tdb-form-wrap .tdb-btn-ghost { background: transparent; color: var(--ink-soft); padding: 14px 8px; }
.tdb-form-wrap .tdb-btn-ghost:hover { color: var(--plum); }
.tdb-form-wrap .tdb-btn-spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: tdb-spin 0.7s linear infinite;
}
@keyframes tdb-spin { to { transform: rotate(360deg); } }

/* SUCCESS */
.tdb-form-wrap .tdb-success-card {
    background: linear-gradient(135deg, var(--green-mist), #f3f9ee);
    border: 1px solid rgba(28,112,18,0.2);
    border-radius: 24px;
    padding: 56px 36px;
    text-align: center;
    box-shadow: 0 16px 40px -16px rgba(28,112,18,0.2);
}
.tdb-form-wrap .tdb-success-icon {
    width: 88px; height: 88px;
    background: var(--green); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 24px -6px rgba(28,112,18,0.4);
    animation: tdb-pop 0.4s ease;
}
@keyframes tdb-pop {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.tdb-form-wrap .tdb-success-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px; font-weight: 600;
    color: var(--ink); letter-spacing: -0.02em;
    margin: 0 0 12px;
}
.tdb-form-wrap .tdb-success-desc {
    color: var(--ink-soft);
    font-size: 16px; line-height: 1.6;
    max-width: 480px; margin: 0 auto 28px;
}

/* ERROR BANNER */
.tdb-form-wrap .tdb-error-banner {
    background: var(--red-soft);
    border: 1px solid rgba(184,84,80,0.3);
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 24px;
    color: #6b2a28;
    font-size: 13.5px;
}
.tdb-form-wrap .tdb-error-banner strong { display: block; margin-bottom: 2px; font-family: 'Poppins', sans-serif; }

/* FOOTER */
.tdb-form-wrap .tdb-form-foot {
    text-align: center;
    margin-top: 30px;
    font-size: 12.5px; color: var(--ink-muted);
}
.tdb-form-wrap .tdb-form-foot-pills {
    display: flex; justify-content: center; gap: 8px;
    flex-wrap: wrap; margin-top: 14px;
}
.tdb-form-wrap .tdb-foot-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96,63,93,0.1);
    border-radius: 100px;
    font-size: 11.5px; color: var(--ink-soft); font-weight: 500;
}
.tdb-form-wrap .tdb-contact-note {
    margin-top: 18px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    font-size: 13px;
    color: var(--ink-soft); line-height: 1.55;
}
.tdb-form-wrap .tdb-contact-note strong {
    display: block; color: var(--ink);
    margin-bottom: 4px; font-family: 'Poppins', sans-serif;
}
.tdb-form-wrap .tdb-contact-note a { color: var(--plum); font-weight: 600; text-decoration: none; }
.tdb-form-wrap .tdb-contact-note a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 720px) {
    .tdb-form-wrap .tdb-form-container { padding: 28px 16px 100px; }
    .tdb-form-wrap .tdb-hero-logo { width: 76px; height: 76px; }
    .tdb-form-wrap .tdb-hero-logo-img { width: 76px; height: 76px; }
    .tdb-form-wrap .tdb-hero-logo .t2 { font-size: 10px; }
    .tdb-form-wrap .tdb-hero-logo .t1,
    .tdb-form-wrap .tdb-hero-logo .t3 { font-size: 7.5px; }
    .tdb-form-wrap .tdb-hero-title { font-size: 36px; }
    .tdb-form-wrap .tdb-hero-sub { font-size: 15px; }
    .tdb-form-wrap .tdb-hero-stats { gap: 16px; }
    .tdb-form-wrap .tdb-context-card { padding: 20px; border-radius: 18px; }
    .tdb-form-wrap .tdb-step-card { padding: 30px 22px 22px; border-radius: 20px; }
    .tdb-form-wrap .tdb-step-num { left: 22px; }
    .tdb-form-wrap .tdb-step-title { font-size: 24px; }
    .tdb-form-wrap .tdb-field-row.tdb-cols-3,
    .tdb-form-wrap .tdb-field-row.tdb-cols-2 { grid-template-columns: 1fr; }
    .tdb-form-wrap .tdb-choice-grid.tdb-cols-2,
    .tdb-form-wrap .tdb-choice-grid.tdb-cols-3 { grid-template-columns: 1fr; }
    .tdb-form-wrap .tdb-sticky-inner { padding: 12px 16px; gap: 10px; }
    .tdb-form-wrap .tdb-sp-brand-text { display: none; }
    .tdb-form-wrap .tdb-step-nav { gap: 8px; flex-wrap: wrap; }
    .tdb-form-wrap .tdb-step-nav .tdb-btn-primary,
    .tdb-form-wrap .tdb-step-nav .tdb-btn-submit { flex: 1; justify-content: center; }
    .tdb-form-wrap .tdb-success-card { padding: 40px 24px; }
    .tdb-form-wrap .tdb-success-title { font-size: 28px; }
}

@media (max-width: 480px) {
    .tdb-form-wrap .tdb-yes-no { grid-template-columns: 1fr; }
    .tdb-form-wrap .tdb-hero-title { font-size: 32px; }
}
