:root {
    --utp-midnight: #06213b;
    --utp-midnight-soft: #0d355e;
    --utp-jade: #00b87c;
    --utp-jade-deep: #009d6b;
    --utp-gold: #d2a23c;
    --utp-sand: #f5f2ea;
    --utp-white: #ffffff;
    --utp-ink: #162235;
    --utp-muted: #607089;
    --utp-line: rgba(6, 33, 59, 0.12);
    --utp-shadow: 0 24px 60px rgba(6, 33, 59, 0.14);
    --utp-radius: 24px;
    --utp-font: "Aptos", "Gill Sans", "Trebuchet MS", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--utp-font);
    color: var(--utp-ink);
    background:
        radial-gradient(circle at top left, rgba(210, 162, 60, 0.2), transparent 28%),
        linear-gradient(180deg, #eef4f9 0%, #f9fbfd 35%, #ffffff 100%);
    top: 0 !important;
}

.utp-google-translate-element {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.goog-te-banner-frame.skiptranslate,
.skiptranslate > iframe {
    display: none !important;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.utp-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.utp-header {
    background: var(--utp-midnight);
    color: var(--utp-white);
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 8px 20px rgba(6, 33, 59, 0.16);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.utp-header.is-hidden {
    transform: translateY(-100%);
}

.utp-header__inner,
.utp-footer__inner,
.utp-shell,
.utp-home {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.utp-header__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 2px 0;
}

.utp-brand img {
    width: 72px;
    height: auto;
}

.utp-header__actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.utp-language-button,
.utp-language-option,
.utp-button,
.utp-app__nav button,
.utp-summary__action {
    border: 0;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.utp-language-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--utp-white);
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.72rem;
}

.utp-language-button:hover,
.utp-button:hover,
.utp-app__nav button:hover,
.utp-summary__action:hover {
    transform: translateY(-1px);
}

.utp-language-button img,
.utp-language-option img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.utp-language-button__caret {
    font-size: 10px;
    opacity: 0.8;
}

.utp-home {
    padding: 48px 0 72px;
    flex: 1;
}

.utp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.utp-hero__copy,
.utp-service-card,
.utp-form-shell,
.utp-card,
.utp-modal__panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    border-radius: var(--utp-radius);
    box-shadow: var(--utp-shadow);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.utp-hero__copy {
    padding: 38px;
    background:
        linear-gradient(135deg, rgba(6, 33, 59, 0.96), rgba(13, 53, 94, 0.94)),
        linear-gradient(135deg, rgba(0, 184, 124, 0.16), transparent);
    color: var(--utp-white);
}

.utp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.utp-hero h1,
.utp-card h1 {
    margin: 18px 0 12px;
    line-height: 1.02;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.utp-hero__lead {
    margin: 0;
    font-size: 1.14rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 62ch;
}

.utp-hero__badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.utp-badge {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
    line-height: 1.45;
}

.utp-service-card {
    position: relative;
    padding: 34px 28px 28px;
}

.utp-service-card__eyebrow {
    position: absolute;
    top: -14px;
    left: 28px;
    background: var(--utp-gold);
    color: var(--utp-white);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.utp-service-card h2 {
    margin: 12px 0 8px;
    font-size: 2rem;
    color: var(--utp-midnight);
}

.utp-service-card__price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--utp-midnight);
}

.utp-service-card p {
    margin: 0 0 18px;
    color: var(--utp-muted);
}

.utp-service-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--utp-ink);
    display: grid;
    gap: 12px;
}

.utp-form-section {
    margin-top: 36px;
}

.utp-home-page {
    flex: 1;
}

.utp-home-hero {
    background:
        radial-gradient(circle at top right, rgba(0, 184, 124, 0.2), transparent 24%),
        linear-gradient(180deg, #06213b 0%, #082845 100%);
    color: var(--utp-white);
    padding: 28px 0 46px;
}

.utp-home-shell,
.utp-pricing__inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.utp-home-selector-shell {
    padding-top: 18px;
}

.utp-home-selector__loading {
    min-height: 280px;
    display: grid;
    place-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
}

.utp-home-selector__spinner {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--utp-white);
    animation: utp-spin 1s linear infinite;
}

.utp-home-highlights {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.utp-home-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.utp-home-highlight__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--utp-white);
}

.utp-home-highlight__icon svg {
    width: 24px;
    height: 24px;
}

.utp-home-highlight h2 {
    margin: 0 0 8px;
    font-size: 1.12rem;
}

.utp-home-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.utp-home-form {
    display: grid;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 254, 0.96)),
        var(--utp-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.22);
}

.utp-home-form__header {
    max-width: 860px;
}

.utp-home-form__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(6, 33, 59, 0.08);
    color: var(--utp-midnight);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.utp-home-form__header h1 {
    margin: 16px 0 14px;
    color: var(--utp-midnight);
    font-size: clamp(2.2rem, 5vw, 4.35rem);
    line-height: 0.98;
}

.utp-home-form__header p {
    margin: 0;
    color: var(--utp-muted);
    line-height: 1.72;
    font-size: 1.02rem;
}

.utp-home-form__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.utp-home-form__main,
.utp-home-form__aside {
    display: grid;
    gap: 20px;
}

.utp-home-form__main {
    align-content: start;
}

.utp-home-field {
    display: grid;
    gap: 10px;
}

.utp-home-field__label {
    font-weight: 800;
    color: var(--utp-midnight);
    font-size: 1rem;
}

.utp-home-field__hint {
    font-size: 0.92rem;
    color: var(--utp-muted);
}

.utp-home-field select {
    appearance: none;
    width: 100%;
    min-height: 60px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(6, 33, 59, 0.16);
    background: #fff;
    color: var(--utp-ink);
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.utp-purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.utp-purpose-card {
    width: 100%;
    display: grid;
    gap: 10px;
    padding: 20px;
    text-align: left;
    border-radius: 22px;
    border: 1px solid rgba(6, 33, 59, 0.12);
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
    color: var(--utp-midnight);
    box-shadow: 0 14px 28px rgba(6, 33, 59, 0.08);
}

.utp-purpose-card.is-active {
    border-color: rgba(0, 184, 124, 0.5);
    background: linear-gradient(180deg, rgba(0, 184, 124, 0.09), rgba(255, 255, 255, 1));
    box-shadow: 0 18px 32px rgba(0, 184, 124, 0.18);
}

.utp-purpose-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(6, 33, 59, 0.08);
    color: var(--utp-midnight);
}

.utp-purpose-card.is-active .utp-purpose-card__icon {
    background: var(--utp-jade);
    color: var(--utp-white);
}

.utp-purpose-card__icon svg {
    width: 26px;
    height: 26px;
}

.utp-purpose-card__title {
    font-size: 1rem;
    font-weight: 800;
}

.utp-purpose-card__desc {
    color: var(--utp-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.utp-home-form__error {
    padding: 13px 16px;
    border-radius: 16px;
    background: rgba(195, 39, 43, 0.08);
    color: #a81d20;
    font-weight: 700;
}

.utp-home-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.utp-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.utp-home-button--primary {
    background: var(--utp-midnight);
    color: var(--utp-white);
    box-shadow: 0 14px 28px rgba(6, 33, 59, 0.18);
}

.utp-home-button--secondary {
    background: var(--utp-jade);
    color: var(--utp-white);
    box-shadow: 0 14px 28px rgba(0, 184, 124, 0.24);
}

.utp-home-form__save {
    min-height: 24px;
    color: var(--utp-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.utp-home-recommendation {
    height: 100%;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 26px;
    border-radius: 26px;
    background: linear-gradient(180deg, #072541, #0d355e);
    color: var(--utp-white);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.utp-home-recommendation.is-secondary {
    background:
        radial-gradient(circle at top right, rgba(0, 184, 124, 0.25), transparent 30%),
        linear-gradient(180deg, #072541, #0d355e);
}

.utp-home-recommendation.is-visa {
    background:
        radial-gradient(circle at top right, rgba(210, 162, 60, 0.22), transparent 30%),
        linear-gradient(180deg, #072541, #0d355e);
}

.utp-home-recommendation--placeholder {
    background: linear-gradient(180deg, rgba(6, 33, 59, 0.06), rgba(6, 33, 59, 0.02));
    color: var(--utp-midnight);
    border: 1px dashed rgba(6, 33, 59, 0.14);
}

.utp-home-recommendation__badge {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.utp-home-recommendation h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.utp-home-recommendation__meta {
    margin: 0;
    display: grid;
    gap: 12px;
}

.utp-home-recommendation__meta div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.utp-home-recommendation__meta dt {
    margin-bottom: 6px;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.74);
}

.utp-home-recommendation__meta dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.utp-home-recommendation__summary,
.utp-home-recommendation__note,
.utp-home-recommendation__path {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.utp-home-recommendation--placeholder p {
    margin: 0;
    line-height: 1.7;
    color: var(--utp-muted);
}

.utp-pricing {
    padding: 56px 0 80px;
}

.utp-pricing__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.utp-pricing__header h2 {
    margin: 0 0 10px;
    color: var(--utp-midnight);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.utp-pricing__header p {
    margin: 0;
    color: var(--utp-muted);
    line-height: 1.7;
}

.utp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.utp-price-card {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 30px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(6, 33, 59, 0.08);
    box-shadow: var(--utp-shadow);
}

.utp-price-card--featured {
    border: 2px solid rgba(6, 33, 59, 0.9);
    transform: translateY(-6px);
}

.utp-price-card__eyebrow {
    position: absolute;
    top: -16px;
    left: 28px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--utp-gold);
    color: var(--utp-white);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.utp-price-card h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--utp-midnight);
}

.utp-price-card__price {
    font-size: 4rem;
    line-height: 1;
    font-weight: 900;
    color: var(--utp-midnight);
}

.utp-price-card__fee {
    margin: 0;
    min-height: 48px;
    color: var(--utp-muted);
    line-height: 1.55;
}

.utp-price-card__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    border-radius: 18px;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
}

.utp-price-card__cta--outline {
    border: 2px solid var(--utp-midnight);
    color: var(--utp-midnight);
}

.utp-price-card__cta--solid {
    background: var(--utp-jade);
    color: var(--utp-white);
}

.utp-price-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 12px;
    color: var(--utp-ink);
    line-height: 1.55;
}

.utp-form-shell {
    padding: 26px;
}

.utp-app {
    display: block;
}

.utp-app__panel {
    background: linear-gradient(180deg, #fcfdff 0%, #f7fafc 100%);
    border: 1px solid var(--utp-line);
    border-radius: 24px;
    padding: 28px;
}

.utp-app__panel h2 {
    margin: 0 0 8px;
    font-size: 1.65rem;
    color: var(--utp-midnight);
}

.utp-app__panel p {
    margin: 0;
    color: var(--utp-muted);
    line-height: 1.65;
}

.utp-app__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 26px;
}

.utp-app__meta--compact {
    margin-top: 14px;
}

.utp-app__meta span,
.utp-save-state {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(6, 33, 59, 0.06);
    color: var(--utp-midnight);
    font-size: 0.88rem;
    font-weight: 700;
}

.utp-progress-dots {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
    align-items: center;
}

.utp-progress-dot {
    position: relative;
    height: 16px;
}

.utp-progress-dot::before,
.utp-progress-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.utp-progress-dot::before {
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(6, 33, 59, 0.16);
}

.utp-progress-dot::after {
    left: 50%;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    border-radius: 50%;
    background: var(--utp-white);
    border: 2px solid rgba(6, 33, 59, 0.22);
}

.utp-progress-dot.is-complete::before,
.utp-progress-dot.is-active::before {
    background: rgba(0, 184, 124, 0.4);
}

.utp-progress-dot.is-complete::after {
    background: var(--utp-jade);
    border-color: var(--utp-jade);
}

.utp-progress-dot.is-active::after {
    background: var(--utp-white);
    border-color: var(--utp-jade);
    box-shadow: 0 0 0 4px rgba(0, 184, 124, 0.16);
}

.utp-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.utp-field {
    grid-column: span 12;
}

.utp-field--half {
    grid-column: span 6;
}

.utp-field--third {
    grid-column: span 4;
}

.utp-field label,
.utp-review-group h3 {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--utp-midnight);
}

.utp-field input[type="text"],
.utp-field input[type="email"],
.utp-field input[type="tel"],
.utp-field input[type="date"],
.utp-field input[type="number"],
.utp-field select,
.utp-field textarea {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(6, 33, 59, 0.16);
    background: var(--utp-white);
    padding: 14px 16px;
    color: var(--utp-ink);
    outline: 0;
}

.utp-field textarea {
    min-height: 132px;
    resize: vertical;
}

.utp-phone-field {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
    gap: 10px;
}

.utp-phone-field .utp-phone-field__code,
.utp-phone-field input[type="tel"] {
    min-height: 54px;
}

.utp-field.has-error input,
.utp-field.has-error select,
.utp-field.has-error textarea {
    border-color: rgba(185, 28, 28, 0.42);
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.08);
}

.utp-field input:focus,
.utp-field select:focus,
.utp-field textarea:focus {
    border-color: var(--utp-jade);
    box-shadow: 0 0 0 4px rgba(0, 184, 124, 0.14);
}

.utp-field__hint,
.utp-upload-list,
.utp-review-group p,
.utp-summary-list dd {
    color: var(--utp-muted);
    line-height: 1.6;
}

.utp-choice {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

.utp-choice__button {
    min-width: 92px;
    border-radius: 999px;
    padding: 12px 16px;
    border: 1px solid rgba(6, 33, 59, 0.14);
    background: var(--utp-white);
    color: var(--utp-midnight);
    font-weight: 700;
}

.utp-choice__button.is-active {
    background: var(--utp-jade);
    color: var(--utp-white);
    border-color: var(--utp-jade);
    box-shadow: 0 16px 34px rgba(0, 184, 124, 0.18);
}

.utp-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(6, 33, 59, 0.04);
    border: 1px solid rgba(6, 33, 59, 0.08);
}

.utp-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.utp-checkbox__content {
    line-height: 1.7;
}

.utp-checkbox__content button,
.utp-inline-link {
    padding: 0;
    background: none;
    color: var(--utp-jade-deep);
    font-weight: 800;
    text-decoration: underline;
    border: 0;
    cursor: pointer;
}

.utp-upload-list {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.utp-upload-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(6, 33, 59, 0.04);
}

.utp-summary {
    display: grid;
    gap: 18px;
}

.utp-review-group {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--utp-line);
    background: rgba(6, 33, 59, 0.03);
}

.utp-summary-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin: 0;
}

.utp-summary-list div {
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(6, 33, 59, 0.12);
}

.utp-summary-list dt {
    margin: 0 0 4px;
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--utp-midnight);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.utp-summary-list dd {
    margin: 0;
}

.utp-app__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.utp-button,
.utp-app__nav button,
.utp-summary__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.utp-button--primary,
.utp-app__nav .is-primary,
.utp-summary__action {
    background: var(--utp-jade);
    color: var(--utp-white);
    box-shadow: 0 20px 32px rgba(0, 184, 124, 0.2);
}

.utp-button--primary:hover,
.utp-app__nav .is-primary:hover,
.utp-summary__action:hover {
    background: var(--utp-jade-deep);
}

.utp-button--ghost,
.utp-app__nav .is-ghost {
    background: var(--utp-white);
    color: var(--utp-midnight);
    border: 1px solid rgba(6, 33, 59, 0.12);
}

.utp-error-banner {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(185, 28, 28, 0.08);
    border: 1px solid rgba(185, 28, 28, 0.12);
    color: #8c1f1f;
    font-weight: 700;
}

.utp-empty-note {
    padding: 18px;
    border-radius: 18px;
    background: rgba(6, 33, 59, 0.04);
    color: var(--utp-muted);
}

.utp-shell {
    flex: 1;
    padding: 56px 0 80px;
}

.utp-shell--compact {
    width: min(860px, calc(100% - 32px));
}

.utp-card {
    padding: 40px;
}

.utp-card--center {
    text-align: center;
}

.utp-success-card__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.utp-footer {
    margin-top: auto;
    background: var(--utp-midnight);
    color: var(--utp-white);
}

.utp-footer__inner {
    padding: 40px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 28px;
}

.utp-footer__brand {
    display: grid;
    gap: 16px;
}

.utp-footer__brand img {
    width: 188px;
}

.utp-footer__brand p,
.utp-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.utp-footer__meta {
    display: grid;
    justify-items: end;
    gap: 16px;
}

.utp-footer__ssl {
    width: 108px;
}

.utp-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.utp-footer__links a {
    color: var(--utp-white);
    opacity: 0.88;
    text-decoration: none;
}

.utp-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
}

.utp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 33, 59, 0.56);
    backdrop-filter: blur(10px);
}

.utp-modal__panel {
    position: relative;
    width: min(720px, calc(100% - 32px));
    margin: 6vh auto 0;
    padding: 0;
    overflow: hidden;
}

.utp-modal__panel--small {
    width: min(460px, calc(100% - 32px));
}

.utp-modal__panel--legal {
    width: min(1080px, calc(100% - 32px));
    height: 86vh;
    display: flex;
    flex-direction: column;
}

.utp-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--utp-line);
}

.utp-modal__header h2 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--utp-midnight);
}

.utp-modal__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: rgba(6, 33, 59, 0.06);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.utp-language-list {
    display: grid;
    gap: 10px;
    padding: 18px 20px 20px;
}

.utp-language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(6, 33, 59, 0.04);
    color: var(--utp-midnight);
}

.utp-language-option.is-active {
    background: rgba(0, 184, 124, 0.1);
}

.utp-legal-frame {
    width: 100%;
    height: 100%;
    border: 0;
    background: var(--utp-white);
}

@media (max-width: 1080px) {
    .utp-home-form__grid,
    .utp-hero,
    .utp-app,
    .utp-pricing__grid,
    .utp-footer__inner {
        grid-template-columns: 1fr;
    }

    .utp-price-card--featured {
        transform: none;
    }

    .utp-home-highlights,
    .utp-hero__badges {
        grid-template-columns: 1fr;
    }

    .utp-footer__meta {
        justify-items: start;
    }

    .utp-footer__links {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .utp-header__inner {
        min-height: 34px;
        padding: 1px 0;
    }

    .utp-header__actions {
        width: auto;
        justify-content: flex-end;
    }

    .utp-brand img {
        width: 62px;
    }

    .utp-language-button {
        padding: 3px 7px;
        font-size: 0.7rem;
    }

    .utp-home {
        padding: 30px 0 56px;
    }

    .utp-home-form {
        padding: 24px;
    }

    .utp-hero__copy,
    .utp-service-card,
    .utp-form-shell,
    .utp-card {
        padding: 24px;
    }

    .utp-app__panel {
        padding: 22px;
    }

    .utp-field--half,
    .utp-field--third,
    .utp-summary-list {
        grid-column: span 12;
        grid-template-columns: 1fr;
    }

    .utp-phone-field {
        grid-template-columns: 1fr;
    }

    .utp-app__nav,
    .utp-success-card__actions {
        flex-direction: column;
    }

    .utp-purpose-grid {
        grid-template-columns: 1fr;
    }

    .utp-home-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .utp-app__nav button,
    .utp-home-button,
    .utp-button,
    .utp-summary__action {
        width: 100%;
    }

    .utp-progress-dots {
        gap: 6px;
    }
}

  @media (max-width: 560px) {
    .utp-home-shell,
    .utp-pricing__inner {
        width: min(100% - 24px, 100%);
    }

    .utp-home-highlight {
        padding: 16px;
    }

      .utp-price-card {
          padding: 24px 20px;
      }
  }

  .utp-home-hero {
      background:
          radial-gradient(circle at top center, rgba(255, 255, 255, 0.15), transparent 38%),
          linear-gradient(180deg, #0a2950 0%, #0b2f60 42%, #072241 100%);
      min-height: calc(100vh - 46px);
      display: flex;
      align-items: center;
      padding: 14px 0 24px;
  }

  .utp-home-shell {
      width: min(1180px, calc(100% - 24px));
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .utp-home-selector-shell {
      width: 100%;
      padding-top: 0;
  }

  .utp-home-form--hero {
      position: relative;
      overflow: hidden;
      padding: 18px 18px 20px;
      border-radius: 34px;
      background:
          radial-gradient(circle at top center, rgba(18, 96, 210, 0.08), transparent 34%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(248, 251, 255, 0.985));
      border: 1px solid rgba(7, 38, 80, 0.12);
      box-shadow: 0 34px 80px rgba(3, 22, 48, 0.28);
  }

  .utp-home-form__stripe {
      height: 14px;
      margin: -18px -18px 16px;
      background:
          linear-gradient(90deg, #123a7a 0%, #123a7a 34%, transparent 34%, transparent 100%),
          repeating-linear-gradient(90deg, #ffffff 0 48px, #ffffff 48px 96px),
          linear-gradient(180deg, #ffffff 0 50%, #c72d35 50% 100%);
      position: relative;
  }

  .utp-home-form__stripe::before {
      content: "★ ★ ★ ★ ★";
      position: absolute;
      inset: 0 auto auto 12px;
      color: #ffffff;
      font-size: 10px;
      letter-spacing: 6px;
      line-height: 14px;
      white-space: nowrap;
  }

  .utp-home-form__stripe--bottom {
      margin: 18px -18px -20px;
      transform: rotate(180deg);
  }

  .utp-home-form__masthead {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
  }

  .utp-home-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #133e82;
      font-weight: 900;
      font-size: clamp(1.2rem, 2.1vw, 2rem);
  }

  .utp-home-brand__flag {
      font-size: clamp(1.55rem, 3vw, 2.4rem);
      line-height: 1;
      filter: drop-shadow(0 10px 18px rgba(19, 62, 130, 0.12));
  }

  .utp-home-brand__status {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(19, 62, 130, 0.08);
      color: #133e82;
      font-weight: 800;
      font-size: 0.9rem;
  }

  .utp-home-form__header--hero {
      text-align: center;
      max-width: none;
      margin-bottom: 18px;
  }

  .utp-home-form__header--hero .utp-home-form__eyebrow {
      background: none;
      padding: 0;
      color: #133e82;
      font-size: 1rem;
      letter-spacing: 0.08em;
  }

  .utp-home-form__header--hero h1 {
      margin: 8px 0 0;
      color: #123a7a;
      font-size: clamp(2.3rem, 6vw, 5.1rem);
      line-height: 0.92;
      text-transform: uppercase;
      letter-spacing: -0.04em;
  }

  .utp-home-eligibility-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
      gap: 18px;
      align-items: stretch;
  }

  .utp-home-eligibility-layout__main,
  .utp-home-eligibility-layout__aside {
      display: grid;
      gap: 16px;
  }

  .utp-home-eligibility-layout__aside {
      align-content: start;
  }

  .utp-home-step-card {
      padding: 18px;
      border-radius: 24px;
      background: linear-gradient(180deg, #ffffff, #f5f9ff);
      border: 1px solid rgba(18, 58, 122, 0.12);
      box-shadow: 0 16px 32px rgba(18, 58, 122, 0.08);
  }

  .utp-home-step-card__header {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: center;
      margin-bottom: 14px;
  }

  .utp-home-step-card__number {
      width: 40px;
      height: 40px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      background: #123a7a;
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 900;
  }

  .utp-home-step-card__copy h2 {
      margin: 0;
      color: #0b1424;
      font-size: clamp(1.18rem, 2.2vw, 1.85rem);
      line-height: 1.08;
  }

  .utp-home-step-card__copy p {
      margin: 4px 0 0;
      color: #6a7788;
      font-size: 0.92rem;
  }

  .utp-home-step-card__emoji {
      width: 48px;
      height: 48px;
      display: inline-grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(18, 58, 122, 0.08), rgba(18, 58, 122, 0.14));
      color: #123a7a;
      line-height: 1;
  }

  .utp-home-step-card__emoji svg {
      width: 28px;
      height: 28px;
  }

  .utp-home-country-selected {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 14px;
      border-radius: 18px;
      background: rgba(18, 58, 122, 0.06);
      color: #123a7a;
      font-size: 1.02rem;
      font-weight: 800;
      margin-bottom: 12px;
  }

  .utp-home-country-selected__flag,
  .utp-home-country-select__flag {
      font-size: 1.7rem;
      line-height: 1;
  }

  .utp-home-country-select {
      position: relative;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
      min-height: 68px;
      padding: 0 18px;
      border-radius: 22px;
      background: #ffffff;
      border: 1px solid rgba(18, 58, 122, 0.16);
      box-shadow: 0 12px 28px rgba(18, 58, 122, 0.08);
  }

  .utp-home-country-select select {
      appearance: none;
      min-height: 68px;
      padding: 0;
      border: 0;
      background: transparent;
      color: #0b1424;
      font-size: 1.08rem;
      font-weight: 700;
      box-shadow: none;
  }

  .utp-home-country-select__caret {
      color: #738197;
      font-size: 1.3rem;
  }

  .utp-home-country-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
  }

  .utp-home-country-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(18, 58, 122, 0.12);
      color: #0f2742;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(18, 58, 122, 0.06);
  }

  .utp-home-country-pill.is-active {
      border-color: rgba(18, 58, 122, 0.38);
      background: linear-gradient(180deg, #eef5ff, #ffffff);
      color: #123a7a;
  }

  .utp-purpose-grid--hero {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
  }

  .utp-purpose-grid--hero .utp-purpose-card {
      gap: 12px;
      align-content: start;
      justify-items: center;
      min-height: 190px;
      padding: 18px 14px;
      text-align: center;
      border-radius: 24px;
      box-shadow: 0 12px 28px rgba(18, 58, 122, 0.08);
  }

  .utp-purpose-grid--hero .utp-purpose-card__icon {
      width: 74px;
      height: 74px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(18, 58, 122, 0.08), rgba(18, 58, 122, 0.14));
  }

  .utp-purpose-grid--hero .utp-purpose-card__icon svg {
      width: 38px;
      height: 38px;
  }

  .utp-purpose-grid--hero .utp-purpose-card__title {
      font-size: 1.24rem;
  }

  .utp-purpose-grid--hero .utp-purpose-card.is-active {
      border-color: rgba(43, 145, 255, 0.55);
      background: linear-gradient(180deg, rgba(195, 223, 255, 0.9), #ffffff);
      box-shadow: 0 18px 36px rgba(43, 145, 255, 0.16);
  }

  .utp-home-recommendation--inline {
      min-height: 198px;
      padding: 20px 20px 18px;
      border-radius: 28px;
      background:
          radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 32%),
          linear-gradient(180deg, #0f49c5, #173fbc 45%, #1d34a8 100%);
      box-shadow: 0 22px 48px rgba(15, 73, 197, 0.28);
  }

  .utp-home-recommendation--inline.is-secondary {
      background:
          radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 32%),
          linear-gradient(180deg, #0f8f8a, #0f6f8b 46%, #14537a 100%);
  }

  .utp-home-recommendation--inline.utp-home-recommendation--placeholder {
      background: linear-gradient(180deg, #f1f6ff, #eaf2ff);
      color: #123a7a;
      box-shadow: inset 0 0 0 1px rgba(18, 58, 122, 0.1);
  }

  .utp-home-recommendation__document {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      line-height: 0.95;
      margin: 8px 0 10px;
      text-transform: uppercase;
  }

  .utp-home-recommendation__class {
      display: inline-flex;
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      font-weight: 800;
      margin-bottom: 12px;
  }

  .utp-home-recommendation__summary {
      margin: 0;
      color: rgba(255, 255, 255, 0.96);
      font-size: 0.98rem;
      line-height: 1.45;
  }

  .utp-home-recommendation__note {
      margin: 12px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.84rem;
      line-height: 1.4;
  }

  .utp-home-recommendation--placeholder .utp-home-recommendation__summary,
  .utp-home-recommendation--placeholder .utp-home-recommendation__note {
      color: #4a607e;
  }

  .utp-home-button--hero {
      width: 100%;
      min-height: 70px;
      justify-content: space-between;
      padding: 0 26px;
      background: linear-gradient(180deg, #19a9ff, #1869ff 56%, #2044e8 100%);
      color: #ffffff;
      box-shadow: 0 24px 42px rgba(24, 105, 255, 0.34);
      font-size: clamp(1.15rem, 2vw, 1.75rem);
      text-transform: uppercase;
  }

  .utp-home-button__arrow {
      font-size: 2.2rem;
      line-height: 1;
  }

  .utp-home-trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
  }

  .utp-home-trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 20px;
      background: rgba(18, 58, 122, 0.05);
      border: 1px solid rgba(18, 58, 122, 0.08);
      min-height: 74px;
  }

  .utp-home-trust-badge__icon {
      width: 38px;
      height: 38px;
      display: inline-grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(18, 58, 122, 0.08), rgba(18, 58, 122, 0.14));
      color: #123a7a;
      line-height: 1;
  }

  .utp-home-trust-badge__icon svg {
      width: 20px;
      height: 20px;
  }

  .utp-home-trust-badge__text {
      display: grid;
      gap: 2px;
      color: #223449;
      line-height: 1.2;
  }

  .utp-home-trust-badge__text strong {
      font-size: 0.95rem;
  }

  .utp-home-trust-badge__text span {
      font-size: 0.88rem;
      color: #6b7788;
  }

  .utp-home-form__save {
      text-align: center;
      min-height: 18px;
      font-size: 0.9rem;
  }

  @media (max-width: 1024px) {
      .utp-home-eligibility-layout {
          grid-template-columns: 1fr;
      }

      .utp-home-trust-row {
          grid-template-columns: repeat(3, minmax(0, 1fr));
      }
  }

  @media (max-width: 760px) {
      .utp-home-hero {
          min-height: auto;
          padding: 10px 0 18px;
      }

      .utp-home-shell {
          width: min(100% - 16px, 100%);
      }

      .utp-home-form--hero {
          padding: 14px 14px 16px;
          border-radius: 28px;
      }

      .utp-home-form__stripe {
          height: 10px;
          margin: -14px -14px 12px;
      }

      .utp-home-form__stripe::before {
          font-size: 8px;
          line-height: 10px;
          letter-spacing: 4px;
      }

      .utp-home-form__stripe--bottom {
          margin: 14px -14px -16px;
      }

      .utp-home-form__masthead {
          margin-bottom: 10px;
      }

      .utp-home-brand {
          gap: 8px;
          font-size: 1.18rem;
      }

      .utp-home-brand__status {
          min-height: 32px;
          padding: 0 10px;
          font-size: 0.72rem;
      }

      .utp-home-form__header--hero {
          margin-bottom: 12px;
      }

      .utp-home-form__header--hero .utp-home-form__eyebrow {
          font-size: 0.76rem;
      }

      .utp-home-form__header--hero h1 {
          font-size: clamp(2rem, 12vw, 3.5rem);
      }

      .utp-home-step-card {
          padding: 12px;
      }

      .utp-home-step-card__header {
          gap: 8px;
          margin-bottom: 8px;
      }

      .utp-home-step-card__number {
          width: 34px;
          height: 34px;
          font-size: 1rem;
      }

      .utp-home-step-card__copy h2 {
          font-size: 0.98rem;
      }

      .utp-home-step-card__copy p {
          display: none;
      }

      .utp-home-step-card__emoji {
          width: 40px;
          height: 40px;
          border-radius: 14px;
      }

      .utp-home-step-card__emoji svg {
          width: 22px;
          height: 22px;
      }

      .utp-home-country-selected,
      .utp-home-country-select {
          min-height: 56px;
          padding-left: 14px;
          padding-right: 14px;
      }

      .utp-home-country-selected {
          font-size: 0.96rem;
          margin-bottom: 8px;
      }

      .utp-home-country-select select {
          min-height: 56px;
          font-size: 0.98rem;
      }

      .utp-home-country-pills {
          gap: 8px;
      }

      .utp-home-country-pill {
          padding: 7px 10px;
          font-size: 0.84rem;
      }

      .utp-purpose-grid--hero {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 10px;
      }

      .utp-purpose-grid--hero .utp-purpose-card {
          min-height: 132px;
          padding: 12px 8px;
          border-radius: 20px;
      }

      .utp-purpose-grid--hero .utp-purpose-card__icon {
          width: 60px;
          height: 60px;
      }

      .utp-purpose-grid--hero .utp-purpose-card__icon svg {
          width: 31px;
          height: 31px;
      }

      .utp-purpose-grid--hero .utp-purpose-card__title {
          font-size: 1rem;
      }

      .utp-home-recommendation--inline {
          min-height: auto;
          padding: 14px;
          border-radius: 22px;
      }

      .utp-home-recommendation__document {
          font-size: 1.38rem;
          margin: 6px 0 8px;
      }

      .utp-home-recommendation__class {
          margin-bottom: 8px;
          padding: 7px 10px;
          font-size: 0.82rem;
      }

      .utp-home-recommendation__summary {
          font-size: 0.88rem;
      }

      .utp-home-recommendation__note {
          margin-top: 8px;
          font-size: 0.76rem;
      }

      .utp-home-button--hero {
          min-height: 56px;
          padding: 0 16px;
          font-size: 1rem;
      }

      .utp-home-trust-row {
          grid-template-columns: repeat(3, minmax(0, 1fr));
          gap: 8px;
      }

      .utp-home-trust-badge {
          min-height: 86px;
          padding: 10px 8px;
          gap: 8px;
          text-align: center;
          flex-direction: column;
          justify-content: center;
      }

      .utp-home-trust-badge__icon {
          width: 30px;
          height: 30px;
      }

      .utp-home-trust-badge__icon svg {
          width: 16px;
          height: 16px;
      }

      .utp-home-trust-badge__text strong {
          font-size: 0.78rem;
      }

      .utp-home-trust-badge__text span {
          font-size: 0.72rem;
      }
  }

@keyframes utp-spin {
      from {
          transform: rotate(0deg);
      }

    to {
        transform: rotate(360deg);
    }
}

.utp-home-hero {
    min-height: calc(100svh - 18px);
    padding: 8px 0 10px;
}

.utp-home-shell {
    width: min(1024px, calc(100% - 18px));
}

.utp-home-form--hero {
    height: min(820px, calc(100svh - 18px));
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 0;
    padding: 14px 16px;
    border-radius: 30px;
}

.utp-home-form__stripe {
    height: 8px;
    margin: -14px -16px 10px;
}

.utp-home-form__stripe::before {
    content: none;
}

.utp-home-form__stripe--bottom {
    margin: 12px -16px -14px;
}

.utp-home-form__masthead {
    margin-bottom: 8px;
}

.utp-home-brand {
    font-size: clamp(1rem, 1.8vw, 1.5rem);
}

.utp-home-brand__status {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.76rem;
}

.utp-home-form__header--hero {
    margin-bottom: 10px;
}

.utp-home-form__header--hero h1 {
    display: grid;
    gap: 2px;
    font-size: clamp(2rem, 4.9vw, 4.2rem);
    line-height: 0.92;
}

.utp-home-form__header--hero h1 span {
    display: block;
    font-size: inherit;
}

.utp-home-stage {
    min-height: 0;
    display: grid;
    gap: 12px;
    align-content: start;
}

.utp-home-stage--selection {
    grid-template-rows: auto auto auto auto;
}

.utp-home-stage--summary {
    min-height: 0;
    align-self: start;
    position: sticky;
    top: 52px;
    z-index: 4;
}

.utp-home-step-card {
    padding: 14px;
    border-radius: 22px;
}

.utp-home-step-card__header {
    margin-bottom: 10px;
}

.utp-home-step-card__copy h2 {
    font-size: clamp(1.02rem, 1.7vw, 1.35rem);
}

.utp-home-step-card__copy p {
    font-size: 0.82rem;
}

.utp-home-step-card__emoji {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.utp-home-step-card__emoji svg {
    width: 22px;
    height: 22px;
}

.utp-home-country-selected {
    margin-bottom: 10px;
    min-height: 52px;
    font-size: 0.98rem;
}

.utp-home-country-select {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 56px;
    padding: 0 14px;
}

.utp-home-country-select__flag,
.utp-home-country-pills {
    display: none;
}

.utp-home-country-select select {
    min-height: 56px;
    font-size: 1rem;
}

.utp-purpose-grid--hero {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.utp-purpose-grid--hero .utp-purpose-card {
    min-height: 138px;
    padding: 14px 10px;
    border-radius: 20px;
}

.utp-purpose-grid--hero .utp-purpose-card__icon {
    width: 58px;
    height: 58px;
}

.utp-purpose-grid--hero .utp-purpose-card__icon svg {
    width: 30px;
    height: 30px;
}

.utp-purpose-grid--hero .utp-purpose-card__title {
    font-size: 1rem;
}

.utp-home-stage__footer {
    display: grid;
    gap: 10px;
}

.utp-home-button--hero {
    min-height: 58px;
    padding: 0 18px;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.utp-home-trust-row {
    gap: 8px;
}

.utp-home-trust-badge {
    min-height: 64px;
    padding: 10px 12px;
}

.utp-home-trust-badge__text strong {
    font-size: 0.84rem;
}

.utp-home-trust-badge__text span {
    font-size: 0.76rem;
}

.utp-home-summary {
    min-height: 0;
    height: 100%;
    max-height: calc(100svh - 108px);
    overflow: auto;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f5f9ff);
    border: 1px solid rgba(18, 58, 122, 0.12);
    box-shadow: 0 18px 38px rgba(18, 58, 122, 0.1);
}

.utp-home-summary__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.utp-home-summary__eyebrow {
    margin: 0 0 4px;
    color: #6b7788;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.utp-home-summary__header h2 {
    margin: 0;
    color: #123a7a;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    line-height: 1;
}

.utp-home-summary__edit {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(18, 58, 122, 0.16);
    background: #ffffff;
    color: #123a7a;
    font-weight: 800;
}

.utp-home-summary__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.utp-home-summary__fact {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(18, 58, 122, 0.05);
}

.utp-home-summary__fact span {
    color: #6b7788;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.utp-home-summary__fact strong {
    color: #0b1424;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
}

.utp-home-summary__body {
    display: grid;
    align-content: start;
    gap: 10px;
}

.utp-home-summary__copy,
.utp-home-summary__hint,
.utp-home-summary__fee {
    margin: 0;
    color: #33455f;
    font-size: 0.95rem;
    line-height: 1.45;
}

.utp-home-summary__hint {
    color: #123a7a;
    font-weight: 700;
}

.utp-home-summary__fee {
    color: #6b7788;
    font-size: 0.84rem;
}

.utp-home-summary__selector {
    display: grid;
    gap: 8px;
}

.utp-home-summary__selector span {
    color: #6b7788;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.utp-home-summary__selector select {
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(18, 58, 122, 0.16);
    background: #ffffff;
    color: #0b1424;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 0 14px;
}

.utp-home-summary__actions {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 10px;
    position: sticky;
    bottom: 0;
    padding-top: 10px;
    background: linear-gradient(180deg, rgba(245, 249, 255, 0) 0%, #f5f9ff 38%);
}

.utp-home-summary__actions [data-home-action="start"] {
    box-shadow: 0 14px 32px rgba(18, 58, 122, 0.28);
}

.utp-home-button--ghost {
    min-height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(18, 58, 122, 0.16);
    background: #ffffff;
    color: #123a7a;
    box-shadow: none;
    font-size: 0.98rem;
}

@media (max-width: 760px) {
    .utp-home-hero {
        min-height: calc(100svh - 8px);
        padding: 4px 0;
    }

    .utp-home-shell {
        width: min(100% - 12px, 100%);
    }

    .utp-home-form--hero {
        height: calc(100svh - 8px);
        padding: 10px 10px 12px;
        border-radius: 24px;
    }

    .utp-home-form__stripe {
        height: 6px;
        margin: -10px -10px 8px;
    }

    .utp-home-form__stripe--bottom {
        margin: 10px -10px -12px;
    }

    .utp-home-form__masthead {
        margin-bottom: 6px;
    }

    .utp-home-brand {
        font-size: 1rem;
    }

    .utp-home-brand__status {
        min-height: 28px;
        padding: 0 9px;
        font-size: 0.68rem;
    }

    .utp-home-form__header--hero {
        margin-bottom: 8px;
    }

    .utp-home-form__header--hero h1 {
        font-size: clamp(1.8rem, 10.8vw, 3rem);
        gap: 0;
    }

    .utp-home-stage {
        gap: 8px;
    }

    .utp-home-stage--summary {
        position: static;
        top: auto;
    }

    .utp-home-step-card {
        padding: 10px;
        border-radius: 18px;
    }

    .utp-home-step-card__header {
        gap: 8px;
        margin-bottom: 8px;
    }

    .utp-home-step-card__copy h2 {
        font-size: 0.95rem;
    }

    .utp-home-step-card__copy p {
        display: none;
    }

    .utp-home-step-card__emoji {
        width: 36px;
        height: 36px;
    }

    .utp-home-step-card__emoji svg {
        width: 18px;
        height: 18px;
    }

    .utp-home-country-selected {
        min-height: 46px;
        padding: 10px 12px;
        font-size: 0.92rem;
    }

    .utp-home-country-select {
        min-height: 50px;
        padding: 0 12px;
    }

    .utp-home-country-select select {
        min-height: 50px;
        font-size: 0.92rem;
    }

    .utp-purpose-grid--hero {
        gap: 8px;
    }

    .utp-purpose-grid--hero .utp-purpose-card {
        min-height: 112px;
        padding: 10px 8px;
        border-radius: 18px;
    }

    .utp-purpose-grid--hero .utp-purpose-card__icon {
        width: 50px;
        height: 50px;
    }

    .utp-purpose-grid--hero .utp-purpose-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .utp-purpose-grid--hero .utp-purpose-card__title {
        font-size: 0.92rem;
    }

    .utp-home-button--hero,
    .utp-home-button--ghost {
        min-height: 50px;
        padding: 0 14px;
        font-size: 0.94rem;
        border-radius: 16px;
    }

    .utp-home-trust-row {
        gap: 6px;
    }

    .utp-home-trust-badge {
        min-height: 58px;
        padding: 8px;
        gap: 6px;
    }

    .utp-home-trust-badge__icon {
        width: 30px;
        height: 30px;
    }

    .utp-home-trust-badge__icon svg {
        width: 14px;
        height: 14px;
    }

    .utp-home-trust-badge__text strong {
        font-size: 0.72rem;
    }

    .utp-home-trust-badge__text span {
        font-size: 0.66rem;
    }

    .utp-home-summary {
        max-height: none;
        overflow: visible;
        padding: 12px;
        border-radius: 20px;
        gap: 10px;
    }

    .utp-home-summary__header h2 {
        font-size: 1.18rem;
    }

    .utp-home-summary__edit {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.8rem;
    }

    .utp-home-summary__facts {
        gap: 8px;
    }

    .utp-home-summary__fact {
        padding: 10px;
        border-radius: 14px;
    }

    .utp-home-summary__fact span {
        font-size: 0.64rem;
    }

    .utp-home-summary__fact strong {
        font-size: 0.86rem;
    }

    .utp-home-summary__copy,
    .utp-home-summary__hint,
    .utp-home-summary__fee {
        font-size: 0.84rem;
    }

    .utp-home-summary__selector select {
        min-height: 46px;
        font-size: 0.9rem;
        padding: 0 12px;
    }

    .utp-home-summary__actions {
        position: static;
        bottom: auto;
        padding-top: 0;
        background: none;
    }
}
