:root{
    --bg:#0f0617;
    --bg-2:#241033;
    --panel:rgba(22,10,34,.76);
    --panel-strong:rgba(20,8,30,.94);
    --panel-border:rgba(255,255,255,.08);
    --text:#f8f6fb;
    --muted:rgba(248,246,251,.74);
    --muted-soft:rgba(248,246,251,.58);
    --primary:#ff6432;
    --primary-strong:#ff8748;
    --primary-dark:#2b1009;
    --input:rgba(255,255,255,.05);
    --input-hover:rgba(255,255,255,.07);
    --input-border:rgba(255,255,255,.12);
    --shadow:0 32px 90px rgba(0,0,0,.36);
    --radius:30px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{-webkit-text-size-adjust:100%}
body{
    margin:0;
    color:var(--text);
    font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background:
        radial-gradient(circle at 14% 28%, rgba(161,35,255,.18), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(255,65,120,.18), transparent 28%),
        radial-gradient(circle at 52% 100%, rgba(255,106,55,.12), transparent 38%),
        linear-gradient(180deg, #12071b 0%, #0f0617 44%, #160922 100%);
    overflow:hidden;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.015) 0%, transparent 28%, rgba(255,255,255,.015) 58%, transparent 100%),
        radial-gradient(circle at center, rgba(161,35,255,.06), transparent 44%);
    opacity:.75;
}

.progress-floating{
    position:fixed;
    top:22px;
    right:24px;
    z-index:5;
    width:176px;
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:14px 14px 12px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:22px;
    background:rgba(23,8,35,.68);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.progress-label{
    font-size:11px;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(244,247,251,.62);
}

.progress-track{
    height:5px;
    width:100%;
    border-radius:999px;
    background:rgba(255,255,255,.09);
    overflow:hidden;
}

.progress-fill{
    height:100%;
    width:0;
    border-radius:999px;
    background:linear-gradient(90deg, var(--primary), var(--primary-strong));
    box-shadow:0 0 28px rgba(255,106,55,.32);
    transition:width .42s ease;
}

.progress-meta{
    display:flex;
    justify-content:flex-end;
    gap:2px;
    font-size:11px;
    color:rgba(244,247,251,.76);
    letter-spacing:.08em;
}

.stage{
    min-height:100dvh;
    display:grid;
    place-items:center;
    padding:28px;
    position:relative;
    overflow:hidden;
}

.ambient{
    position:absolute;
    pointer-events:none;
    filter:blur(4px);
}

.ambient-left{
    top:8%;
    left:-8%;
    width:360px;
    height:360px;
    background:radial-gradient(circle, rgba(161,35,255,.20) 0%, rgba(161,35,255,0) 72%);
}

.ambient-right{
    right:-10%;
    bottom:4%;
    width:420px;
    height:420px;
    background:radial-gradient(circle, rgba(255,63,131,.16) 0%, rgba(255,63,131,0) 72%);
}

.ambient-center{
    inset:auto;
    width:720px;
    height:720px;
    border-radius:999px;
    background:radial-gradient(circle, rgba(255,106,55,.08) 0%, transparent 68%);
    opacity:.8;
}

.form-shell{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.form-panel{
    position:relative;
    width:min(100%, 840px);
    min-height:min(620px, calc(100vh - 56px));
    max-height:calc(100vh - 56px);
    border-radius:var(--radius);
    border:1px solid var(--panel-border);
    background:linear-gradient(180deg, rgba(26,10,39,.86) 0%, rgba(18,8,28,.96) 100%);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    box-shadow:var(--shadow);
    overflow:hidden;
}

.form-panel::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 18% 12%, rgba(161,35,255,.10), transparent 22%),
        linear-gradient(90deg, transparent 0%, rgba(255,255,255,.025) 52%, transparent 100%);
}

.form-alert{
    position:absolute;
    top:18px;
    left:18px;
    right:18px;
    z-index:4;
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(255,122,122,.22);
    background:rgba(72,18,18,.86);
    color:#ffd8d8;
    font-size:14px;
    line-height:1.5;
}

.hp-wrap{
    position:absolute;
    left:-9999px;
    opacity:0;
    pointer-events:none;
}

.step{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    text-align:center;
    padding:58px 58px 46px;
    overflow-y:auto;
    -ms-overflow-style:none;
    scrollbar-width:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(16px);
    transition:opacity .32s ease, transform .32s ease, visibility .32s ease;
}

.step.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.step[data-kind="welcome"]{justify-content:center}

.step::-webkit-scrollbar{width:0;height:0;display:none}

.logo-center-full,
.logo-inline{
    display:flex;
    justify-content:center;
}

.logo-center-full{margin-bottom:28px}
.logo-inline{margin-bottom:22px}

.logo-main{
    width:340px;
    max-width:78%;
    object-fit:contain;
}

.logo-small{
    width:210px;
    max-width:64%;
    object-fit:contain;
}

.eyebrow,
.step-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:8px 14px;
    border-radius:999px;
    border:1px solid rgba(255,106,55,.18);
    background:rgba(255,106,55,.10);
    color:#ffe2d2;
    font-size:11px;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.hero-title,
.question-title{
    margin:18px 0 0;
    font-weight:800;
    letter-spacing:-.04em;
    text-wrap:balance;
}

.hero-title{
    max-width:640px;
    font-size:56px;
    line-height:1.02;
}

.question-title{
    max-width:620px;
    font-size:40px;
    line-height:1.08;
}

.question-title-submit{max-width:560px}

.hero-description,
.question-description{
    margin:16px auto 0;
    max-width:560px;
    font-size:16px;
    line-height:1.85;
    color:var(--muted);
    text-wrap:pretty;
}

.hero-description-submit{max-width:520px}

.hero-actions{margin-top:32px}

.mini-note,
.field-hint{
    margin-top:14px;
    font-size:13px;
    line-height:1.6;
    color:var(--muted-soft);
}

.question-wrap{
    width:100%;
    max-width:680px;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding-bottom:10px;
}

.fields-grid{
    width:100%;
    margin-top:26px;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
}

.field-item{text-align:left}
.field-span-full{grid-column:1 / -1}
.field-span-half{grid-column:span 1}

.field-label{
    display:block;
    margin-bottom:10px;
    color:var(--text);
    font-size:14px;
    font-weight:600;
}

.field{
    width:100%;
    min-height:58px;
    border:1px solid var(--input-border);
    border-radius:18px;
    background:var(--input);
    color:var(--text);
    padding:16px 18px;
    font-size:15px;
    outline:none;
    transition:border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .22s ease;
    font-family:inherit;
    -webkit-appearance:none;
    appearance:none;
}

.field:hover{background:var(--input-hover)}

.field::placeholder{color:rgba(244,247,251,.34)}

.field:-webkit-autofill,
.field:-webkit-autofill:hover,
.field:-webkit-autofill:focus{
    -webkit-text-fill-color:var(--text);
    box-shadow:0 0 0 1000px rgba(28,10,43,.96) inset, 0 0 0 4px rgba(255,106,55,.10);
    border:1px solid rgba(255,106,55,.28);
    transition:background-color 9999s ease-in-out 0s;
}

.field:focus{
    border-color:rgba(255,106,55,.72);
    background:rgba(255,255,255,.055);
    box-shadow:0 0 0 4px rgba(255,106,55,.12);
}

.field[type="number"]::-webkit-outer-spin-button,
.field[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0;
}
.field[type="number"]{appearance:textfield;-moz-appearance:textfield}

.field-textarea{
    min-height:150px;
    resize:vertical;
    line-height:1.6;
}

.field-select{
    cursor:pointer;
}

.submit-summary{
    width:100%;
    max-width:560px;
    margin-top:28px;
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:12px;
}

.summary-card{
    padding:16px 14px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.035);
    color:var(--text);
    font-size:13px;
    line-height:1.55;
}

.actions{
    width:100%;
    max-width:560px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-top:28px;
}

.btn{
    appearance:none;
    border:none;
    cursor:pointer;
    min-height:52px;
    padding:14px 24px;
    border-radius:999px;
    font-family:inherit;
    font-size:14px;
    font-weight:800;
    letter-spacing:-.01em;
    transition:transform .18s ease, opacity .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}

.btn-primary{
    min-width:184px;
    color:#2b1009;
    background:linear-gradient(180deg, var(--primary-strong), var(--primary));
    box-shadow:0 16px 40px rgba(255,106,55,.24);
}

.btn-secondary{
    color:var(--text);
    background:transparent;
    border:1px solid rgba(255,255,255,.12);
}

.is-invalid{
    border-color:#ff7c7c !important;
    box-shadow:0 0 0 4px rgba(255,124,124,.10) !important;
}



.schedule-wrap{max-width:720px}
.cta-card{
    width:100%;
    margin-top:28px;
    padding:26px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.035);
    box-shadow:0 18px 54px rgba(0,0,0,.20);
}
.cta-copy{
    margin:0 auto 22px;
    max-width:520px;
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
}
.cta-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    width:100%;
    max-width:420px;
    margin:0 auto;
}
.btn-cta{width:100%}
.cta-small{
    margin:18px 0 0;
    color:var(--muted-soft);
    font-size:13px;
    line-height:1.6;
}
.cta-status{
    min-height:20px;
    margin:14px 0 0;
    color:#ffe2d2;
    font-size:13px;
    font-weight:700;
    line-height:1.5;
}

@media (max-width: 1024px){
    .hero-title{font-size:48px}
    .question-title{font-size:34px}
    .form-panel{min-height:600px}
}

@media (max-width: 767px){
    body{overflow:auto}

    .progress-floating{
        top:14px;
        right:14px;
        width:124px;
        padding:10px 10px 9px;
        gap:6px;
        border-radius:16px;
    }

    .progress-label{display:none}

    .stage{
        padding:16px;
        align-items:stretch;
    }

    .form-shell{align-items:stretch}

    .form-panel{
        width:100%;
        min-height:calc(100dvh - 32px);
        max-height:none;
        border-radius:24px;
    }

    .step{
        padding:44px 20px 32px;
        justify-content:center;
    }

    .form-alert{
        top:14px;
        left:14px;
        right:14px;
        font-size:13px;
    }

    .logo-main{width:180px}
    .logo-small{width:118px}

    .hero-title{
        font-size:34px;
        line-height:1.04;
        max-width:320px;
    }

    .question-title{
        font-size:28px;
        line-height:1.08;
        max-width:320px;
    }

    .hero-description,
    .question-description{
        max-width:320px;
        font-size:14px;
        line-height:1.75;
    }

    .fields-grid,
    .submit-summary{
        grid-template-columns:1fr;
    }

    .field-span-half,
    .field-span-full{grid-column:1 / -1}

    .field{
        min-height:54px;
        border-radius:16px;
        padding:15px 16px;
        font-size:16px;
    }

    .summary-card{
        padding:14px;
        border-radius:16px;
    }

    .schedule-wrap{max-width:100%}
    .cta-card{padding:20px}
    .cta-actions{max-width:100%}

    .actions{
        flex-direction:column;
        margin-top:24px;
    }

    .btn{width:100%}

    .ambient{display:none}
}

.social-links{
    margin:22px auto 0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
}

.social-link{
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.045);
    color:var(--text);
    text-decoration:none;
    transition:transform .22s ease, border-color .22s ease, background .22s ease, opacity .22s ease;
}

.social-link svg{
    width:20px;
    height:20px;
    fill:currentColor;
}

.social-link:hover{
    transform:translateY(-2px);
    border-color:rgba(255,106,55,.55);
    background:rgba(255,106,55,.12);
}

.social-link.is-disabled{
    opacity:.62;
}

.social-note{
    margin:12px auto 0;
    max-width:430px;
    color:var(--muted-soft);
    font-size:12px;
    line-height:1.5;
}


.cta-microcopy {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.social-links {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.cta-status {
  min-height: 22px;
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}



/* ===== CLISP final review overrides ===== */
.form-panel {
  overflow: hidden;
}

.step[data-kind="schedule"] {
  justify-content: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.schedule-wrap {
  max-width: 640px;
}

.schedule-wrap .logo-small {
  width: 154px;
  max-width: 46%;
}

.schedule-wrap .question-title {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.02;
  margin-top: 18px;
}

.schedule-wrap .question-description {
  max-width: 540px;
  margin-top: 14px;
}

.cta-card {
  margin-top: 24px;
  padding: 28px;
  border-radius: 28px;
}

.cta-copy {
  margin: 0 auto 20px;
  max-width: 520px;
  color: rgba(248,246,251,.78);
  font-size: 15px;
  line-height: 1.65;
}

.cta-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(100%, 430px);
  margin: 0 auto;
}

.btn-cta {
  width: 100%;
  min-height: 54px;
  white-space: normal;
  text-align: center;
}

.cta-microcopy {
  margin: 18px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(248,246,251,.62);
}

.social-links {
  margin: 22px auto 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.social-link {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  color: rgba(248,246,251,.88) !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  text-decoration: none !important;
  flex: 0 0 44px !important;
}

.social-link svg {
  width: 19px !important;
  height: 19px !important;
  max-width: 19px !important;
  max-height: 19px !important;
  display: block !important;
  fill: currentColor !important;
  flex: 0 0 19px !important;
}

.social-link:hover {
  transform: translateY(-2px);
  color: #fff !important;
  background: rgba(255,106,55,.13) !important;
  border-color: rgba(255,106,55,.42) !important;
}

.social-note {
  display: none !important;
}

.cta-status {
  min-height: 20px;
  margin: 14px 0 0;
  text-align: center;
  color: #ffe2d2;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .cta-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .step[data-kind="schedule"] {
    justify-content: flex-start;
    padding-top: 40px;
  }

  .schedule-wrap .logo-small {
    width: 124px;
    max-width: 52%;
  }

  .schedule-wrap .question-title {
    font-size: 30px;
  }

  .schedule-wrap .question-description,
  .cta-copy {
    font-size: 14px;
  }

  .cta-card {
    margin-top: 20px;
    padding: 20px;
    border-radius: 22px;
  }

  .btn-cta {
    min-height: 52px;
  }

  .social-link {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    flex-basis: 42px !important;
  }

  .social-link svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex-basis: 18px !important;
  }
}



/* ===== CLISP no-scroll wizard fit ===== */
html,
body {
  width: 100%;
  min-height: 100%;
  overflow: hidden !important;
}

.stage {
  height: 100dvh;
  min-height: 100dvh;
  padding: clamp(12px, 2.2vh, 24px);
  overflow: hidden !important;
}

.form-shell {
  height: 100%;
  align-items: center;
}

.form-panel {
  width: min(100%, 840px);
  height: min(720px, calc(100dvh - clamp(24px, 4.4vh, 48px)));
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
  display: block;
}

.step {
  height: 100%;
  overflow: hidden !important;
  padding: clamp(22px, 4vh, 42px) clamp(34px, 5vw, 58px) clamp(20px, 3.4vh, 38px) !important;
  justify-content: center !important;
}

.question-wrap {
  height: 100%;
  max-height: 100%;
  justify-content: center;
  gap: 0;
  padding-bottom: 0;
}

.logo-center-full {
  margin-bottom: clamp(14px, 2.2vh, 22px);
}

.logo-inline {
  margin-bottom: clamp(10px, 1.8vh, 16px);
}

.logo-main {
  width: clamp(190px, 32vw, 300px);
}

.logo-small {
  width: clamp(130px, 21vw, 175px);
}

.eyebrow,
.step-badge {
  min-height: 30px;
  padding: 7px 13px;
  font-size: 10px;
}

.hero-title {
  max-width: 680px;
  margin-top: clamp(12px, 2vh, 18px);
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.02;
}

.question-title {
  max-width: 620px;
  margin-top: clamp(10px, 1.8vh, 16px);
  font-size: clamp(30px, 3.3vw, 38px);
  line-height: 1.05;
}

.hero-description,
.question-description {
  max-width: 560px;
  margin-top: clamp(8px, 1.4vh, 14px);
  font-size: clamp(13px, 1.25vw, 15px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: clamp(18px, 3vh, 28px);
}

.mini-note,
.field-hint {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.35;
}

.fields-grid {
  margin-top: clamp(16px, 2.5vh, 24px);
  gap: clamp(10px, 1.6vh, 14px);
}

.field-label {
  margin-bottom: 7px;
  font-size: 13px;
}

.field {
  min-height: 50px;
  border-radius: 16px;
  padding: 13px 16px;
  font-size: 14px;
}

.field-textarea {
  min-height: 128px;
  max-height: 150px;
  resize: none;
}

.actions {
  margin-top: clamp(18px, 3vh, 26px);
}

.btn {
  min-height: 50px;
  padding: 13px 24px;
}

.schedule-wrap {
  max-width: 640px;
}

.step[data-kind="schedule"] {
  padding-top: clamp(22px, 3.6vh, 36px) !important;
  padding-bottom: clamp(18px, 3vh, 30px) !important;
}

.schedule-wrap .logo-small {
  width: clamp(112px, 18vw, 150px);
}

.schedule-wrap .question-title {
  font-size: clamp(31px, 3.7vw, 42px);
}

.cta-card {
  margin-top: clamp(16px, 2.5vh, 22px);
  padding: clamp(20px, 3vh, 26px);
  border-radius: 24px;
}

.cta-copy {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.cta-actions {
  gap: 10px;
  width: min(100%, 420px);
}

.btn-cta {
  min-height: 50px;
}

.cta-microcopy {
  margin-top: 14px;
  font-size: 12px;
}

.social-links {
  margin-top: 16px !important;
}

.social-link {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  flex-basis: 40px !important;
}

.social-link svg {
  width: 17px !important;
  height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
  flex-basis: 17px !important;
}

.cta-status {
  margin-top: 10px;
}

@media (max-height: 760px) {
  .progress-floating {
    transform: scale(.86);
    transform-origin: top right;
  }

  .form-panel {
    height: calc(100dvh - 24px);
  }

  .step {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .logo-main {
    width: clamp(170px, 26vw, 250px);
  }

  .logo-small,
  .schedule-wrap .logo-small {
    width: clamp(102px, 16vw, 135px);
  }

  .hero-title {
    font-size: clamp(30px, 4vw, 42px);
  }

  .question-title,
  .schedule-wrap .question-title {
    font-size: clamp(27px, 3.2vw, 34px);
  }

  .hero-description,
  .question-description {
    font-size: 13px;
    line-height: 1.42;
  }

  .fields-grid {
    margin-top: 14px;
    gap: 10px;
  }

  .field {
    min-height: 46px;
    padding: 11px 14px;
  }

  .field-textarea {
    min-height: 104px;
    max-height: 116px;
  }

  .actions {
    margin-top: 16px;
  }

  .cta-card {
    margin-top: 14px;
    padding: 18px;
  }

  .btn,
  .btn-cta {
    min-height: 46px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

@media (max-width: 767px) {
  body {
    overflow: hidden !important;
  }

  .progress-floating {
    display: none;
  }

  .stage {
    padding: 10px;
  }

  .form-panel {
    width: 100%;
    height: calc(100dvh - 20px);
    border-radius: 22px;
  }

  .step {
    padding: 22px 16px 18px !important;
  }

  .question-wrap {
    max-width: 100%;
  }

  .logo-main {
    width: min(190px, 62vw);
  }

  .logo-small,
  .schedule-wrap .logo-small {
    width: min(108px, 42vw);
  }

  .eyebrow,
  .step-badge {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 9px;
    letter-spacing: .12em;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 34px);
    max-width: 320px;
  }

  .question-title,
  .schedule-wrap .question-title {
    font-size: clamp(25px, 7vw, 30px);
    max-width: 320px;
  }

  .hero-description,
  .question-description {
    max-width: 320px;
    font-size: 12.5px;
    line-height: 1.42;
  }

  .fields-grid {
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .field-label {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .field {
    min-height: 44px;
    border-radius: 14px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .field-textarea {
    min-height: 96px;
    max-height: 104px;
  }

  .field-hint {
    display: none;
  }

  .actions {
    width: 100%;
    margin-top: 14px;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .cta-card {
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .cta-copy {
    margin-bottom: 12px;
    font-size: 12.5px;
    line-height: 1.35;
  }

  .cta-actions {
    gap: 8px;
  }

  .btn-cta {
    min-height: 43px;
  }

  .cta-microcopy {
    margin-top: 10px;
    font-size: 11.5px;
  }

  .social-links {
    margin-top: 12px !important;
    gap: 10px !important;
  }

  .social-link {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    flex-basis: 36px !important;
  }

  .social-link svg {
    width: 15px !important;
    height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
    flex-basis: 15px !important;
  }

  .mini-note {
    display: none;
  }
}

@media (max-height: 620px) {
  .logo-inline,
  .logo-center-full {
    display: none;
  }

  .hero-title {
    font-size: clamp(26px, 4vw, 34px);
  }

  .question-title,
  .schedule-wrap .question-title {
    font-size: clamp(24px, 3vw, 30px);
  }

  .step-badge {
    min-height: 26px;
  }

  .field-textarea {
    min-height: 82px;
    max-height: 90px;
  }

  .cta-card {
    padding: 14px;
  }

  .social-links {
    margin-top: 10px !important;
  }
}
