/* ==========================================================================
   FastAutoQuote v2 — Variant Design System
   All selectors scoped under `.v2-page` so this never affects v1 pages.
   ========================================================================== */

/* Defeat MainLayout's .content top padding (1.1rem from app.css) so v2 pages
   sit flush against the existing site header. */
.content:has(> .v2-page) { padding-top: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }

.v2-page {
    --c-deep: #00487e;
    --c-primary: #0066b3;
    --c-primary-pale: #e6f2ff;
    --c-green: #16a34a;
    --c-green-dark: #15803d;
    --c-text: #1f2937;
    --c-text-muted: #6b7280;
    --c-text-light: #9ca3af;
    --c-border: #e5e7eb;
    --c-border-light: #f3f4f6;
    --c-bg: #f9fafb;
    --c-bg-stage: #f5f7fa;
    --c-white: #ffffff;
    --c-error: #dc2626;

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 72, 126, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 72, 126, 0.10);

    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--c-text);
    background: var(--c-bg-stage);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

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

.v2-page h1, .v2-page h2, .v2-page h3, .v2-page h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--c-deep);
    margin: 0;
    line-height: 1.2;
}
.v2-page p { margin: 0; }
.v2-page button { font-family: inherit; cursor: pointer; }
.v2-page a { color: var(--c-primary); text-decoration: none; }

/* Layout shell */
.v2-shell { display: flex; flex-direction: column; min-height: 100vh; }
.v2-main { flex: 1; width: 100%; max-width: 460px; margin: 0 auto; padding: 16px; }
@media (min-width: 1024px) {
    .v2-page { background: linear-gradient(180deg, var(--c-primary-pale) 0%, var(--c-bg-stage) 280px) !important; }
}

/* Header */
.v2-header {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}
.v2-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.v2-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--c-deep);
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.v2-logo__mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--c-deep), var(--c-primary));
    color: var(--c-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.v2-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--c-green), var(--c-green-dark));
    color: var(--c-white);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: var(--r-md);
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.25);
    transition: transform 0.15s, box-shadow 0.15s;
}
.v2-phone-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(22, 163, 74, 0.35); color: #fff; }
.v2-phone-pill svg { width: 14px; height: 14px; }

/* Stage progress bar */
.v2-stage-bar {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 14px 16px 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}
.v2-stage-bar__current { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.v2-stage-bar__current-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--c-deep); }
.v2-stage-bar__pct { font-size: 12px; color: var(--c-text-muted); font-weight: 600; }
.v2-stage-bar__track { height: 8px; background: var(--c-border-light); border-radius: var(--r-pill); overflow: hidden; position: relative; }
.v2-stage-bar__fill { height: 100%; background: linear-gradient(90deg, var(--c-primary), var(--c-deep)); border-radius: var(--r-pill); transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.v2-stage-bar__stages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin-top: 10px; }
.v2-stage-bar__stage { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.v2-stage-bar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-border); transition: background 0.3s; }
.v2-stage-bar__stage.is-done .v2-stage-bar__dot { background: var(--c-green); }
.v2-stage-bar__stage.is-active .v2-stage-bar__dot { background: var(--c-deep); box-shadow: 0 0 0 3px rgba(0, 72, 126, 0.15); }
.v2-stage-bar__stage-label { font-size: 10px; color: var(--c-text-light); text-align: center; font-weight: 600; letter-spacing: 0.02em; }
.v2-stage-bar__stage.is-done .v2-stage-bar__stage-label,
.v2-stage-bar__stage.is-active .v2-stage-bar__stage-label { color: var(--c-deep); }

/* Trust strip */
.v2-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 8px 12px;
    margin-bottom: 16px;
    color: var(--c-text-muted);
    font-size: 13px;
}
.v2-trust-strip__item { display: inline-flex; align-items: center; gap: 6px; }
.v2-trust-strip__item svg { width: 14px; height: 14px; color: var(--c-green); flex-shrink: 0; }
.v2-trust-strip__divider { width: 1px; height: 14px; background: var(--c-border); }

/* Form card */
.v2-form-card {
    background: var(--c-white);
    border-radius: var(--r-lg);
    padding: 36px 28px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
}
.v2-form-card__title { font-size: 22px; font-weight: 700; text-align: center; margin: 0 0 40px !important; line-height: 1.4; }
.v2-form-card__subtitle { font-size: 15px; color: var(--c-text); text-align: center; margin: 0 0 40px; line-height: 1.6; max-width: 480px; margin-left: auto; margin-right: auto; }
.v2-form-card__subtitle strong, .v2-form-card__subtitle em { color: var(--c-green-dark); font-weight: 700; font-style: normal; }
.v2-form-card__section { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--c-border-light); }
.v2-form-card__section:first-of-type { margin-top: 32px; padding-top: 0; border-top: 0; }
.v2-form-card__section-label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: var(--c-text-muted); margin-bottom: 8px; letter-spacing: 0; text-transform: none; }
.v2-show-more { background: none; border: none; color: var(--c-primary); font-weight: 600; font-size: 14px; padding: 12px 0 0; cursor: pointer; }

/* Inputs */
.v2-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    color: var(--c-text);
    background: var(--c-white);
    border: 2px solid var(--c-border);
    border-radius: var(--r-md);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.v2-input:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.12); }
.v2-input::placeholder { color: var(--c-text-light); }

/* Defeat global app.css validation styles that add valid/invalid icons + outlines */
.v2-page input.valid,
.v2-page input.invalid,
.v2-page input.modified,
.v2-page .v2-input.valid,
.v2-page .v2-input.invalid,
.v2-page .v2-input.modified {
    background-image: none !important;
    padding-right: 16px !important;
    outline: none !important;
}
.v2-page input.valid.modified:not([type=checkbox]),
.v2-page .v2-input.valid.modified {
    border-color: var(--c-border) !important;
}
.v2-page input.invalid:not([type=checkbox]):not([type=radio]),
.v2-page .v2-input.invalid {
    border-color: var(--c-error) !important;
}

/* Input row + label */
.v2-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .v2-input-row { grid-template-columns: 1fr; } }
.v2-input-label { display: block; font-size: 13px; font-weight: 600; color: var(--c-text); margin-bottom: 6px; }

/* DOB three-dropdown row (EverQuote-style) */
.v2-dob-selects {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 8px;
    max-width: 360px;
    margin: 8px auto 0;
}
.v2-dob-select {
    width: 100%;
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--c-text);
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
    text-align: center;
    font-family: inherit;
    cursor: pointer;
}
.v2-dob-select:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.12); }
.v2-dob-select:invalid, .v2-dob-select option[value=""] { color: var(--c-text-light); }

/* DOB three-input row (legacy — keeping for backwards compat in case used elsewhere) */
.v2-dob-row {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 320px;
    margin: 0 auto;
    justify-content: center;
}
.v2-dob-input {
    width: 5ch;
    padding: 14px 8px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    font-family: inherit;
    color: var(--c-text);
    background: var(--c-white);
    border: 2px solid var(--c-border);
    border-radius: var(--r-md);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    -moz-appearance: textfield;
}
.v2-dob-input--year { width: 8ch; }
.v2-dob-input::-webkit-outer-spin-button,
.v2-dob-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.v2-dob-input:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.12); }
.v2-dob-input::placeholder { color: var(--c-text-light); font-weight: 400; }
.v2-dob-sep { color: var(--c-text-light); font-size: 22px; font-weight: 300; }

/* TCPA disclosure block */
.v2-disclosure {
    margin-top: 16px;
    padding: 12px 14px;
    background: var(--c-bg-stage);
    border-radius: var(--r-sm);
    font-size: 11px;
    line-height: 1.5;
    color: var(--c-text-muted);
}
.v2-disclosure a { color: var(--c-primary); text-decoration: underline; }

/* Buttons green variant */
.v2-btn--green { background: linear-gradient(135deg, var(--c-green), var(--c-green-dark)); color: var(--c-white); box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25); }
.v2-btn--green:hover { transform: translateY(-1px); color: #fff; }
.v2-btn--green:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Option buttons */
.v2-options { display: grid; gap: 10px; }
.v2-options.cols-2 { grid-template-columns: repeat(2, 1fr); }
.v2-options.cols-3 { grid-template-columns: repeat(3, 1fr); }
.v2-options.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* QW-style stacked full-width Y/N — white card, tall buttons, soft shadow for depth */
.v2-options--qw { grid-template-columns: 1fr !important; gap: 12px; }
.v2-options--qw .v2-option {
    min-height: 64px;
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    color: var(--c-text);
    font-size: 17px;
    font-weight: 600;
    padding: 20px 16px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: all 0.15s ease;
}
.v2-options--qw .v2-option:hover {
    border-color: var(--c-primary);
    background: var(--c-primary-pale);
    box-shadow: 0 4px 12px rgba(0, 102, 179, 0.12), 0 2px 4px rgba(0, 102, 179, 0.08);
    transform: translateY(-1px);
}
.v2-options--qw .v2-option.is-selected {
    background: var(--c-primary-pale);
    border-color: var(--c-primary);
    box-shadow: 0 0 0 2px var(--c-primary), 0 4px 12px rgba(0, 102, 179, 0.15);
}

/* Section label — bolder, navy with subtle accent line */
.v2-options--qw + .v2-form-card__section-label,
.v2-form-card__section > .v2-form-card__section-label {
    color: var(--c-deep);
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 12px;
}
.v2-option {
    position: relative;
    border: 2px solid var(--c-border);
    background: var(--c-white);
    border-radius: var(--r-md);
    padding: 14px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--c-text);
    transition: all 0.15s;
    min-height: 56px;
    max-height: 96px;
    cursor: pointer;
    font-family: inherit;
}
.v2-option:hover { border-color: var(--c-primary); background: var(--c-primary-pale); transform: translateY(-1px); }
.v2-option.is-selected { border-color: var(--c-primary); background: var(--c-primary-pale); box-shadow: 0 0 0 1px var(--c-primary); }
.v2-option--disabled { background: var(--c-bg-stage); color: var(--c-text-muted); border-style: dashed; }

/* Option with logo (vehicle make picker) */
.v2-option--logo { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 12px 8px; min-height: 96px; }
.v2-make-logo { width: 56px; height: 40px; object-fit: contain; }
.v2-make-label { font-size: 13px; font-weight: 600; color: var(--c-text); }
@media (max-width: 480px) {
    .v2-make-logo { width: 44px; height: 32px; }
    .v2-make-label { font-size: 12px; }
}

/* Carrier image variant */
.v2-carrier-img {
    height: 32px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.15s;
}
.v2-carrier-img:hover { opacity: 1; }
@media (max-width: 480px) {
    .v2-carrier-img { height: 26px; max-width: 100px; }
}

/* v3 — QuoteWizard-style progress (compact: X% • Stage Name) */
.v3-progress {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 12px 14px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}
.v3-progress__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--c-deep);
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}
.v3-progress__label .pct { color: var(--c-green); }
.v3-progress__label .sep { color: var(--c-text-light); margin: 0 5px; font-weight: 400; }
.v3-progress__label .stage { color: var(--c-text-muted); font-weight: 600; }
.v3-progress__track { height: 6px; background: var(--c-border-light); border-radius: var(--r-pill); overflow: hidden; }
.v3-progress__fill { height: 100%; background: linear-gradient(90deg, var(--c-green), var(--c-green-dark)); border-radius: var(--r-pill); transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

/* Reassurance pill */
.v2-reassure {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 10px 12px;
    background: var(--c-primary-pale);
    border-radius: var(--r-md);
    font-size: 12px;
    color: var(--c-deep);
    line-height: 1.5;
}
.v2-reassure svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--c-primary); }

/* Coverage card variant (left-aligned, name + desc) */
.v2-coverage-card { padding: 16px 16px; text-align: left; min-height: auto; }
.v2-coverage-card__body { display: block; }
.v2-coverage-card__name { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--c-deep); margin-bottom: 2px; }
.v2-coverage-card__desc { display: block; font-size: 13px; color: var(--c-text-muted); line-height: 1.5; font-weight: 400; }

/* Option badge — sits INSIDE the card, top-right corner (no overflow above) */
.v2-option__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    left: auto;
    transform: none;
    background: var(--c-green);
    color: var(--c-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(22, 163, 74, 0.3);
}
.v2-option__badge--popular { background: var(--c-deep); box-shadow: 0 1px 3px rgba(0, 72, 126, 0.3); }

/* Make room for the corner badge inside the card */
.v2-option:has(.v2-option__badge) { padding-top: 16px; }
.v2-option.v2-coverage-card:has(.v2-option__badge) { padding-top: 18px; }

/* Savings tag — compact green pill in top-right corner of qualifying options */
.v2-savings-tag {
    position: absolute;
    top: 6px;
    right: 6px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--c-green);
    color: var(--c-white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 7px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(22, 163, 74, 0.35);
    pointer-events: none;
    z-index: 1;
}
.v2-savings-tag svg { width: 9px; height: 9px; }
/* Push button content down so tag doesn't overlap label */
.v2-option:has(.v2-savings-tag) { padding-top: 24px; }
.v2-option.v2-coverage-card:has(.v2-savings-tag) { padding-top: 30px; }

/* Buttons */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: var(--r-md);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    line-height: 1;
    min-height: 52px;
}
.v2-btn--primary { background: linear-gradient(135deg, var(--c-primary), var(--c-deep)); color: var(--c-white); box-shadow: var(--shadow-md); }
.v2-btn--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); color: #fff; }
.v2-btn--primary:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.v2-btn--lg { padding: 18px 32px; font-size: 18px; min-height: 60px; }
.v2-btn--block { width: 100%; }

.v2-btn-row { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; gap: 12px; }
.v2-btn-row__back { background: none; border: none; color: var(--c-text-muted); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; }
.v2-btn-row__back:hover { color: var(--c-deep); }

/* Hero (landing) */
.v2-hero { background: linear-gradient(180deg, var(--c-primary-pale) 0%, var(--c-white) 100%); padding: 72px 16px 80px; text-align: center; display: flex; justify-content: center; }
.v2-hero__inner { max-width: 720px; width: 100%; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.v2-hero__inner > * { width: 100%; }
.v2-hero__title { font-size: 32px; font-weight: 800; line-height: 1.2; color: var(--c-deep); text-wrap: balance; margin: 0 0 48px !important; }
.v2-hero__title em { font-style: normal; color: var(--c-green-dark); }
.v2-hero__subtitle { font-size: 16px; color: var(--c-text-muted); max-width: 540px; margin: 0 auto 72px !important; line-height: 1.7; text-wrap: balance; }
.v2-hero__subtitle strong { color: var(--c-deep); }

.v2-zip-form { background: var(--c-white); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.05); border: 1px solid var(--c-border); max-width: 540px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.v2-zip-form__row { display: flex; gap: 12px; }
.v2-zip-form__row .v2-input { flex: 1; font-size: 18px; padding: 18px; text-align: center; font-weight: 600; }
.v2-zip-form__row .v2-btn { white-space: nowrap; }
.v2-error { color: var(--c-error); font-size: 13px; text-align: center; margin: 4px 0 0; }
@media (max-width: 480px) {
    .v2-zip-form__row { flex-direction: column; }
}
@media (min-width: 600px) {
    .v2-hero { padding: 80px 16px 60px; }
    .v2-hero__title { font-size: 44px; }
    .v2-hero__subtitle { font-size: 18px; }
}

/* Carrier strip */
.v2-carrier-strip { background: var(--c-white); padding: 48px 16px 56px; text-align: center; }
.v2-carrier-strip__label { font-size: 14px; color: var(--c-text-muted); margin: 0 0 48px !important; font-weight: 500; letter-spacing: 0.01em; }
.v2-carrier-strip__label strong { color: var(--c-deep); font-weight: 700; }
.v2-carrier-strip__row { max-width: 800px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 44px; opacity: 0.95; }
.v2-carrier-strip__logo { height: 28px; display: inline-flex; align-items: center; justify-content: center; color: var(--c-text-muted); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: -0.01em; padding: 0 8px; }

/* Stat strip */
.v2-stat-strip { background: var(--c-bg-stage); padding: 32px 16px; text-align: center; }
.v2-stat-strip__headline { font-size: 15px; font-weight: 600; color: var(--c-text); margin-bottom: 20px; }
.v2-stat-strip__headline strong { color: var(--c-deep); }
.v2-stat-strip__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 36px; }
.v2-stat-strip__badge { display: inline-flex; align-items: center; gap: 8px; color: var(--c-text); font-size: 14px; font-weight: 600; }
.v2-stat-strip__badge svg { color: var(--c-primary); width: 22px; height: 22px; }

/* v2 footer */
.v2-footer { background: #1f2937; color: #d1d5db; padding: 24px 16px; font-size: 11px; line-height: 1.6; margin-top: 32px; }
.v2-footer__inner { max-width: 900px; margin: 0 auto; }
.v2-footer p { margin-bottom: 12px; }
.v2-footer__links { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.v2-footer__links a { color: #9ca3af; }
