:root {
    --ink: #20262d;
    --ink-soft: #34404b;
    --blue: #1984b4;
    --blue-dark: #11688f;
    --blue-pale: #edf8fc;
    --yellow: #ffc400;
    --yellow-dark: #dfa900;
    --purple: #575993;
    --pink: #f06d9a;
    --green: #15825c;
    --red: #b63845;
    --paper: #ffffff;
    --canvas: #f3f6f8;
    --line: #dbe3e8;
    --muted: #687783;
    --shadow: 0 20px 55px rgba(26, 42, 55, .09);
    --radius: 18px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--canvas);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--canvas); color: var(--ink); font-size: 16px; }
button, input, select { font: inherit; }
button, label, select { -webkit-tap-highlight-color: transparent; }
a { color: var(--blue-dark); }
[hidden] { display: none !important; }

.site-header {
    min-height: 68px;
    padding: 12px max(24px, calc((100vw - 1180px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    background: #252a2f;
    border-bottom: 3px solid var(--yellow);
}
.brand { min-height: 38px; display: inline-flex; align-items: center; color: #fff; text-decoration: none; }
.brand img { display: block; width: 160px; max-width: 100%; height: auto; }
.header-trust { color: #dce5e9; font-size: 13px; font-weight: 650; text-align: right; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: #4fd29c; box-shadow: 0 0 0 4px rgba(79, 210, 156, .14); }

.page-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 36px 0 70px; }
.hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; margin-bottom: 28px; }
.hero > div { max-width: 700px; }
.eyebrow, .mini-label { display: block; color: var(--blue-dark); font-size: 11px; font-weight: 850; letter-spacing: .13em; }
.hero h1 { max-width: 680px; margin: 8px 0 10px; font-size: clamp(30px, 4vw, 49px); line-height: 1.06; letter-spacing: -.035em; }
.hero p { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.steps { min-width: 360px; margin: 0; padding: 0; display: flex; list-style: none; color: #89959e; font-size: 12px; font-weight: 750; }
.steps li { position: relative; flex: 1; display: grid; justify-items: center; gap: 7px; white-space: nowrap; }
.steps li:not(:last-child)::after { content: ""; position: absolute; top: 15px; left: calc(50% + 21px); right: calc(-50% + 21px); height: 2px; background: var(--line); }
.steps button { position: relative; z-index: 1; padding: 0 5px; display: grid; justify-items: center; gap: 7px; cursor: pointer; color: inherit; background: transparent; border: 0; font: inherit; }
.steps button:disabled { cursor: default; }
.steps strong { font-size: 12px; }
.steps span { position: relative; z-index: 1; display: grid; place-items: center; width: 31px; height: 31px; color: #677681; background: #fff; border: 2px solid var(--line); border-radius: 50%; }
.steps .active { color: var(--blue-dark); }
.steps .active span { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 0 0 5px rgba(25, 132, 180, .12); }
.steps .completed span { color: #fff; background: var(--green); border-color: var(--green); }
.steps li.completed:not(:last-child)::after { background: var(--green); }

.notice { margin: 0 0 18px; padding: 14px 17px; border: 1px solid; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.notice-warning { color: #604b00; background: #fff7d6; border-color: #efd776; }
.notice-error { color: #822631; background: #fff0f2; border-color: #efb7bd; }
.loading-card { min-height: 190px; display: grid; place-items: center; align-content: center; gap: 14px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.spinner { width: 32px; height: 32px; border: 3px solid #d9e8ef; border-top-color: var(--blue); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.order-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; align-items: start; gap: 24px; }
.form-column { min-width: 0; display: grid; gap: 18px; }
.panel, .summary-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 38px rgba(28, 48, 61, .06); }
.panel { padding: 24px; overflow: hidden; }
.panel-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.panel-heading h2 { margin: 0 0 4px; font-size: 20px; letter-spacing: -.015em; }
.panel-heading p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.section-number { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; color: var(--blue-dark); background: var(--blue-pale); border-radius: 11px; font-size: 12px; font-weight: 850; }

.product-highlight { margin: 0 -24px; padding: 22px 24px; background: linear-gradient(110deg, #eaf7fc, #f8fbfc); border-block: 1px solid #d5eaf3; }
.product-highlight h3 { margin: 5px 0 5px; font-size: 24px; }
.product-highlight p { max-width: 650px; margin: 0; color: #526874; font-size: 15px; line-height: 1.55; }
.plan-benefits { margin: 0 -24px 22px; padding: 17px 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; background: #fff; border-bottom: 1px solid #e0e8ec; }
.plan-benefit { min-width: 0; padding: 11px; display: flex; align-items: center; gap: 10px; background: #f7fafb; border: 1px solid #e4ebef; border-radius: 12px; }
.plan-benefit > span:last-child { min-width: 0; display: grid; gap: 2px; }
.plan-benefit strong { font-size: 13px; }
.plan-benefit small { color: var(--muted); font-size: 11px; line-height: 1.35; }

select, input { width: 100%; min-height: 48px; padding: 10px 13px; color: var(--ink); background: #fff; border: 1.5px solid #9eafb9; border-radius: 9px; outline: none; transition: border-color .16s, box-shadow .16s, background .16s; }
select:hover, input:hover { border-color: #9fb3be; }
select:focus, input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(25, 132, 180, .12); }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 3px rgba(182, 56, 69, .1); }
.field { display: grid; align-content: start; gap: 7px; min-width: 0; color: #34434e; font-size: 14px; font-weight: 720; }
.field em { color: var(--muted); font-style: normal; font-weight: 500; }
.field small { color: var(--muted); font-size: 12px; font-weight: 500; line-height: 1.45; }
.field-error { color: var(--red) !important; }
.field-grid { display: grid; gap: 16px; }
.field-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.span-two { grid-column: 1 / -1; }
.divider-label { position: relative; margin: 24px 0 18px; text-align: center; }
.divider-label::before { content: ""; position: absolute; inset: 50% 0 auto; border-top: 1px solid var(--line); }
.divider-label span { position: relative; padding: 0 13px; color: #7b8a94; background: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.choice-grid { display: grid; gap: 10px; }
.cycle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.choice-card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "badges badges" "title monthly" "total monthly" "saving free"; align-items: center; gap: 8px 14px; min-height: 155px; padding: 20px; cursor: pointer; background: linear-gradient(135deg, #fff, #f8fafb); border: 1.5px solid #cdd9df; border-radius: 15px; transition: .17s ease; }
.choice-card:hover { border-color: #75b8d4; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(30, 86, 111, .09); }
.choice-card.selected { background: linear-gradient(135deg, #e8f7fc, #f7fcfe); border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue), 0 12px 28px rgba(25, 132, 180, .12); }
.choice-card input { position: absolute; width: 1px; height: 1px; min-height: 0; opacity: 0; }
.choice-badges { grid-area: badges; min-height: 24px; display: flex; flex-wrap: wrap; gap: 6px; }
.cycle-badge { width: fit-content; padding: 5px 8px; color: #fff; background: var(--purple); border-radius: 6px; font-size: 10px; font-weight: 850; letter-spacing: .03em; text-transform: uppercase; }
.cycle-badge.best { color: #225940; background: #dff6eb; }
.choice-title { grid-area: title; font-size: 16px; font-weight: 850; }
.choice-monthly { grid-area: monthly; align-self: center; color: #102f3e; font-size: 25px; font-weight: 920; letter-spacing: -.035em; white-space: nowrap; }
.choice-total { grid-area: total; color: #566b77; font-size: 13px; line-height: 1.4; }
.choice-saving { grid-area: saving; color: var(--green); font-size: 13px; font-weight: 850; }
.free-domain-pill { grid-area: free; justify-self: end; width: fit-content; padding: 7px 10px; color: #604900; background: #fff0a8; border: 1px solid #efd773; border-radius: 7px; font-size: 12px; font-weight: 850; white-space: nowrap; }
.recommendation-card { margin-top: 16px; padding: 17px 18px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 14px; color: #244c5f; background: linear-gradient(100deg, #e4f6fc, #f6fbfd); border: 1px solid #aedceb; border-radius: 14px; }
.recommendation-icon { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: linear-gradient(135deg, var(--blue), #26a4d5); border-radius: 12px; font-size: 19px; font-weight: 900; }
.recommendation-copy { display: grid; gap: 3px; }
.recommendation-copy strong { font-size: 15px; }
.recommendation-copy small { color: #526d79; font-size: 13px; line-height: 1.5; }
.recommendation-action { min-height: 40px; padding: 8px 13px; cursor: pointer; color: #fff; background: var(--blue); border: 0; border-radius: 8px; font-size: 12px; font-weight: 850; }

.segmented { width: fit-content; max-width: 100%; margin-bottom: 18px; padding: 4px; display: flex; gap: 3px; background: #eef2f4; border-radius: 11px; }
.segment { min-height: 42px; padding: 9px 16px; cursor: pointer; color: #596c77; background: transparent; border: 0; border-radius: 8px; font-size: 14px; font-weight: 780; }
.segment.active { color: #fff; background: var(--blue); box-shadow: 0 5px 15px rgba(25, 132, 180, .24); }
.segmented.compact { margin-left: auto; }
.domain-mode-grid { width: 100%; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; background: transparent; }
.domain-mode { min-height: 86px; padding: 13px; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 10px; color: #4c606b; text-align: left; background: #fff; border: 1.5px solid #bac8d0; border-radius: 12px; }
.domain-mode:hover { border-color: #73b5d0; }
.domain-mode.active { color: #163e51; background: #e9f7fc; border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.domain-mode-mark { display: grid; place-items: center; width: 34px; height: 34px; color: var(--blue-dark); background: #e1f3fa; border-radius: 10px; font-size: 18px; font-weight: 900; }
.domain-mode.active .domain-mode-mark { color: #fff; background: var(--blue); }
.domain-mode > span:last-child { display: grid; gap: 3px; }
.domain-mode strong { font-size: 13px; }
.domain-mode small { color: #71818a; font-size: 11px; line-height: 1.35; }
.domain-mode.active small { color: #4e7181; }
.domain-row { display: grid; grid-template-columns: minmax(240px, 1fr) 190px auto; align-items: end; gap: 11px; }
.period-field { min-width: 190px; }
.button { min-height: 46px; padding: 11px 17px; cursor: pointer; border: 0; border-radius: 9px; font-weight: 820; transition: transform .15s, box-shadow .15s, background .15s; }
.button:hover:not(:disabled) { transform: translateY(-1px); }
.button:disabled { cursor: not-allowed; opacity: .58; }
.button-secondary { color: #fff; background: var(--blue); box-shadow: 0 7px 18px rgba(25, 132, 180, .18); }
.button-secondary:hover:not(:disabled) { background: var(--blue-dark); }
.button-primary { color: #2d2600; background: var(--yellow); box-shadow: 0 10px 25px rgba(255, 196, 0, .25); }
.button-primary:hover:not(:disabled) { background: #ffd02e; }
.button-full { width: 100%; min-height: 54px; font-size: 15px; }
.inline-result { margin-top: 13px; padding: 12px 14px; color: #2d5264; background: #edf8fc; border-radius: 9px; font-size: 14px; line-height: 1.5; }
.inline-result.success { color: #0d6848; background: #e8f8f1; }
.inline-result.error { color: #8a2935; background: #fff0f2; }
.free-domain-banner { margin: -2px 0 16px; padding: 14px 16px; color: #604b00; background: linear-gradient(100deg, #fff1ad, #fff9dd); border: 1px solid #e4cb56; border-radius: 11px; font-size: 14px; font-weight: 800; line-height: 1.5; }
#domain-section { position: relative; z-index: 3; overflow: visible; }
#epp-wrap { margin-top: 16px; }
.check-grid { margin-top: 17px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.check-grid .check-line { min-height: 56px; padding: 12px; align-items: center; background: #f7fafb; border: 1px solid #dce5e9; border-radius: 10px; }
.domain-addon-card { display: grid !important; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center !important; gap: 11px; min-height: 78px !important; }
.domain-addon-copy { min-width: 0; display: grid; align-content: center; gap: 4px; }
.domain-addon-copy strong { color: #173b4d; font-size: 13px; line-height: 1.3; }
.domain-addon-copy small { color: #506b78; font-size: 12px; font-weight: 750; white-space: nowrap; }
.help-tip { position: relative; display: inline-grid; place-items: center; width: 19px; height: 19px; color: #fff; background: var(--blue); border-radius: 50%; outline: none; font-size: 11px; font-weight: 900; }
.help-tip::before { content: "?"; }
.help-tip::after { content: attr(data-tooltip); position: absolute; z-index: 50; right: 0; left: auto; bottom: calc(100% + 9px); width: min(240px, calc(100vw - 56px)); padding: 10px 11px; color: #fff; background: #23313a; border-radius: 8px; box-shadow: 0 10px 25px rgba(0,0,0,.18); font-size: 11px; font-weight: 600; line-height: 1.45; opacity: 0; pointer-events: none; transform: translateY(4px); transition: .15s ease; }
.help-tip:hover::after, .help-tip:focus::after { opacity: 1; transform: translateY(0); }
.domain-addon-card:first-child .help-tip::after { right: auto; left: 0; }
.domain-addon-card:nth-child(2) .help-tip::after { right: 50%; left: auto; transform: translate(50%, 4px); }
.domain-addon-card:nth-child(2) .help-tip:hover::after, .domain-addon-card:nth-child(2) .help-tip:focus::after { transform: translate(50%, 0); }

.client-session { margin-bottom: 18px; padding: 15px 16px; display: flex; align-items: center; gap: 12px; color: #18593f; background: #eaf8f2; border: 1px solid #a9dec6; border-radius: 11px; line-height: 1.5; }
.client-session-icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: var(--green); border-radius: 11px; font-size: 19px; font-weight: 900; }
.client-session-copy { min-width: 0; flex: 1; display: grid; gap: 1px; }
.client-session-copy strong { color: #164d39; font-size: 15px; }
.client-session-copy small { color: #47705f; font-size: 12px; overflow-wrap: anywhere; }
.client-session-copy em { margin-top: 3px; color: #226248; font-size: 12px; font-style: normal; font-weight: 700; }
.client-session-logout { flex: 0 0 auto; min-height: 34px; padding: 6px 10px; cursor: pointer; color: #27644d; background: rgba(255,255,255,.72); border: 1px solid #9ed3bb; border-radius: 8px; font-size: 12px; font-weight: 800; white-space: nowrap; }
.client-session-logout:hover { color: #fff; background: #267657; border-color: #267657; }
.client-session-logout:disabled { cursor: wait; opacity: .65; }
.login-pane { padding: 18px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 12px; background: #f7fafb; border: 1px solid var(--line); border-radius: 12px; }
.login-pane .text-link { grid-column: 1 / -1; font-size: 12px; }
.login-pane .inline-result { grid-column: 1 / -1; margin: 0; }
.password-reset-toggle { width: fit-content; min-height: 0; padding: 0; justify-self: start; cursor: pointer; color: var(--blue-dark); background: transparent; border: 0; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.password-reset-toggle:disabled { cursor: default; opacity: .55; }
.password-reset-pane { grid-column: 1 / -1; padding: 15px; display: grid; gap: 12px; background: #fff; border: 1px solid #cbdde6; border-radius: 11px; box-shadow: 0 8px 20px rgba(24, 63, 81, .06); }
.password-reset-copy { display: grid; gap: 3px; }
.password-reset-copy strong { color: #173e51; font-size: 14px; }
.password-reset-copy small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.password-reset-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 10px; }
.password-reset-row .button { min-width: 150px; }
.password-reset-fallback { width: fit-content; color: #526d79; font-size: 11px; font-weight: 700; }
.required-note { margin: 0 0 15px; color: #5f717c; font-size: 14px; }
.required-note span { padding: 5px 8px; color: #156144; background: #e3f7ed; border-radius: 6px; font-weight: 850; }
.compact-country { max-width: calc(50% - 8px); }
.optional-fields { margin-top: 18px; overflow: hidden; border: 1px solid #d8e2e7; border-radius: 12px; }
.optional-fields > summary { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; list-style: none; background: #f7fafb; }
.optional-fields > summary::-webkit-details-marker { display: none; }
.optional-fields > summary > span { display: grid; gap: 2px; }
.optional-fields > summary strong { font-size: 14px; }
.optional-fields > summary small { color: var(--muted); font-size: 11px; }
.optional-fields > summary em { color: var(--blue-dark); font-size: 12px; font-style: normal; font-weight: 850; }
.optional-fields[open] > summary { border-bottom: 1px solid #d8e2e7; }
.optional-fields[open] > summary em { font-size: 0; }
.optional-fields[open] > summary em::after { content: "Gizle"; font-size: 12px; }
.optional-fields-body { padding: 16px; }
.custom-fields-body:not(:empty) { padding-top: 0; }

.option-stack { display: grid; gap: 14px; }
.extras-panel { padding: 0; overflow: hidden; border-color: #aac0cb; }
.extras-summary { padding: 21px 22px; display: flex; align-items: center; justify-content: space-between; gap: 15px; cursor: pointer; list-style: none; color: #fff; background: linear-gradient(112deg, #173c4e 0%, #21566d 60%, #28738e 100%); }
.extras-summary::-webkit-details-marker { display: none; }
.extras-summary::before { content: "✦"; flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; color: #123b4d; background: linear-gradient(145deg, #f6d76d, #ffb763); border-radius: 13px; box-shadow: 0 7px 18px rgba(2, 28, 40, .24); font-size: 20px; }
.extras-summary > span { display: grid; flex: 1; gap: 3px; }
.extras-summary strong { font-size: 18px; letter-spacing: -.01em; }
.extras-summary small { color: #d8edf5; font-size: 13px; }
.extras-summary em { padding: 7px 10px; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; font-size: 12px; font-style: normal; font-weight: 850; }
.extras-panel[open] .extras-summary { border-bottom: 1px solid #8daab7; }
.extras-panel[open] .extras-summary em { font-size: 0; }
.extras-panel[open] .extras-summary em::after { content: "Gizle"; font-size: 11px; }
.extras-panel .option-stack, .extras-panel .addon-grid { padding: 20px 22px 23px; background: #dce8ed; }
.option-row { display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(210px, 36%); align-items: center; gap: 17px; min-height: 102px; padding: 18px; background: linear-gradient(112deg, #c8dfe9, #e7f0f4); border: 1.5px solid #9dbdcb; border-radius: 15px; box-shadow: 0 6px 15px rgba(22, 62, 80, .07); transition: .17s ease; }
.option-row:nth-child(even) { background: linear-gradient(112deg, #d6d8ec, #ececf5); border-color: #b4b5d1; }
.option-row:hover, .option-row:focus-within { border-color: #3a8eae; box-shadow: 0 10px 22px rgba(22, 62, 80, .13); transform: translateY(-1px); }
.option-row h3 { margin: 0 0 5px; color: #13384a; font-size: 17px; }
.option-row p { margin: 0; color: #405d6b; font-size: 13px; line-height: 1.45; }
.option-row select, .option-row input[type="number"] { background-color: rgba(255,255,255,.9); border-color: #7294a4; font-weight: 750; }
.addon-grid { display: grid; gap: 12px; }
.addon-card { position: relative; display: grid; grid-template-columns: auto auto minmax(0, 1fr) auto; align-items: center; gap: 16px; min-height: 100px; padding: 17px 18px; cursor: pointer; background: linear-gradient(112deg, #c9e1e9, #e8f1f4); border: 1.5px solid #9ebdca; border-radius: 15px; box-shadow: 0 6px 15px rgba(22, 62, 80, .07); transition: .17s ease; }
.addon-card:nth-child(2n) { background: linear-gradient(112deg, #d5deec, #edf1f7); border-color: #aebdce; }
.addon-card:nth-child(3n) { background: linear-gradient(112deg, #d6e5d8, #edf4ee); border-color: #abc5b0; }
.addon-card:hover { border-color: #398eae; transform: translateY(-1px); box-shadow: 0 10px 22px rgba(22, 62, 80, .13); }
.addon-card.selected { background: linear-gradient(112deg, #bfe4ef, #e3f4f8); border-color: #1880aa; box-shadow: inset 0 0 0 1px #1880aa, 0 9px 20px rgba(24, 128, 170, .13); }
.addon-card input { appearance: none; position: relative; width: 24px; height: 24px; min-height: 0; padding: 0; background: #fff; border: 2px solid #668897; border-radius: 7px; cursor: pointer; }
.addon-card input:checked { background: var(--blue); border-color: var(--blue); }
.addon-card input:checked::after { content: ""; position: absolute; top: 3px; left: 7px; width: 6px; height: 11px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.addon-copy strong { display: block; margin-bottom: 5px; color: #14394b; font-size: 17px; }
.addon-copy span { color: #405e6c; font-size: 13px; line-height: 1.48; }
.addon-price { color: #123c50; text-align: right; font-size: 16px; font-weight: 900; }
.addon-price small { display: block; margin-top: 3px; color: var(--muted); font-weight: 600; }
.visual-icon { flex: 0 0 auto; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; }
.visual-icon svg { width: 23px; height: 23px; }
.tone-blue { color: #176f99; background: #dff2fa; }
.tone-cyan { color: #087b8a; background: #daf5f5; }
.tone-green { color: #16734f; background: #def5e9; }
.tone-purple { color: #5b4e9b; background: #eae7fb; }
.tone-amber { color: #8a5b00; background: #fff0c7; }
.option-row .visual-icon, .addon-card .visual-icon { position: relative; width: 60px; height: 60px; overflow: hidden; color: #fff; border: 1px solid rgba(255,255,255,.55); border-radius: 17px; box-shadow: 0 9px 20px rgba(17, 53, 70, .2), inset 0 1px 0 rgba(255,255,255,.32); }
.option-row .visual-icon::before, .addon-card .visual-icon::before { content: ""; position: absolute; width: 34px; height: 34px; top: -12px; right: -9px; background: rgba(255,255,255,.25); border-radius: 50%; }
.option-row .visual-icon svg, .addon-card .visual-icon svg { position: relative; width: 30px; height: 30px; stroke-width: 1.8; filter: drop-shadow(0 2px 2px rgba(0,0,0,.12)); }
.option-row .tone-blue, .addon-card .tone-blue { background: linear-gradient(145deg, #1684b4, #145b8d); }
.option-row .tone-cyan, .addon-card .tone-cyan { background: linear-gradient(145deg, #12aeb2, #087580); }
.option-row .tone-green, .addon-card .tone-green { background: linear-gradient(145deg, #38a978, #17704f); }
.option-row .tone-purple, .addon-card .tone-purple { background: linear-gradient(145deg, #856fd0, #534094); }
.option-row .tone-amber, .addon-card .tone-amber { background: linear-gradient(145deg, #f2b545, #bb7020); }
.option-row .brand-google { color: transparent; background: #fff; border-color: #bdcbd1; }
.option-row .brand-google svg { display: none; }
.option-row .brand-google::after { content: "G"; position: relative; z-index: 1; font-family: Arial, sans-serif; font-size: 36px; font-weight: 900; line-height: 1; background: conic-gradient(from -42deg, #4285f4 0 25%, #34a853 0 43%, #fbbc05 0 67%, #ea4335 0 82%, #4285f4 0); -webkit-background-clip: text; background-clip: text; color: transparent; }

.payment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.payment-card { position: relative; min-height: 108px; padding: 17px 18px; display: grid; grid-template-columns: auto auto minmax(0, 1fr); align-items: center; gap: 15px; cursor: pointer; background: linear-gradient(112deg, #c9e1e9, #e8f1f4); border: 1.5px solid #9ebdca; border-radius: 15px; box-shadow: 0 6px 15px rgba(22, 62, 80, .07); transition: .17s ease; }
.payment-card:nth-child(2n) { background: linear-gradient(112deg, #efe1bd, #faf4e5); border-color: #d2bd83; }
.payment-card:hover { border-color: #398eae; transform: translateY(-1px); box-shadow: 0 10px 22px rgba(22, 62, 80, .13); }
.payment-card:nth-child(2n):hover { border-color: #c0912d; }
.payment-card.selected { background: linear-gradient(112deg, #bfe4ef, #e3f4f8); border-color: #1880aa; box-shadow: inset 0 0 0 1px #1880aa, 0 9px 20px rgba(24, 128, 170, .13); }
.payment-card:nth-child(2n).selected { background: linear-gradient(112deg, #f1d797, #fff4d9); border-color: #ba8421; box-shadow: inset 0 0 0 1px #ba8421, 0 9px 20px rgba(138, 91, 0, .13); }
.payment-card input { appearance: none; position: relative; width: 24px; height: 24px; min-height: 0; padding: 0; cursor: pointer; background: #fff; border: 2px solid #668897; border-radius: 50%; }
.payment-card input:checked { border: 7px solid var(--blue); }
.payment-card:nth-child(2n) input:checked { border-color: #b77912; }
.payment-card strong { display: block; margin-bottom: 5px; color: #14394b; font-size: 16px; }
.payment-card small { color: #405e6c; font-size: 13px; line-height: 1.45; }
.payment-icon { position: relative; width: 60px; height: 60px; overflow: hidden; color: #fff; border: 1px solid rgba(255,255,255,.55); border-radius: 17px; box-shadow: 0 9px 20px rgba(17, 53, 70, .2), inset 0 1px 0 rgba(255,255,255,.32); }
.payment-icon::before { content: ""; position: absolute; width: 34px; height: 34px; top: -12px; right: -9px; background: rgba(255,255,255,.25); border-radius: 50%; }
.payment-icon svg { position: relative; width: 30px; height: 30px; stroke-width: 1.8; filter: drop-shadow(0 2px 2px rgba(0,0,0,.12)); }
.payment-card .payment-icon.tone-blue { background: linear-gradient(145deg, #1684b4, #145b8d); }
.payment-card .payment-icon.tone-amber { background: linear-gradient(145deg, #f2b545, #ad681c); }
.payment-details { margin-top: 14px; }
.payment-pane { padding: 18px; background: linear-gradient(120deg, #f7fafb, #fff); border: 1px solid #d7e2e8; border-radius: 14px; }
.payment-pane-heading { margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.payment-pane-heading > div:first-child { display: grid; gap: 3px; }
.payment-pane-heading strong { font-size: 16px; }
.payment-pane-heading small { color: var(--muted); font-size: 12px; line-height: 1.4; }
.card-brands { display: flex; align-items: center; gap: 7px; }
.card-brands > span { height: 28px; padding: 0 7px; display: grid; place-items: center; background: #fff; border: 1px solid #d5dfe4; border-radius: 6px; font-size: 9px; font-weight: 900; }
.visa-mark { color: #153c83; font-style: italic; }
.bonus-mark { color: #20804e; }
.mc-mark { min-width: 42px; grid-template-columns: repeat(2, 15px); gap: -3px; }
.mc-mark i { width: 17px; height: 17px; border-radius: 50%; background: #eb4b36; }
.mc-mark i + i { margin-left: -6px; background: #f3a626; opacity: .9; }
.card-field-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.card-field-grid .span-two { grid-column: 1 / -1; }
.direct-payment-note { margin: 14px 0 0; color: #4c6672; font-size: 12px; line-height: 1.5; }
.bank-pane-heading { margin-bottom: 14px; display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.bank-pane-heading > div { display: grid; gap: 3px; }
.bank-pane-heading strong { font-size: 16px; }
.bank-pane-heading small { color: var(--muted); font-size: 12px; line-height: 1.4; }
.bank-pane-heading a { flex: 0 0 auto; color: var(--blue-dark); font-size: 11px; font-weight: 800; text-decoration: none; }
.bank-account-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.bank-account-card { min-width: 0; padding: 15px; background: #fff; border: 1px solid #d3e0e6; border-radius: 12px; }
.bank-account-logo { min-height: 42px; margin-bottom: 11px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.bank-account-logo img { max-width: 122px; height: 36px; object-fit: contain; object-position: left center; }
.currency-badge { padding: 6px 9px; color: #fff; border-radius: 7px; font-size: 12px; font-weight: 950; letter-spacing: .06em; box-shadow: 0 3px 9px rgba(24, 61, 77, .12); }
.currency-badge.try { color: #fff; background: #16734f; }
.currency-badge.usd { color: #fff; background: #166d98; }
.bank-account-card > strong { display: block; color: #153d50; font-size: 15px; }
.bank-account-card > small { display: block; margin-top: 4px; color: #5c707b; font-size: 12px; line-height: 1.4; }
.bank-recipient-line { margin: 12px 0 0; padding: 9px 0; display: grid; gap: 3px; border-block: 1px dashed #dbe3e8; }
.bank-recipient-line span, .iban > span { color: #6f808a; font-size: 10px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.bank-recipient-line strong { color: #234a5c; font-size: 12px; }
.iban { margin: 10px 0 0; display: grid; gap: 5px; }
.iban > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 7px; }
.iban code { color: #183d4e; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; font-weight: 800; line-height: 1.5; overflow-wrap: anywhere; }
.iban-copy { position: relative; width: 34px; min-height: 34px; padding: 0; display: inline-grid; place-items: center; cursor: pointer; color: #176b91; background: #e7f5fa; border: 1px solid #b8dce9; border-radius: 7px; }
.iban-copy:hover { background: #d9eef6; }
.iban-copy.copied { color: #166a4c; background: #e1f5eb; border-color: #adddc8; }
.iban-copy svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.iban-copy::after { content: attr(data-tooltip); position: absolute; z-index: 20; right: 0; bottom: calc(100% + 7px); padding: 6px 8px; color: #fff; background: #23313a; border-radius: 6px; box-shadow: 0 7px 18px rgba(0,0,0,.16); font-size: 10px; font-weight: 750; line-height: 1; white-space: nowrap; opacity: 0; pointer-events: none; transform: translateY(3px); transition: .14s ease; }
.iban-copy:hover::after, .iban-copy:focus-visible::after { opacity: 1; transform: translateY(0); }
.bank-transfer-note { margin: 11px 0 0; padding: 11px 13px; color: #485f6b; background: #eef5f7; border-radius: 9px; font-size: 12px; font-weight: 650; line-height: 1.45; }
.password-input-wrap { position: relative; }
.password-input-wrap input { padding-right: 48px; }
.password-toggle { position: absolute; top: 50%; right: 7px; width: 36px; height: 36px; padding: 0; display: grid; place-items: center; cursor: pointer; color: #617681; background: transparent; border: 0; border-radius: 8px; transform: translateY(-50%); }
.password-toggle:hover, .password-toggle:focus-visible { color: var(--blue-dark); background: #eaf4f8; outline: none; }
.password-toggle svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.password-toggle .eye-closed { display: none; }
.password-toggle.is-visible .eye-open { display: none; }
.password-toggle.is-visible .eye-closed { display: block; }
.password-strength { display: grid; gap: 6px; }
.password-strength-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.password-strength-head small { font-size: 10px; }
.password-strength-head strong { color: var(--muted); font-size: 11px; }
.password-meter { height: 5px; overflow: hidden; background: #e4e9ec; border-radius: 99px; }
.password-meter i { display: block; width: 0; height: 100%; background: #aab5bb; border-radius: inherit; transition: width .18s ease, background .18s ease; }
.password-strength[data-state="weak"] .password-strength-head strong, .password-strength[data-state="weak"] > small { color: var(--red); }
.password-strength[data-state="weak"] .password-meter i { background: var(--red); }
.password-strength[data-state="medium"] .password-strength-head strong { color: #a36605; }
.password-strength[data-state="medium"] .password-meter i { background: #dfa52d; }
.password-strength[data-state="medium"] > small, .password-strength[data-state="strong"] > small { color: #267054; }
.password-strength[data-state="strong"] .password-strength-head strong { color: var(--green); }
.password-strength[data-state="strong"] .password-meter i { background: var(--green); }
.password-confirm-feedback { color: var(--red) !important; }
.check-line { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; color: #52616c; font-size: 13px; line-height: 1.5; }
.check-line input { flex: 0 0 auto; width: 18px; height: 18px; min-height: 0; margin-top: 1px; accent-color: var(--blue); }
.marketing-line { margin-top: 24px; padding-top: 16px; border-top: 1px dashed var(--line); }
.tos-line { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }

.summary-column { position: sticky; top: 18px; min-width: 0; }
.summary-card { overflow: hidden; }
.summary-top { padding: 22px 22px 18px; display: flex; justify-content: space-between; align-items: start; gap: 12px; color: #fff; background: linear-gradient(125deg, #20262d, #303b45); }
.summary-top .mini-label { color: #8fd8f5; }
.summary-top h2 { margin: 5px 0 0; font-size: 21px; }
.secure-chip { padding: 6px 8px; color: #def8ed; background: rgba(38, 195, 137, .14); border: 1px solid rgba(99, 226, 179, .28); border-radius: 99px; font-size: 10px; font-weight: 800; white-space: nowrap; }
.summary-lines { max-height: 330px; overflow: auto; padding: 9px 21px; }
.summary-line { padding: 12px 0; display: flex; justify-content: space-between; gap: 15px; border-bottom: 1px dashed #dbe3e8; font-size: 13px; line-height: 1.45; }
.summary-line:last-child { border-bottom: 0; }
.summary-line span:first-child { color: #556773; }
.summary-line strong { flex: 0 0 auto; font-size: 13px; }
.summary-price { flex: 0 0 auto; display: grid; justify-items: end; gap: 2px; }
.summary-price del { color: #8b98a0; font-size: 10px; }
.summary-price .free-price { color: var(--green); }
.promo-box { margin: 5px 21px 15px; padding: 15px; background: linear-gradient(135deg, #f5f2ff, #fff); border: 1px solid #d8d2f0; border-radius: 12px; }
.promo-box > .promo-highlight { margin: -3px -3px 14px; padding: 10px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 9px; color: #185d42; background: linear-gradient(100deg, #dcf7e9, #effbf5); border: 1px solid #afe3ca; border-radius: 9px; }
.promo-star { flex: 0 0 auto; width: 31px; height: 31px; display: grid; place-items: center; color: #fff; background: var(--green); border-radius: 8px; font-size: 16px; }
.promo-highlight-copy { min-width: 0; display: grid; gap: 2px; }
.promo-highlight strong { font-size: 13px; }
.promo-highlight small { color: #39715d; font-size: 11px; line-height: 1.35; }
.promo-percent-badge { min-width: 71px; padding: 7px 8px 6px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #1b9a68, #116346); border: 1px solid rgba(8, 86, 56, .2); border-radius: 9px; box-shadow: 0 6px 14px rgba(17, 99, 70, .2); line-height: 1; }
.promo-percent-badge strong { color: #fff; font-size: 27px; font-weight: 950; letter-spacing: -.04em; }
.promo-percent-badge small { margin-top: 3px; color: #e3fff4; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.promo-box label { display: block; margin-bottom: 7px; color: #494b79; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.promo-box > div { display: flex; }
.promo-box input { min-height: 42px; border-radius: 8px 0 0 8px; border-color: #c5c2df; text-transform: uppercase; }
.promo-box button { padding: 0 12px; cursor: pointer; color: #fff; background: var(--purple); border: 0; border-radius: 0 8px 8px 0; font-size: 11px; font-weight: 800; }
.promo-box p { min-height: 0; margin: 8px 0 0; color: #535684; font-size: 12px; font-weight: 700; line-height: 1.4; }
.totals { margin: 0; padding: 0 21px 18px; }
.totals > div { padding: 8px 0; display: flex; justify-content: space-between; gap: 20px; color: #55646f; font-size: 14px; }
.totals dt, .totals dd { margin: 0; }
.totals dd { font-weight: 800; }
.totals .discount { color: var(--green); }
.totals .savings-row { margin: 4px -8px; padding: 10px 8px; color: #146447; background: #e8f8f1; border-radius: 8px; font-weight: 850; }
.totals .grand-total { margin-top: 7px; padding-top: 16px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 0 16px; color: var(--ink); border-top: 1px solid var(--line); font-size: 16px; }
.grand-total dt { padding-top: 1px; font-size: 20px; font-weight: 850; line-height: 1.1; letter-spacing: -.015em; }
.grand-total-usd { color: var(--blue-dark); font-size: 34px; line-height: .95; letter-spacing: -.025em; text-align: right; }
.total-divider { grid-column: 1 / -1; margin: 10px 0 9px; border-top: 1px dashed #dbe3e8; }
.grand-total .try-total-label { padding: 1px 0 0; align-self: center; color: #70818b; font-size: 11px; font-weight: 800; line-height: 1.2; text-transform: uppercase; letter-spacing: .04em; }
.try-total-value { align-self: center; color: #405b69; font-size: 16px; font-weight: 850; line-height: 1.2; text-align: right; }
.summary-card > .button { width: calc(100% - 42px); margin: 0 21px; }
.order-submit-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; background: linear-gradient(180deg, #20aa70, #128451); box-shadow: 0 8px 17px rgba(18, 132, 81, .23); transition: transform .15s, box-shadow .15s, background .15s, opacity .15s; }
.order-submit-button:hover:not(:disabled), .order-submit-button:focus-visible { color: #fff; background: linear-gradient(180deg, #1b9d66, #0e7547); box-shadow: 0 10px 21px rgba(18, 132, 81, .3); }
.order-submit-button.is-processing { color: #fff; background: linear-gradient(180deg, #1b9d66, #0e7547); box-shadow: 0 10px 21px rgba(18, 132, 81, .3); opacity: 1; }
.order-submit-button.is-processing:disabled { cursor: wait; opacity: 1; }
.order-button-spinner { flex: 0 0 auto; width: 19px; height: 19px; border: 2.5px solid rgba(255,255,255,.42); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.order-status { width: calc(100% - 42px); margin: 10px 21px 0; padding: 11px 12px; display: flex; align-items: flex-start; gap: 9px; border: 1px solid; border-radius: 9px; font-size: 12px; font-weight: 700; line-height: 1.45; }
.order-status-mark { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 1px; display: grid; place-items: center; border-radius: 50%; }
.order-status.processing { color: #20526a; background: #eaf7fc; border-color: #b9deed; }
.order-status.processing .order-status-mark { border: 2px solid #86bfd7; border-top-color: var(--blue-dark); animation: spin .8s linear infinite; }
.order-status.error { color: #842e39; background: #fff0f2; border-color: #efb7bd; }
.order-status.error .order-status-mark { color: #fff; background: var(--red); }
.order-status.error .order-status-mark::before { content: "!"; font-size: 11px; font-weight: 900; }
.assurance-list { margin: 0 21px 16px; display: grid; gap: 8px; }
.assurance-item { padding: 10px; display: flex; align-items: center; gap: 10px; color: #344b57; background: #f7fafb; border: 1px solid #e0e8ec; border-radius: 10px; text-decoration: none; }
.assurance-item > span:last-child { display: grid; gap: 2px; }
.assurance-item strong { font-size: 12px; }
.assurance-item small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.assurance-icon { flex: 0 0 auto; width: 35px; height: 35px; display: grid; place-items: center; border-radius: 9px; font-size: 12px; font-weight: 900; }
.assurance-item.refund .assurance-icon { color: #176a4b; background: #dff5e9; font-size: 18px; }
.assurance-item.uptime .assurance-icon { color: #176d92; background: #def1f8; }
.assurance-item.support .assurance-icon { color: #5c4e99; background: #eae7fa; }
.payment-note { margin: 13px 22px; color: var(--muted); font-size: 11px; line-height: 1.45; text-align: center; }
.trust-row { padding: 13px 15px; display: flex; justify-content: center; gap: 8px; background: #f7f9fa; border-top: 1px solid var(--line); }
.trust-row span { padding: 5px 7px; color: #61717c; background: #fff; border: 1px solid #dbe3e8; border-radius: 6px; font-size: 9px; font-weight: 800; }
.step-navigation { padding: 16px 18px; display: grid; grid-template-columns: minmax(90px, auto) 1fr minmax(190px, auto); align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 10px 30px rgba(28, 48, 61, .06); }
.step-navigation > span { color: var(--muted); font-size: 12px; font-weight: 750; text-align: center; }
.step-navigation #step-back { grid-column: 1; }
.step-navigation #step-caption { grid-column: 2; }
.step-navigation #step-next { grid-column: 3; }
.button-ghost { color: #4c5e69; background: #eef2f4; }

footer { padding: 26px max(24px, calc((100vw - 1180px) / 2)); display: flex; justify-content: space-between; gap: 20px; color: #bac4ca; background: #252a2f; font-size: 12px; }
footer a { color: #fff; text-decoration: none; }

@media (max-width: 1000px) {
    .hero { align-items: start; flex-direction: column; }
    .steps { width: min(100%, 440px); min-width: 0; }
    .order-layout { grid-template-columns: minmax(0, 1fr) 320px; }
    .choice-card { grid-template-columns: 1fr; grid-template-areas: "badges" "title" "monthly" "total" "saving" "free"; }
    .free-domain-pill { justify-self: start; }
}

@media (max-width: 820px) {
    .site-header { align-items: flex-start; }
    .header-trust { max-width: 210px; }
    .page-shell { width: min(100% - 24px, 700px); padding-top: 25px; }
    .hero h1 { font-size: 34px; }
    .hero p { font-size: 15px; }
    .order-layout { display: flex; flex-direction: column; }
    .form-column, .summary-column { width: 100%; }
    .summary-column { position: static; }
    .summary-lines { max-height: 220px; }
}

@media (max-width: 590px) {
    .site-header { min-height: 62px; padding: 10px 14px; }
    .brand img { width: 128px; }
    .header-trust { max-width: 165px; font-size: 10px; line-height: 1.4; }
    .page-shell { width: calc(100% - 18px); padding: 20px 0 45px; }
    .hero { gap: 24px; }
    .hero h1 { font-size: 30px; }
    .steps { font-size: 10px; }
    .steps li:not(:last-child)::after { left: calc(50% + 17px); right: calc(-50% + 17px); }
    .steps span { width: 28px; height: 28px; }
    .panel { padding: 18px 15px; border-radius: 14px; }
    .panel-heading { align-items: flex-start; margin-bottom: 18px; }
    .panel-heading h2 { font-size: 18px; }
    .product-highlight { margin-inline: -15px; padding: 17px 15px; flex-direction: column; gap: 15px; }
    .plan-benefits { margin-inline: -15px; padding: 13px 15px; }
    .cycle-grid, .field-grid.two, .payment-grid, .check-grid { grid-template-columns: 1fr; }
    .span-two { grid-column: auto; }
    .segmented { width: 100%; overflow-x: auto; }
    .segment { flex: 1; padding-inline: 10px; white-space: nowrap; }
    .domain-mode-grid { grid-template-columns: 1fr; overflow: visible; }
    .domain-mode { min-height: 66px; white-space: normal; }
    .domain-row { grid-template-columns: 1fr 1fr; align-items: stretch; }
    .domain-row .grow { grid-column: 1 / -1; }
    .period-field { min-width: 0; }
    .domain-row .button { align-self: end; }
    .login-pane { grid-template-columns: 1fr; }
    .client-session { align-items: flex-start; flex-wrap: wrap; }
    .client-session-logout { margin-left: 50px; }
    .password-reset-row { grid-template-columns: 1fr; }
    .password-reset-row .button { width: 100%; }
    .option-row { grid-template-columns: auto minmax(0, 1fr); gap: 11px; }
    .option-row > :last-child { grid-column: 1 / -1; }
    .addon-card { grid-template-columns: auto auto minmax(0, 1fr); }
    .addon-price { grid-column: 3; text-align: left; }
    .compact-country { max-width: none; }
    .plan-benefit { padding: 8px 4px; flex-direction: column; text-align: center; }
    .plan-benefit small { display: none; }
    .plan-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .payment-pane-heading { align-items: flex-start; flex-direction: column; }
    .bank-account-grid { grid-template-columns: 1fr; }
    .bank-account-logo img { max-width: 145px; }
    .domain-addon-card { grid-template-columns: auto minmax(0, 1fr) auto; }
    #domain-section .domain-addon-card .help-tip::after { right: 0; left: auto; transform: translateY(4px); }
    #domain-section .domain-addon-card .help-tip:hover::after, #domain-section .domain-addon-card .help-tip:focus::after { transform: translateY(0); }
    .recommendation-card { grid-template-columns: auto 1fr; }
    .recommendation-action { grid-column: 1 / -1; width: 100%; }
    .step-navigation { position: sticky; z-index: 5; bottom: 8px; grid-template-columns: auto 1fr; padding: 10px; }
    .step-navigation.final-step { position: static; }
    .step-navigation > span { display: none; }
    .step-navigation #step-back { grid-column: 1; }
    .step-navigation #step-next { grid-column: 2; }
    .step-navigation .button { width: 100%; }
    .steps strong { max-width: 78px; overflow: hidden; text-overflow: ellipsis; }
    footer { flex-direction: column; align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
