/* ============================================================
   theupwardadvisory_v3 -- mirrors the client's .com/offer page.

   Tokens captured from production (Playwright DOM dump 2026-05-14):
   --ua-blue   #0071e3  (Apple blue, used for CTAs and step indicator)
   --ua-green  #00b67a  (used for the "PIN" label and trust marks)
   --ua-navy   #081f3e  (stats-bar bg)
   --ua-ink    #1d1d1f  (logo / heading dark)
   --ua-muted  #404040  (help text)
   --ua-soft   #737373  (microcopy + disclaimer)
   --ua-bg     #f5f5f7  (input fill)
   --ua-border #d2d2d7  (input border)

   Font stack matches the source page (SF Pro -> system).
   ============================================================ */

:root {
    --ua-blue: #0071e3;
    --ua-blue-hover: #1583ea;
    /* Green is reserved for the "advisors online" availability badge only --
       it carries semantic meaning (online status), not visual decoration. */
    --ua-green: #00b67a;
    --ua-navy: #081f3e;
    --ua-ink: #1d1d1f;
    --ua-muted: #404040;
    --ua-soft: #737373;
    --ua-soft-2: #424245;
    --ua-bg: #f5f5f7;
    --ua-border: #d2d2d7;
    --ua-card-bg: rgba(255, 255, 255, 0.92);
    /* System font stack mirrors theupwardadvisory.com/offer EXACTLY.
       Crucially, NO "Segoe UI" -- on Windows the source falls through to
       Arial, which renders thicker/darker than Segoe UI at the same weight.
       Including Segoe UI in our stack made our text look lighter than theirs
       on the user's Windows browser. */
    --ua-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Reset bs4_base2 body rules when this page is active. The base template
   bakes in a body padding-top, a body background-image, and a flex column
   layout we don't want on the offer page. */
body.ua-v3-offer {
    margin: 0;
    padding: 0 !important;
    display: block !important;
    flex-direction: initial !important;
    background: #ffffff !important;
    color: var(--ua-ink);
    font-family: var(--ua-font);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

/* ============================================================
   Header: fixed, frosted-white, logo left + call pill right.
   ============================================================ */
.ua-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 71px;
    padding: 15px 58px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.ua-logo {
    color: var(--ua-ink);
    font-family: var(--ua-font);
    font-size: 1.4rem;
    font-weight: 200;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
}

.ua-logo:hover {
    color: var(--ua-ink);
    text-decoration: none;
}

.ua-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ua-call-btn {
    background: var(--ua-blue);
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.ua-call-btn:hover {
    background: var(--ua-blue-hover);
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ============================================================
   Hero: full-bleed, dark gradient over the customer photo.
   ============================================================ */
.ua-hero {
    position: relative;
    min-height: 700px;
    padding: 130px 5vw 70px;
    /* Solid fallback color renders instantly while the JPG decodes, so the
       headline + form card never appear on a blank/white background. */
    background-color: #1d1d1f;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.78)),
        url('hero.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    /* `fixed` is expensive on mobile and triggers full-page repaints during
       scroll; `scroll` keeps things snappy without losing the visual. */
    background-attachment: scroll;
    display: flex;
    align-items: center;
}

.ua-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    /* Anchor hero text to the top of the column so the headline sits in
       the top-left of the hero rather than vertically centering with the
       (much taller) form card on the right. */
    align-items: start;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.ua-hero-text {
    color: #ffffff;
}

.ua-trust-signal {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ua-stars {
    display: inline-flex;
    gap: 2px;
}

.ua-stars svg {
    width: 18px;
    height: 18px;
    fill: #ffc83d;
}

.ua-rating-label {
    text-transform: uppercase;
}

.ua-headline {
    color: #ffffff;
    font-family: var(--ua-font);
    /* Sized to feel intentional next to the form card without overwhelming
       the top-of-fold (was 5.4rem before the user asked to bring it down). */
    font-size: 4.2rem;
    font-weight: 200;
    line-height: 1.06;
    letter-spacing: -0.015em;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   Form card: frosted white, rounded, soft drop shadow.
   ============================================================ */
.ua-form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.ua-form-card {
    background: var(--ua-card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 45px 32px;
    width: 100%;
    max-width: 420px;
    color: var(--ua-ink);
    position: relative;
    overflow: hidden;
}

/* Progress bar pinned to the top of the card. */
.ua-progress-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ua-border);
}

.ua-progress-fill {
    height: 100%;
    background: var(--ua-blue);
    width: 50%;
    transition: width 0.25s ease-out;
}

.ua-step-indicator {
    color: var(--ua-blue);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.ua-step[hidden] { display: none; }

.ua-form-group {
    margin-bottom: 14px;
}

/* Two-column row inside the card -- used for First/Last and State/ZIP.
   Falls back to single column under 380px so labels never collide. */
.ua-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ua-form-row .ua-form-group {
    margin-bottom: 12px;
}

@media (max-width: 380px) {
    .ua-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ----- Searchable State Combobox -------------------------------------------
   .ua-combo wraps a pill-styled text input + popup listbox. The hidden
   #state input is what the form posts; the visible #state-input is for
   filtering. List filters by abbreviation OR full state name. */
.ua-combo {
    position: relative;
}

.ua-combo-input {
    padding-right: 40px !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23737373' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 6l5 5 5-5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 12px 12px !important;
    cursor: pointer;
}

.ua-combo.is-open .ua-combo-input {
    border-color: var(--ua-blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.18);
}

.ua-combo-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--ua-border);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    margin: 0;
    padding: 6px 0;
    max-height: 240px;
    overflow-y: auto;
    list-style: none;
    z-index: 50;
    font-family: var(--ua-font);
}

.ua-combo-list[hidden] { display: none; }

.ua-combo-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 18px;
    cursor: pointer;
    color: var(--ua-ink);
    font-size: 0.92rem;
    font-weight: 400;
}

.ua-combo-list li.is-highlighted,
.ua-combo-list li:hover {
    background: rgba(0, 113, 227, 0.08);
    color: var(--ua-blue);
}

.ua-combo-list li.ua-combo-empty {
    cursor: default;
    color: var(--ua-soft);
    font-style: italic;
    justify-content: center;
}

.ua-combo-list li.ua-combo-empty:hover {
    background: transparent;
}

.ua-combo-name {
    flex: 1;
    text-align: left;
}

.ua-combo-abbr {
    color: var(--ua-soft);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

.ua-combo-list li.is-highlighted .ua-combo-abbr,
.ua-combo-list li:hover .ua-combo-abbr {
    color: var(--ua-blue);
}

.ua-label {
    display: block;
    color: var(--ua-ink);
    font-family: var(--ua-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    /* Align with welcome text (3px border + 17px) and input text (20px
       internal padding) so every label/heading/helper inside the card
       starts at the same x. */
    padding-left: 20px;
}

/* PIN OR ELIGIBILITY ID label keeps the source's green color -- semantic
   "you're on the right path" signal for the entry-point field. Step 2
   labels (email/phone) stay bold black. */
.ua-label--green {
    color: var(--ua-green);
    font-weight: 600;
}

.ua-input {
    width: 100%;
    height: 53px;
    background: var(--ua-bg);
    border: 1px solid var(--ua-border);
    border-radius: 40px;
    padding: 16px 20px;
    font-family: var(--ua-font);
    font-size: 1rem;
    /* Source uses weight 200 (SF Pro Display Ultra-Light). 300 is a touch
       more readable on Windows without losing the thin Apple aesthetic. */
    font-weight: 300;
    color: var(--ua-ink);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.ua-input:focus {
    outline: none;
    border-color: var(--ua-blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.18);
}

.ua-input.is-invalid {
    border-color: #ff3b30;
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.15);
}

.ua-input::placeholder {
    color: #a1a1a6;
    font-weight: 300;
}

.ua-help {
    display: block;
    color: var(--ua-muted);
    font-family: var(--ua-font);
    font-size: 0.75rem;
    font-weight: 300;
    padding: 6px 0 0 20px;
    line-height: 1.4;
}

.ua-error {
    display: none;
    color: #ff3b30;
    font-size: 0.75rem;
    margin-top: 5px;
    padding-left: 20px;
}

.ua-input.is-invalid + .ua-help + .ua-error,
.ua-input.is-invalid ~ .ua-error {
    display: block;
}

.ua-microcopy {
    color: var(--ua-soft);
    font-family: var(--ua-font);
    font-size: 0.75rem;
    font-weight: 300;
    padding: 0 0 0 20px;
    margin: 6px 0 0;
}

.ua-fast-track {
    color: var(--ua-soft-2);
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    margin: 18px 0 0;
}

.ua-fast-track a {
    color: var(--ua-blue);
    text-decoration: none;
    font-weight: 500;
}

.ua-fast-track a:hover { text-decoration: underline; }

/* The .ua-step1-extras wrapper hides the "Check Eligibility" reassurance
   block, disclaimer, OR divider, and "Prefer to Call?" pill once the lead
   advances to step 2. JS toggles the [hidden] attribute. */
.ua-step1-extras[hidden] { display: none; }

/* ============================================================
   Step 2 welcome + consent (matches source stepTwo styling).

   The blue left-bar accent + padding combine to align the
   "Confirmed, thank you" text at the same x as the labels below
   it (border 3px + padding 17px = 20px content offset).
   ============================================================ */
.ua-welcome {
    color: var(--ua-ink);
    font-family: var(--ua-font);
    font-size: 1.15rem;
    font-weight: 200;
    line-height: 1.5;
    letter-spacing: -0.01em;
    padding-left: 17px;
    border-left: 3px solid var(--ua-blue);
    margin-bottom: 4px;
}

.ua-welcome strong {
    font-weight: 700;
    color: var(--ua-ink);
}

.ua-welcome-sub {
    color: #86868b;
    font-family: var(--ua-font);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    padding-left: 20px;
    margin-bottom: 22px;
}

.ua-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 20px;
    margin: 18px 0 4px;
}

.ua-consent-input {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--ua-blue);
    flex-shrink: 0;
    cursor: pointer;
}

.ua-consent-label {
    color: var(--ua-soft);
    font-family: var(--ua-font);
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.ua-consent.is-invalid .ua-consent-label {
    color: #ff3b30;
}

.ua-consent.is-invalid .ua-consent-input {
    outline: 2px solid #ff3b30;
    outline-offset: 2px;
    border-radius: 2px;
}

/* ============================================================
   Primary submit button -- "Check Eligibility".
   ============================================================ */
.ua-submit-btn {
    width: 100%;
    height: 58px;
    background: var(--ua-blue);
    color: #ffffff;
    border: 0;
    border-radius: 30px;
    padding: 18px 24px;
    font-family: var(--ua-font);
    font-size: 1.1rem;
    /* Source button uses weight 200 + letter-spacing 0.352px. We use 400
       so the CTA stays readable on Windows while keeping the Apple feel. */
    font-weight: 400;
    letter-spacing: 0.022em;
    cursor: pointer;
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 6px 14px rgba(0, 113, 227, 0.22);
}

.ua-submit-btn:hover {
    background: var(--ua-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 113, 227, 0.28);
}

.ua-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 113, 227, 0.22);
}

.ua-lock { width: 14px; height: 14px; }

.ua-no-impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--ua-soft);
    font-family: var(--ua-font);
    font-size: 0.78rem;
    font-weight: 300;
    margin-top: 14px;
    text-align: center;
}

.ua-disclaimer {
    color: var(--ua-soft);
    font-family: var(--ua-font);
    font-size: 0.72rem;
    font-weight: 300;
    text-align: center;
    margin-top: 10px;
    line-height: 1.45;
}

/* "OR" divider */
.ua-or-divider {
    position: relative;
    text-align: center;
    margin: 22px 0 14px;
    color: var(--ua-soft);
    font-size: 0.78rem;
    letter-spacing: 1px;
}

.ua-or-divider::before,
.ua-or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background: var(--ua-border);
}

.ua-or-divider::before { left: 0; }
.ua-or-divider::after { right: 0; }

.ua-or-divider span {
    background: transparent;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}

/* Secondary "Prefer to Call?" outlined pill */
.ua-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border: 1px solid var(--ua-border);
    border-radius: 30px;
    background: #ffffff;
    color: var(--ua-ink) !important;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    gap: 6px;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.ua-secondary-btn:hover {
    border-color: var(--ua-blue);
    background: #f9fbff;
    text-decoration: none;
}

.ua-secondary-btn .trackingid { font-weight: 600; }

/* ============================================================
   Availability indicator: flashing green dot + callback number.
   Issue #443 acceptance criterion.
   ============================================================ */
.ua-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--ua-border);
}

.ua-availability-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ua-green);
    box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.55);
    animation: ua-pulse-green 1.6s infinite;
}

.ua-availability-text {
    color: var(--ua-green);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ua-availability-callback {
    text-align: center;
    color: var(--ua-soft);
    font-size: 0.78rem;
    margin-top: 4px;
}

.ua-availability-callback a {
    color: var(--ua-blue);
    font-weight: 600;
    text-decoration: none;
}

.ua-availability-callback a:hover { text-decoration: underline; }

@keyframes ua-pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.55); transform: scale(1); }
    70%  { box-shadow: 0 0 0 10px rgba(0, 182, 122, 0); transform: scale(1.08); }
    100% { box-shadow: 0 0 0 0 rgba(0, 182, 122, 0);   transform: scale(1); }
}

/* ============================================================
   Stats bar: deep navy band of trust metrics.
   ============================================================ */
.ua-stats-bar {
    background: var(--ua-navy);
    padding: 25px 5vw;
}

.ua-stats-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.ua-stat-item {
    flex: 1;
    text-align: center;
    color: #ffffff;
    min-width: 130px;
}

.ua-stat-number {
    font-size: 2.2rem;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
    white-space: nowrap;
}

.ua-stat-label {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ua-stat-stars {
    display: inline-flex;
    gap: 2px;
    margin-bottom: 6px;
}

.ua-stat-stars svg {
    width: 18px;
    height: 18px;
    fill: #ffc83d;
}

/* ============================================================
   Confirmed / success state -- mirrors source #success-msg.
   Used by /thankyou and by the post-submit view.
   ============================================================ */
.ua-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 0 8px;
}

.ua-success-icon {
    color: var(--ua-green);
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 200;
    margin-bottom: 10px;
}

.ua-success-title {
    color: var(--ua-ink);
    font-family: var(--ua-font);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin: 0 0 15px;
}

.ua-success-body {
    color: var(--ua-ink);
    font-family: var(--ua-font);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 20px;
}

.ua-success-body strong {
    color: var(--ua-ink);
    font-weight: 600;
}

.ua-phone-highlight {
    color: var(--ua-blue);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.ua-success-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    background: var(--ua-blue);
    color: #ffffff !important;
    border-radius: 30px;
    font-family: var(--ua-font);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.022em;
    text-decoration: none;
    margin-top: 5px;
    box-shadow: 0 6px 14px rgba(0, 113, 227, 0.22);
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.ua-success-btn:hover {
    background: var(--ua-blue-hover);
    transform: translateY(-1px);
    text-decoration: none;
    color: #ffffff !important;
}

/* ============================================================
   Info section: 3-card row directly above the copyright bar.
   Source: theupwardadvisory.com/offer .info-section / .info-card
   ============================================================ */
.ua-info-section {
    background: #ffffff;
    padding: 80px 5vw;
    text-align: center;
}

.ua-info-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.ua-info-card {
    flex: 1 1 280px;
    max-width: 380px;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
}

.ua-info-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #eaf2ff;
    color: var(--ua-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.ua-info-card h3 {
    color: var(--ua-ink);
    font-family: var(--ua-font);
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}

.ua-info-card p {
    color: var(--ua-ink);
    font-family: var(--ua-font);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   Copyright bar -- minimal gray strip below the info section.
   Source: bg #f5f5f7, color #86868b, padding 40px, center, 0.8rem.
   ============================================================ */
.ua-copyright-bar {
    background: #f5f5f7;
    color: #86868b;
    padding: 40px 20px;
    text-align: center;
    font-family: var(--ua-font);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* ============================================================
   Responsive: tablet (<=991px) and mobile (<=575px).
   Issue #443 mobile requirement: form must be centered and
   visible without excessive scrolling.
   ============================================================ */
@media (max-width: 991px) {
    .ua-hero {
        padding: 100px 4vw 50px;
        min-height: auto;
        background-attachment: scroll;
        /* Serve the small mobile JPG (45 KB vs 146 KB desktop) so 3G/4G
           viewers don't wait on a full-size photo they can't see anyway. */
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.78)),
            url('hero-mobile.jpg');
    }

    .ua-hero-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ua-headline {
        font-size: 2.4rem;
        line-height: 1.1;
        text-align: center;
    }

    .ua-trust-signal {
        justify-content: center;
    }

    .ua-form-wrapper {
        justify-content: center;
    }

    .ua-form-card {
        max-width: 100%;
    }

    .ua-info-section { padding: 56px 4vw; }
    .ua-info-grid    { gap: 28px; }
}

@media (max-width: 575px) {
    .ua-header {
        padding: 10px 16px;
        height: 60px;
    }

    .ua-logo {
        font-size: 1.05rem;
    }

    .ua-call-btn {
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    .ua-hero {
        padding: 80px 4vw 36px;
    }

    .ua-headline {
        font-size: 2rem;
    }

    .ua-trust-signal {
        font-size: 0.78rem;
    }

    .ua-form-card {
        padding: 32px 24px 26px;
        border-radius: 18px;
    }

    .ua-stats-container {
        gap: 18px 12px;
    }

    .ua-stat-item {
        flex: 0 0 calc(50% - 12px);
        min-width: 0;
    }

    .ua-stat-number {
        font-size: 1.6rem;
    }

    .ua-stat-label {
        font-size: 0.7rem;
    }

    .ua-info-section { padding: 44px 6vw; }
    .ua-info-card    { padding: 14px 4px; max-width: 100%; }
    .ua-info-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
    .ua-info-card p  { font-size: 0.9rem; }
    .ua-copyright-bar { padding: 28px 16px; font-size: 0.75rem; }
}
