:root {
    --tools-navy: #12375b;
    --tools-navy-deep: #0b2741;
    --tools-blue: #2367a2;
    --tools-sky: #eaf5ff;
    --tools-green: #16745c;
    --tools-green-soft: #e9f8f2;
    --tools-red: #bd413a;
    --tools-red-soft: #fff0ee;
    --tools-gold: #a96d12;
    --tools-gold-soft: #fff7e5;
    --tools-ink: #142033;
    --tools-muted: #607086;
    --tools-line: #dce5ed;
    --tools-surface: #ffffff;
    --tools-page: #f5f8fb;
    --tools-shadow: 0 18px 48px rgba(21, 52, 82, .1);
}

.tools-page {
    margin: 0;
    background: var(--tools-page);
    color: var(--tools-ink);
}

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

.tools-page main {
    overflow: hidden;
}

.tools-page button,
.tools-page input {
    font: inherit;
}

.tools-page button,
.tools-page a {
    -webkit-tap-highlight-color: transparent;
}

.tools-page button:focus-visible,
.tools-page a:focus-visible,
.tools-page input:focus-visible {
    outline: 3px solid rgba(35, 103, 162, .28);
    outline-offset: 3px;
}

.tools-hero {
    position: relative;
    padding: 68px 0 60px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(98, 179, 225, .28), transparent 25%),
        radial-gradient(circle at 72% 105%, rgba(238, 196, 90, .18), transparent 31%),
        linear-gradient(135deg, #0b2945 0%, #144b75 58%, #206c8c 100%);
    color: #fff;
}

.tools-hero::before,
.tools-hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.tools-hero::before {
    width: 360px;
    height: 360px;
    right: -90px;
    top: -170px;
}

.tools-hero::after {
    width: 190px;
    height: 190px;
    right: 14%;
    bottom: -130px;
}

.tools-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 52px;
    align-items: center;
}

.tools-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    color: #d7edff;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
}

.tools-hero h1 {
    max-width: 760px;
    margin: 18px 0 16px;
    color: #fff;
    font-size: clamp(35px, 5vw, 58px);
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.tools-hero-copy > p {
    max-width: 690px;
    margin: 0;
    color: #d7e5f1;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.8;
}

.tools-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.tools-trust-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .11);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.tools-trust-row span::before {
    content: "✓";
    margin-right: 7px;
    color: #8ce1be;
    font-weight: 950;
}

.tools-hero-note {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 18px;
    background: rgba(8, 35, 58, .56);
    box-shadow: 0 20px 45px rgba(4, 20, 35, .2);
    backdrop-filter: blur(12px);
}

.tools-hero-note strong {
    display: block;
    color: #fff1b8;
    font-size: 17px;
    font-weight: 900;
}

.tools-hero-note p {
    margin: 10px 0 17px;
    color: #d7e5f1;
    font-size: 14px;
    line-height: 1.75;
}

.tools-hero-note a {
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.tools-entry-section {
    padding: 58px 0 48px;
    background: #fff;
}

.tools-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.tools-section-heading span,
.tool-panel-head > div > span,
.tools-final-card > div > span {
    color: var(--tools-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
}

.tools-section-heading h2 {
    margin: 5px 0 0;
    color: var(--tools-ink);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 950;
    line-height: 1.25;
    letter-spacing: -.025em;
}

.tools-entry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.tool-entry {
    position: relative;
    display: grid;
    min-height: 194px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--tools-line);
    border-radius: 17px;
    background: #fff;
    color: var(--tools-ink);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tool-entry:hover {
    transform: translateY(-3px);
    border-color: #b8cad9;
    box-shadow: 0 14px 30px rgba(26, 57, 86, .09);
}

.tool-entry::after {
    content: "→";
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: currentColor;
    font-size: 19px;
    font-weight: 900;
}

.tool-entry-number {
    position: absolute;
    top: 17px;
    right: 18px;
    color: #9eacb9;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.tool-entry-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    border-radius: 14px;
    background: var(--tools-sky);
    color: var(--tools-blue);
    font-size: 18px;
    font-weight: 950;
}

.tool-entry--red .tool-entry-icon { background: var(--tools-red-soft); color: var(--tools-red); }
.tool-entry--green .tool-entry-icon { background: var(--tools-green-soft); color: var(--tools-green); }
.tool-entry--gold .tool-entry-icon { background: var(--tools-gold-soft); color: var(--tools-gold); }

.tool-entry strong {
    align-self: end;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.35;
}

.tool-entry small {
    max-width: 84%;
    margin-top: 5px;
    color: var(--tools-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.55;
}

.tools-local-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 15px 17px;
    border-radius: 12px;
    background: #f0f6fb;
    color: #456078;
}

.tools-local-notice > span {
    flex: 0 0 auto;
    margin-top: 1px;
}

.tools-local-notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.tools-local-notice strong { color: var(--tools-navy); }

.tool-section {
    scroll-margin-top: 18px;
    padding: 32px 0;
}

.tool-section--calculator { background: #f5f8fb; }
.tool-section--fraud { background: #eef4f8; }
.tool-section--direction { background: #f5f8fb; }
.tool-section--compare { background: #eef4f8; padding-bottom: 58px; }

.tool-panel {
    overflow: hidden;
    border: 1px solid var(--tools-line);
    border-radius: 22px;
    background: var(--tools-surface);
    box-shadow: var(--tools-shadow);
}

.tool-panel-head {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 31px 34px 28px;
    border-bottom: 1px solid var(--tools-line);
    background: linear-gradient(135deg, #fff 0%, #f3f8fc 100%);
}

.tool-panel-index {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: var(--tools-navy);
    color: #fff;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: .04em;
}

.tool-section--fraud .tool-panel-index { background: var(--tools-red); }
.tool-section--direction .tool-panel-index { background: var(--tools-green); }
.tool-section--compare .tool-panel-index { background: var(--tools-gold); }

.tool-panel-head h2 {
    margin: 4px 0 7px;
    color: var(--tools-ink);
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.tool-panel-head p {
    margin: 0;
    color: var(--tools-muted);
    font-size: 14px;
    line-height: 1.7;
}

.tool-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr);
    gap: 28px;
    padding: 32px 34px 36px;
}

.tool-workspace--wide {
    grid-template-columns: 1fr;
}

.tool-form {
    align-self: start;
    min-width: 0;
}

.tool-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tool-field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.tool-field > span:first-child {
    color: #34465a;
    font-size: 13px;
    font-weight: 850;
}

.tool-field > input,
.tool-input-wrap {
    width: 100%;
    min-height: 49px;
    border: 1px solid #c9d5df;
    border-radius: 11px;
    background: #fff;
}

.tool-field > input {
    padding: 0 14px;
    color: var(--tools-ink);
    font-size: 15px;
    font-weight: 700;
}

.tool-input-wrap {
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.tool-input-wrap:focus-within {
    border-color: var(--tools-blue);
    box-shadow: 0 0 0 3px rgba(35, 103, 162, .12);
}

.tool-input-wrap b {
    flex: 0 0 auto;
    padding: 0 12px;
    color: #6f7f90;
    font-size: 12px;
    font-weight: 850;
}

.tool-input-wrap input {
    width: 100%;
    min-width: 0;
    height: 47px;
    padding: 0 12px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--tools-ink);
    font-size: 16px;
    font-weight: 750;
}

.tool-field-help {
    margin: 15px 0 0;
    padding-left: 11px;
    border-left: 3px solid #b5c8d8;
    color: var(--tools-muted);
    font-size: 12px;
    line-height: 1.65;
}

.tool-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.tool-primary-button,
.tool-secondary-button,
.tool-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
}

.tool-primary-button {
    border: 1px solid var(--tools-navy);
    background: var(--tools-navy);
    color: #fff;
}

.tool-primary-button:hover { background: var(--tools-navy-deep); }
.tool-primary-button--danger { border-color: var(--tools-red); background: var(--tools-red); }
.tool-primary-button--danger:hover { background: #a8322d; }
.tool-primary-button--green { border-color: var(--tools-green); background: var(--tools-green); }
.tool-primary-button--green:hover { background: #0e604b; }
.tool-primary-button--gold { border-color: var(--tools-gold); background: var(--tools-gold); }
.tool-primary-button--gold:hover { background: #8e5705; }

.tool-secondary-button {
    border: 1px solid #c9d5df;
    background: #fff;
    color: #43576b;
}

.tool-text-link {
    color: var(--tools-blue);
    text-decoration: none;
}

.tool-text-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.tool-form-error {
    margin: 14px 0 0;
    padding: 11px 13px;
    border-radius: 9px;
    background: #fff0ee;
    color: #9d302b;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.6;
}

.tool-result {
    align-self: stretch;
    min-width: 0;
    padding: 24px;
    border: 1px solid #cfe0ec;
    border-radius: 16px;
    background: #f4f9fd;
}

.tool-result[hidden] { display: none; }

.tool-result-label {
    color: var(--tools-blue);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
}

.calculator-main-metric {
    padding-bottom: 20px;
    border-bottom: 1px solid #d6e4ee;
}

.calculator-main-metric span,
.calculator-main-metric small {
    display: block;
    color: var(--tools-muted);
    font-size: 12px;
    font-weight: 750;
}

.calculator-main-metric strong {
    display: block;
    margin: 6px 0;
    color: var(--tools-navy);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.calculator-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 14px 0 0;
    overflow: hidden;
    border: 1px solid #dbe6ee;
    border-radius: 12px;
    background: #dbe6ee;
}

.calculator-metrics div {
    padding: 14px;
    background: #fff;
}

.calculator-metrics dt {
    color: var(--tools-muted);
    font-size: 11px;
    font-weight: 750;
}

.calculator-metrics dd {
    margin: 5px 0 0;
    color: var(--tools-ink);
    font-size: 15px;
    font-weight: 900;
}

.tool-result-warning {
    margin-top: 17px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff7e5;
    color: #75501a;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.7;
}

.fraud-fieldset,
.direction-question,
.compare-plan {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.fraud-fieldset legend {
    margin-bottom: 13px;
    color: #34465a;
    font-size: 14px;
    font-weight: 900;
}

.fraud-option {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    margin-top: 9px;
    padding: 14px;
    border: 1px solid #d9e2e9;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease;
}

.fraud-option:hover,
.fraud-option:has(input:checked) {
    border-color: #db8781;
    background: #fff7f6;
}

.fraud-option input {
    width: 19px;
    height: 19px;
    margin: 2px 0 0;
    accent-color: var(--tools-red);
}

.fraud-option strong,
.fraud-option small {
    display: block;
}

.fraud-option strong {
    color: #2c3a49;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.55;
}

.fraud-option small {
    margin-top: 3px;
    color: #718092;
    font-size: 11px;
    line-height: 1.55;
}

.fraud-result {
    border-color: #ead1ce;
    background: #fff8f7;
}

.fraud-result-badge {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eaf6f0;
    color: #146249;
    font-size: 12px;
    font-weight: 900;
}

.fraud-result.is-warning .fraud-result-badge { background: #fff0d8; color: #8d5b0d; }
.fraud-result.is-danger .fraud-result-badge { background: #ffe3e0; color: #a62f29; }

.fraud-result h3,
.direction-result h3,
.compare-result h3 {
    margin: 13px 0 8px;
    color: var(--tools-ink);
    font-size: 23px;
    font-weight: 950;
    line-height: 1.3;
}

.fraud-result > p,
.direction-result > p,
.compare-result > p {
    margin: 0;
    color: var(--tools-muted);
    font-size: 13px;
    line-height: 1.75;
}

.fraud-result ul,
.direction-result ol {
    margin: 17px 0 0;
    padding-left: 22px;
    color: #34465a;
}

.fraud-result li,
.direction-result li {
    margin: 8px 0;
    padding-left: 3px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.65;
}

.fraud-result-links {
    display: grid;
    gap: 8px;
    margin-top: 19px;
}

.fraud-result-links a,
.direction-result-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 9px;
    background: var(--tools-red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.fraud-result-links a + a {
    border: 1px solid #e5c2be;
    background: #fff;
    color: #9d302b;
}

.direction-form {
    display: grid;
    gap: 23px;
}

.direction-question legend {
    margin-bottom: 11px;
    color: #34465a;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.5;
}

.direction-question legend b {
    display: inline-grid;
    place-items: center;
    width: 25px;
    height: 25px;
    margin-right: 7px;
    border-radius: 8px;
    background: var(--tools-green-soft);
    color: var(--tools-green);
    font-size: 12px;
}

.direction-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.direction-options--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.direction-options label {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.direction-options input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.direction-options span {
    display: flex;
    align-items: center;
    min-height: 45px;
    padding: 10px 12px;
    border: 1px solid #d5e0e7;
    border-radius: 10px;
    background: #fff;
    color: #445568;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.direction-options input:focus-visible + span {
    outline: 3px solid rgba(22, 116, 92, .2);
    outline-offset: 2px;
}

.direction-options input:checked + span {
    border-color: var(--tools-green);
    background: var(--tools-green-soft);
    color: #0e604b;
}

.direction-result {
    border-color: #c9e5da;
    background: #f2fbf7;
}

.direction-result ol {
    counter-reset: direction-step;
    padding: 0;
    list-style: none;
}

.direction-result li {
    position: relative;
    min-height: 36px;
    margin: 12px 0;
    padding: 0 0 0 43px;
}

.direction-result li::before {
    counter-increment: direction-step;
    content: counter(direction-step);
    position: absolute;
    left: 0;
    top: -2px;
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 9px;
    background: var(--tools-green);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
}

.direction-result-cta {
    display: grid;
    gap: 8px;
    margin: 20px 0 15px;
}

.direction-result-cta a { background: var(--tools-green); }
.direction-result-cta a + a { border: 1px solid #bcdacf; background: #fff; color: var(--tools-green); }

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

.compare-plan {
    display: grid;
    gap: 13px;
    padding: 20px;
    border: 1px solid #d8e1e8;
    border-radius: 15px;
    background: #f9fbfd;
}

.compare-plan legend {
    float: left;
    width: 100%;
    margin-bottom: 13px;
    color: var(--tools-gold);
    font-size: 17px;
    font-weight: 950;
}

.compare-plan legend + * { clear: both; }

.compare-result {
    border-color: #ead9b8;
    background: #fffaf0;
}

.compare-result-table-wrap {
    margin: 18px 0 14px;
    overflow-x: auto;
    border: 1px solid #e7d9bd;
    border-radius: 12px;
    background: #fff;
}

.compare-result-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.compare-result-table th,
.compare-result-table td {
    padding: 13px 15px;
    border-bottom: 1px solid #eee5d3;
    color: #39495a;
    font-size: 13px;
    text-align: right;
    white-space: nowrap;
}

.compare-result-table th {
    background: #fbf5e8;
    color: #6d552f;
    font-size: 12px;
    font-weight: 900;
}

.compare-result-table th:first-child,
.compare-result-table td:first-child { text-align: left; }
.compare-result-table tbody tr:last-child td { border-bottom: 0; }
.compare-result-table tbody tr.is-lowest td { background: #f0faf5; color: #145c48; font-weight: 900; }

.tools-final-note {
    padding: 48px 0 62px;
    background: #f5f8fb;
}

.tools-final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 34px;
    border-radius: 19px;
    background: var(--tools-navy-deep);
    color: #fff;
}

.tools-final-card > div > span { color: #9dc9e7; }

.tools-final-card h2 {
    margin: 5px 0 8px;
    color: #fff;
    font-size: 26px;
    font-weight: 950;
}

.tools-final-card p {
    max-width: 720px;
    margin: 0;
    color: #c9d9e6;
    font-size: 13px;
    line-height: 1.7;
}

.tools-final-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 9px;
}

.tools-final-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 9px;
    background: #fff;
    color: var(--tools-navy-deep);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.tools-final-actions a + a {
    background: transparent;
    color: #fff;
}

@media (max-width: 920px) {
    .tools-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .tools-hero-note { max-width: 660px; }
    .tools-entry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tool-workspace { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; }
    .compare-plan { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .compare-plan legend { grid-column: 1 / -1; }
    .tools-final-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
    .tools-hero { padding: 44px 0 42px; }
    .tools-hero-grid { gap: 22px; }
    .tools-hero h1 { margin-top: 14px; font-size: 34px; }
    .tools-hero-copy > p { font-size: 15px; line-height: 1.75; }
    .tools-trust-row { margin-top: 18px; }
    .tools-trust-row span { min-height: 31px; padding: 6px 9px; font-size: 11px; }
    .tools-hero-note { padding: 20px; border-radius: 14px; }
    .tools-entry-section { padding: 40px 0 32px; }
    .tools-section-heading h2 { font-size: 26px; }
    .tools-entry-grid { gap: 9px; }
    .tool-entry { min-height: 166px; padding: 17px; border-radius: 14px; }
    .tool-entry-number { top: 13px; right: 14px; }
    .tool-entry-icon { width: 42px; height: 42px; margin-bottom: 22px; border-radius: 12px; }
    .tool-entry strong { font-size: 15px; }
    .tool-entry small { max-width: 88%; font-size: 10px; }
    .tool-entry::after { right: 15px; bottom: 15px; font-size: 16px; }
    .tools-local-notice { padding: 13px; }
    .tool-section { padding: 18px 0; scroll-margin-top: 8px; }
    .tool-section--compare { padding-bottom: 38px; }
    .tool-panel { border-radius: 16px; }
    .tool-panel-head { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; padding: 22px 18px 20px; }
    .tool-panel-index { width: 46px; height: 46px; border-radius: 13px; font-size: 14px; }
    .tool-panel-head h2 { font-size: 25px; }
    .tool-panel-head p { font-size: 12px; }
    .tool-workspace { gap: 20px; padding: 22px 18px 25px; }
    .tool-field-grid { grid-template-columns: 1fr; gap: 14px; }
    .tool-form-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tool-primary-button { grid-column: 1 / -1; }
    .tool-text-link { grid-column: 1 / -1; }
    .tool-result { padding: 19px 16px; border-radius: 13px; }
    .calculator-metrics { grid-template-columns: 1fr; }
    .fraud-option { padding: 12px; }
    .direction-options,
    .direction-options--three { grid-template-columns: 1fr; }
    .direction-options span { min-height: 43px; }
    .compare-plan { grid-template-columns: 1fr; padding: 16px; }
    .tools-final-note { padding: 34px 0 45px; }
    .tools-final-card { padding: 23px 20px; border-radius: 15px; }
    .tools-final-card h2 { font-size: 23px; }
    .tools-final-actions { display: grid; width: 100%; }
}

@media (max-width: 390px) {
    .tools-entry-grid { grid-template-columns: 1fr; }
    .tool-entry { min-height: 138px; }
    .tool-entry-icon { margin-bottom: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    .tool-entry { transition: none; }
    .tool-entry:hover { transform: none; }
}
