:root {
    --ink: #141c34;
    --muted: #65748f;
    --soft: #8e9ab0;
    --line: #e5ebf4;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-solid: #ffffff;
    --blue: #4169f6;
    --blue-dark: #2d51d8;
    --violet: #7658f7;
    --mint: #16b992;
    --coral: #ff4965;
    --orange: #ff9418;
    --pale-blue: #edf7ff;
    --pale-violet: #f2efff;
    --shadow-sm: 0 8px 24px rgba(34, 63, 112, 0.08);
    --shadow-md: 0 22px 60px rgba(36, 65, 109, 0.12);
    --shadow-lg: 0 34px 90px rgba(42, 79, 139, 0.16);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: #f7faff;
    font-family: Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

[hidden] {
    display: none !important;
}

.ui-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex: 0 0 auto;
    background-color: currentColor;
    -webkit-mask: var(--ui-icon) center / contain no-repeat;
    mask: var(--ui-icon) center / contain no-repeat;
}

.ui-icon[data-icon="arrow-right"] {
    --ui-icon: url("../icons/arrow-right.svg");
}

.ui-icon[data-icon="arrow-up"] {
    --ui-icon: url("../icons/arrow-up.svg");
}

.ui-icon[data-icon="badge-check"] {
    --ui-icon: url("../icons/badge-check.svg");
}

.ui-icon[data-icon="chart-up"] {
    --ui-icon: url("../icons/chart-no-axes-column-increasing.svg");
}

.ui-icon[data-icon="check"] {
    --ui-icon: url("../icons/check.svg");
}

.ui-icon[data-icon="chevron-down"] {
    --ui-icon: url("../icons/chevron-down.svg");
}

.ui-icon[data-icon="circle-alert"] {
    --ui-icon: url("../icons/circle-alert.svg");
}

.ui-icon[data-icon="database"] {
    --ui-icon: url("../icons/database.svg");
}

.ui-icon[data-icon="external-link"] {
    --ui-icon: url("../icons/external-link.svg");
}

.ui-icon[data-icon="globe"] {
    --ui-icon: url("../icons/globe-2.svg");
}

.ui-icon[data-icon="hash"] {
    --ui-icon: url("../icons/hash.svg");
}

.ui-icon[data-icon="lightbulb"] {
    --ui-icon: url("../icons/lightbulb.svg");
}

.ui-icon[data-icon="refresh"] {
    --ui-icon: url("../icons/refresh-cw.svg");
}

.ui-icon[data-icon="scan-search"] {
    --ui-icon: url("../icons/scan-search.svg");
}

.ui-icon[data-icon="search"] {
    --ui-icon: url("../icons/search.svg");
}

.ui-icon[data-icon="shield-check"] {
    --ui-icon: url("../icons/shield-check.svg");
}

.ui-icon[data-icon="sparkles"] {
    --ui-icon: url("../icons/sparkles.svg");
}

.ui-icon[data-icon="target"] {
    --ui-icon: url("../icons/target.svg");
}

.ui-icon[data-icon="x"] {
    --ui-icon: url("../icons/x.svg");
}

.site-shell {
    min-height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(218, 226, 239, 0.9);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(calc(100% - 40px), var(--container));
    height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 195px;
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 650;
    color: #42506a;
}

.site-nav a {
    position: relative;
    transition: color 0.2s ease;
}

.site-nav a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.site-nav a:hover {
    color: var(--blue);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px;
    border: 1px solid #dfe7f2;
    border-radius: 99px;
    background: #f8fbff;
}

.language-switcher a {
    min-width: 32px;
    padding: 6px 8px;
    border-radius: 99px;
    color: #7b879b;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    text-align: center;
}

.language-switcher a::after {
    display: none;
}

.language-switcher a:hover,
.language-switcher a.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 5px 12px rgba(65, 105, 246, 0.2);
}

.language-switcher > span {
    width: 1px;
    height: 15px;
    background: #dfe6f0;
}

.secure-pill,
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #dfe7f2;
    border-radius: 99px;
    padding: 8px 12px;
    color: #44526a;
    background: #f8fbff;
}

.secure-search-form {
    display: inline-flex;
    margin: 0;
}

.secure-pill {
    appearance: none;
    font: inherit;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 220ms ease, color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.secure-pill:hover {
    border-color: #cbd8ec;
    background: #fff;
    box-shadow: 0 7px 18px rgba(48, 79, 134, 0.08);
}

.secure-pill b {
    position: relative;
    width: 25px;
    height: 15px;
    border-radius: 99px;
    background: #d7dfeb;
    transition: background-color 220ms ease;
}

.secure-pill b em {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(30, 47, 78, 0.25);
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.secure-pill.is-active b {
    background: rgba(22, 185, 146, 0.75);
}

.secure-pill.is-active b em {
    transform: translateX(10px);
}

.secure-pill i,
.live-badge i,
.status-badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(22, 185, 146, 0.12);
}

.secure-pill:not(.is-active) i {
    background: #aab5c7;
    box-shadow: 0 0 0 4px rgba(133, 148, 170, 0.11);
}

.mobile-menu {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    padding: 11px;
    background: var(--blue);
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 3px 0;
    background: #fff;
    border-radius: 4px;
}

.top-ad-wrap {
    position: relative;
    z-index: 3;
    background: #f8fbff;
}

.top-ad-wrap .ad-slot {
    width: min(calc(100% - 40px), 970px);
    margin: 14px auto 0;
}

.hero {
    position: relative;
    min-height: 680px;
    padding: 70px 0 84px;
    background:
        radial-gradient(circle at 28% 34%, rgba(194, 228, 255, 0.72), transparent 35%),
        radial-gradient(circle at 76% 54%, rgba(232, 226, 255, 0.74), transparent 31%),
        linear-gradient(118deg, #f8fbff 4%, #eef7ff 46%, #f9f9ff 100%);
}

.ambient {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(8px);
}

.ambient-one {
    width: 330px;
    height: 330px;
    left: -130px;
    top: 110px;
    background: radial-gradient(circle, rgba(112, 204, 255, 0.2), transparent 70%);
}

.ambient-two {
    width: 420px;
    height: 420px;
    right: -170px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(122, 88, 247, 0.16), transparent 69%);
}

.ambient-three {
    width: 380px;
    height: 380px;
    right: 10%;
    top: 8%;
    background: radial-gradient(circle, rgba(105, 155, 255, 0.18), transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(450px, 0.88fr);
    gap: 76px;
    align-items: center;
}

.hero-copy {
    padding: 25px 0;
}

.eyebrow,
.section-kicker,
.card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.eyebrow {
    padding: 8px 12px;
    border: 1px solid rgba(65, 105, 246, 0.13);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

.eyebrow span {
    font-size: 14px;
}

.eyebrow .ui-icon {
    width: 15px;
    height: 15px;
}

.hero-copy h1 {
    max-width: 660px;
    margin: 25px 0 20px;
    color: #19284b;
    font-size: clamp(46px, 5vw, 70px);
    line-height: 1.04;
    letter-spacing: -4.2px;
}

.hero-copy h1 span,
.result-heading h1 span {
    color: transparent;
    background: linear-gradient(100deg, #214fc6 0%, #3d72f5 53%, #6c52ef 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy > p {
    max-width: 610px;
    margin: 0;
    color: #5e708f;
    font-size: 18px;
    line-height: 1.75;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 680px;
    margin-top: 34px;
}

.hero-benefits > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid rgba(218, 228, 241, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
}

.hero-benefits > div > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #75839a;
    font-size: 10px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.hero-benefits strong {
    color: #31425e;
    font-size: 11px;
}

.benefit-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
}

.benefit-icon .ui-icon {
    width: 15px;
    height: 15px;
}

.benefit-blue {
    color: var(--blue);
    background: #e9efff;
}

.benefit-mint {
    color: #0a9d7c;
    background: #e2faf3;
}

.benefit-violet {
    color: var(--violet);
    background: #f0ebff;
}

.search-card-wrap {
    position: relative;
}

.search-card {
    position: relative;
    z-index: 2;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(24px);
}

.card-glow {
    position: absolute;
    z-index: 1;
    left: 8%;
    right: 8%;
    bottom: -20px;
    height: 54px;
    border-radius: 50%;
    background: rgba(61, 105, 231, 0.24);
    filter: blur(28px);
}

.card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.card-heading h2 {
    margin: 5px 0 0;
    font-size: 25px;
    letter-spacing: -1.1px;
}

.card-kicker {
    font-size: 10px;
}

.live-badge {
    padding: 7px 11px;
    border-color: #d9f1e9;
    color: #16866f;
    background: #f3fffb;
    font-size: 11px;
    font-weight: 750;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.field-group {
    display: block;
}

.field-label {
    display: block;
    margin: 0 0 8px 2px;
    color: #34415a;
    font-size: 12px;
    font-weight: 750;
}

.input-shell {
    position: relative;
    display: block;
}

.input-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 15px;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: var(--blue);
    border-radius: 9px;
    background: #eef3ff;
    transform: translateY(-50%);
    font-size: 17px;
    font-weight: 800;
}

.input-icon .ui-icon {
    width: 16px;
    height: 16px;
}

.input-shell input {
    width: 100%;
    height: 54px;
    padding: 0 16px 0 58px;
    color: #17233e;
    border: 1px solid #dce5f1;
    border-radius: 13px;
    outline: none;
    background: #fbfdff;
    box-shadow: inset 0 1px 2px rgba(37, 57, 91, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.input-shell input::placeholder {
    color: #a8b3c5;
}

.input-shell input:focus {
    border-color: #819bf7;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(65, 105, 246, 0.1);
}

.field-group small {
    display: block;
    margin: 7px 0 0 2px;
    color: #939fb2;
    font-size: 10px;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid #dcefe9;
    border-radius: 12px;
    background: #f5fffb;
}

.security-note > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #739087;
    font-size: 10px;
    line-height: 1.4;
}

.security-note strong {
    color: #247865;
    font-size: 11px;
}

.security-shield {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #0f9d7c;
    border-radius: 10px 10px 12px 12px;
    background: #dff8f0;
    font-weight: 900;
}

.security-shield .ui-icon {
    width: 16px;
    height: 16px;
}

.captcha-wrap {
    display: flex;
    justify-content: center;
    min-height: 65px;
}

.primary-button,
.secondary-button {
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.primary-button {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(100deg, var(--coral) 0%, #ff6250 46%, var(--orange) 100%);
    box-shadow: 0 13px 28px rgba(255, 91, 69, 0.26);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 91, 69, 0.32);
}

.primary-button:disabled {
    opacity: 0.78;
    cursor: wait;
    transform: none;
}

.button-arrow {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

.button-arrow .ui-icon {
    width: 15px;
    height: 15px;
}

.primary-button.is-loading .button-arrow {
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    background: transparent;
    color: transparent;
    animation: spin 0.75s linear infinite;
}

.secondary-button {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    color: #3f57c9;
    border: 1px solid #dbe3f7;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.secondary-button > .ui-icon {
    width: 15px;
    height: 15px;
}

.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 26px rgba(50, 76, 125, 0.13);
}

.form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 17px;
    color: #94a0b1;
    font-size: 10px;
}

.form-separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c4cddd;
}

.form-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
}

.alert > span {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 900;
}

.alert > span .ui-icon {
    width: 13px;
    height: 13px;
}

.alert p {
    margin: 2px 0;
    font-size: 12px;
    line-height: 1.5;
}

.alert-error {
    color: #ab3650;
    border: 1px solid #ffd9df;
    background: #fff4f6;
}

.alert-error > span {
    color: #fff;
    background: #f05470;
}

.trust-strip {
    position: relative;
    z-index: 4;
    margin-top: -31px;
}

.trust-grid {
    min-height: 94px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 20px 30px;
    border: 1px solid rgba(226, 234, 245, 0.9);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.trust-grid > div:not(.trust-arrow) {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 13px;
    align-items: center;
}

.trust-grid > div:not(.trust-arrow) > span {
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--blue);
    border-radius: 12px;
    background: #edf2ff;
    font-size: 11px;
    font-weight: 850;
}

.trust-grid strong {
    min-width: 0;
    color: #2c3952;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.trust-grid small {
    min-width: 0;
    margin-top: 3px;
    color: #8a96aa;
    font-size: 10px;
    overflow-wrap: anywhere;
}

.trust-arrow {
    color: #b6c2d3;
}

.trust-arrow .ui-icon {
    width: 18px;
    height: 18px;
}

.section-space {
    padding: 112px 0;
}

.section-heading.centered {
    max-width: 650px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2,
.how-copy h2 {
    margin: 12px 0;
    color: #1b2948;
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -2.1px;
}

.section-heading p,
.how-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    position: relative;
    min-height: 315px;
    padding: 29px;
    overflow: hidden;
    border: 1px solid #e3eaf4;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    will-change: transform, box-shadow;
}

.feature-card.raised {
    transform: translateY(-12px);
    border-color: #dfe2fb;
    box-shadow: 0 26px 62px rgba(63, 82, 161, 0.13);
}

.feature-number {
    position: absolute;
    right: 23px;
    top: 21px;
    color: #e6ebf4;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -2px;
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 850;
}

.feature-icon .ui-icon {
    width: 22px;
    height: 22px;
}

.feature-icon.blue {
    color: var(--blue);
    background: #edf2ff;
}

.feature-icon.violet {
    color: var(--violet);
    background: #f1edff;
}

.feature-icon.mint {
    color: #079a78;
    background: #e3faf3;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    letter-spacing: -0.5px;
    overflow-wrap: anywhere;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.feature-link {
    position: absolute;
    left: 29px;
    bottom: 27px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #52627d;
    font-size: 11px;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.feature-link > .ui-icon {
    width: 15px;
    height: 15px;
    color: var(--blue);
}

.seo-guide {
    position: relative;
    background:
        radial-gradient(circle at 12% 20%, rgba(194, 228, 255, 0.45), transparent 28%),
        radial-gradient(circle at 86% 78%, rgba(229, 222, 255, 0.5), transparent 30%),
        linear-gradient(135deg, #f5faff, #f9f9ff);
}

.seo-heading {
    max-width: 780px;
    margin-bottom: 43px;
}

.seo-heading h2 {
    max-width: 650px;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.seo-article-card,
.seo-benefits-card,
.seo-note {
    border: 1px solid rgba(222, 231, 244, 0.95);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.seo-article-card {
    padding: 32px;
}

.seo-card-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--blue);
    border-radius: 14px;
    background: #edf2ff;
    font-size: 19px;
    font-weight: 850;
}

.seo-card-icon .ui-icon {
    width: 20px;
    height: 20px;
}

.seo-card-icon.violet {
    color: var(--violet);
    background: #f1edff;
}

.seo-article-card h3,
.seo-note h3 {
    margin: 0 0 12px;
    color: #243452;
    font-size: 20px;
    letter-spacing: -0.6px;
}

.seo-article-card p,
.seo-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.seo-benefits-card {
    padding: 27px 32px;
}

.seo-benefits-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.seo-benefits-card li {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4f5f79;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.seo-benefits-card li > span {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #078e71;
    border-radius: 50%;
    background: #e3faf3;
    font-size: 10px;
    font-weight: 900;
}

.seo-benefits-card li > span .ui-icon {
    width: 12px;
    height: 12px;
}

.seo-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 17px;
    align-items: center;
    padding: 27px 30px;
    border-color: #dfdef9;
    background: linear-gradient(135deg, #fff, #f6f4ff);
}

.seo-note > div {
    min-width: 0;
}

.seo-note > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--violet);
    border-radius: 14px;
    background: #ede9ff;
    font-size: 20px;
}

.seo-note > span .ui-icon {
    width: 21px;
    height: 21px;
}

.inline-ad-section {
    padding: 0 0 18px;
}

.how-section {
    padding-top: 80px;
}

.how-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
    padding: 55px;
    overflow: hidden;
    border: 1px solid #e0e8f4;
    border-radius: 27px;
    background:
        radial-gradient(circle at 0 100%, rgba(178, 224, 255, 0.45), transparent 36%),
        linear-gradient(124deg, #ffffff, #f2f7ff);
    box-shadow: var(--shadow-md);
}

.how-copy .secondary-button {
    margin-top: 25px;
}

.flow-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flow-list > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid #e3eaf4;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.82);
}

.flow-list > div > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 11px;
    background: linear-gradient(135deg, #5776fa, #6c59eb);
    box-shadow: 0 7px 16px rgba(77, 103, 226, 0.23);
    font-size: 12px;
    font-weight: 850;
}

.flow-list p {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    color: #7d899d;
    font-size: 11px;
    overflow-wrap: anywhere;
}

.flow-list strong {
    color: #30405d;
    font-size: 13px;
}

.faq-section {
    padding-top: 90px;
    background: #fff;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid #e1e8f2;
}

.faq-item {
    border-bottom: 1px solid #e1e8f2;
}

.faq-item summary {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 24px 5px;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    content: "";
}

.faq-item summary > span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.8px;
}

.faq-item summary strong {
    min-width: 0;
    color: #2b3a55;
    font-size: 16px;
    overflow-wrap: anywhere;
}

.faq-item summary i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--blue);
    border-radius: 50%;
    background: #edf2ff;
    font-style: normal;
    font-size: 18px;
}

.faq-item summary i span {
    display: block;
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
}

.faq-item[open] summary i span {
    transform: rotate(180deg);
}

.faq-item > p {
    margin: -6px 50px 24px 59px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.site-footer {
    margin-top: 25px;
    padding: 50px 0;
    border-top: 1px solid #e3eaf3;
    background: #fff;
}

.footer-inner {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    width: 175px;
    height: auto;
    display: block;
}

.footer-inner p {
    margin: 14px 0 0;
    color: #8390a5;
    font-size: 12px;
    overflow-wrap: anywhere;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #929daf;
    font-size: 10px;
}

.ad-slot {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed #cfd9e8;
    border-radius: 14px;
    color: #9ba8ba;
    background:
        repeating-linear-gradient(135deg, rgba(238, 243, 250, 0.72) 0, rgba(238, 243, 250, 0.72) 6px, rgba(248, 250, 253, 0.72) 6px, rgba(248, 250, 253, 0.72) 12px);
    padding: 12px;
    text-align: center;
    overflow-wrap: anywhere;
}

.ad-slot > span {
    margin-bottom: 3px;
    color: #a8b3c2;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.ad-slot strong {
    color: #8996a9;
    font-size: 12px;
}

.ad-slot small {
    margin-top: 3px;
    font-size: 9px;
}

.footer-ad {
    margin-top: 26px;
}

.inline-ad {
    min-height: 120px;
}

.ad-rectangle {
    min-height: 250px;
}

.process-hero {
    position: relative;
    min-height: calc(100vh - 74px);
    padding: 28px 0 80px;
    background:
        radial-gradient(circle at 30% 30%, rgba(192, 226, 255, 0.65), transparent 32%),
        radial-gradient(circle at 80% 70%, rgba(229, 222, 255, 0.7), transparent 32%),
        linear-gradient(130deg, #f7fbff, #eef7ff 52%, #f9f9ff);
}

.process-hero > .container > .ad-slot {
    width: min(100%, 970px);
    margin: 0 auto 28px;
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 25px;
    align-items: stretch;
}

.process-card {
    min-width: 0;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.process-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    color: #267864;
    border: 1px solid #d8f2e9;
    border-radius: 99px;
    background: #f3fff9;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25px;
}

.status-badge i {
    animation: pulse 1.6s ease infinite;
}

.secure-label {
    color: #96a2b4;
    font-size: 10px;
    font-weight: 700;
}

.secure-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.secure-label-icon {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: var(--blue);
    border-radius: 6px;
    background: #edf2ff;
}

.secure-label-icon .ui-icon {
    width: 11px;
    height: 11px;
}

.loader-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 0 20px;
    text-align: center;
}

.loader-orbit {
    position: relative;
    width: 168px;
    height: 168px;
    display: block;
    margin-bottom: 31px;
}

.loader-orbit::before,
.loader-orbit::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.loader-orbit::before {
    width: calc(100% + 18px);
    height: calc(100% + 18px);
    border: 1px dashed rgba(89, 119, 245, 0.3);
}

.loader-orbit::after {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border: 1px solid rgba(89, 119, 245, 0.2);
    background: radial-gradient(circle, rgba(237, 243, 255, 0.88), rgba(249, 251, 255, 0.42) 67%, transparent 68%);
}

.orbit-rotator {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    transform-origin: center;
    animation: orbit-spin 1.15s linear infinite !important;
    will-change: transform;
}

.orbit-spinner {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.orbit-track,
.orbit-arc {
    fill: none;
}

.orbit-track {
    stroke: rgba(65, 105, 246, 0.09);
    stroke-width: 2.7;
}

.orbit-arc {
    stroke: url("#orbit-gradient");
    stroke-width: 3.6;
    stroke-linecap: round;
    filter: drop-shadow(0 3px 4px rgba(65, 105, 246, 0.24));
}

.orbit-endpoint {
    stroke: #fff;
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 3px rgba(57, 76, 155, 0.28));
}

.orbit-endpoint-start {
    fill: var(--blue);
}

.orbit-endpoint-end {
    fill: var(--coral);
}

.loader-core {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 66.666%;
    height: 66.666%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #f2f5ff);
    box-shadow: 0 14px 36px rgba(67, 88, 169, 0.17), inset 0 0 28px rgba(85, 107, 244, 0.05);
    transform: translate(-50%, -50%);
}

.loader-percent {
    color: #3657d6;
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -1.3px;
}

.loader-core small {
    margin-top: 1px;
    color: #9aa5b7;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.loader-stage h1 {
    margin: 0 0 10px;
    font-size: 29px;
    letter-spacing: -1.4px;
}

.loader-stage > p {
    min-height: 42px;
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.progress-shell {
    padding: 0 10px;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
    color: #6e7c92;
    font-size: 10px;
    font-weight: 700;
}

.progress-meta b {
    color: #465675;
}

.progress-track {
    height: 10px;
    overflow: hidden;
    border-radius: 99px;
    background: #eaf0f8;
    box-shadow: inset 0 2px 4px rgba(55, 75, 112, 0.06);
}

.progress-track > span {
    position: relative;
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #4869ef, #7259ef 68%, #ef5c97);
    box-shadow: 0 3px 12px rgba(76, 94, 230, 0.3);
    transition: width 0.8s cubic-bezier(.22, .76, .32, 1);
}

.progress-track > span::after {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    animation: shimmer 1.8s infinite;
}

.query-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0 14px;
}

.query-summary > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid #e4eaf3;
    border-radius: 14px;
    background: #fafcff;
}

.summary-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--blue);
    border-radius: 10px;
    background: #edf2ff;
    font-weight: 850;
}

.summary-icon .ui-icon {
    width: 17px;
    height: 17px;
}

.query-summary p {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0;
}

.query-summary small {
    color: #9aa5b6;
    font-size: 8px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.65px;
}

.query-summary strong {
    overflow: hidden;
    color: #33415c;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.active-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 13px;
    background: #f3f7ff;
}

.pulse-ring {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(65, 105, 246, 0.1);
}

.pulse-ring i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(65, 105, 246, 0.1);
    animation: pulse 1.7s ease infinite;
}

.active-notice p {
    min-width: 0;
    margin: 0;
    color: #78869c;
    font-size: 10px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.active-notice strong {
    color: #3c4b67;
}

.process-error {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
    padding: 9px 12px;
    color: #ad4556;
    border-radius: 10px;
    background: #fff2f4;
    font-size: 10px;
}

.process-error span {
    font-weight: 900;
}

.process-error .process-error-icon {
    width: 14px;
    height: 14px;
}

.process-error p {
    margin: 0;
}

.process-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.splash-ad {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.sponsored-label {
    display: inline-block;
    padding: 5px 8px;
    color: #919bae;
    border-radius: 99px;
    background: #f1f4f9;
    font-size: 7px;
    font-weight: 850;
    letter-spacing: 1.1px;
}

.splash-visual {
    width: 100%;
    height: 174px;
    display: grid;
    place-items: center;
    margin: 15px 0 17px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.55), transparent 27%),
        linear-gradient(135deg, #dce8ff, #e9e2ff 58%, #ffe5e6);
}

.splash-visual span {
    width: 63px;
    height: 63px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: linear-gradient(135deg, #5977f5, #7658ed);
    box-shadow: 0 15px 30px rgba(75, 92, 190, 0.27);
    font-size: 18px;
    font-weight: 900;
}

.splash-ad h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.splash-ad p {
    margin: 0;
    color: #7c899d;
    font-size: 11px;
    line-height: 1.55;
}

.splash-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    padding-top: 13px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.splash-action .ui-icon {
    width: 13px;
    height: 13px;
}

.tip-card {
    display: flex;
    gap: 13px;
    padding: 20px;
    border: 1px solid #e3e8f3;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

.tip-card > div {
    min-width: 0;
}

.tip-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--violet);
    border-radius: 11px;
    background: #f0ebff;
}

.tip-icon .ui-icon {
    width: 17px;
    height: 17px;
}

.tip-card small {
    color: var(--violet);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.tip-card h3 {
    margin: 6px 0;
    font-size: 13px;
    line-height: 1.35;
}

.tip-card p {
    margin: 0;
    color: #7c899d;
    font-size: 10px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.result-hero {
    position: relative;
    min-height: calc(100vh - 74px);
    padding: 25px 0 80px;
    background:
        radial-gradient(circle at 22% 18%, rgba(190, 224, 255, 0.55), transparent 27%),
        linear-gradient(130deg, #f7fbff, #f1f8ff 54%, #f8f9ff);
}

.result-top-ad {
    width: min(100%, 970px);
    margin: 0 auto 32px;
}

.result-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 29px;
}

.result-heading > div {
    min-width: 0;
}

.result-heading h1 {
    margin: 10px 0 7px;
    font-size: 36px;
    letter-spacing: -2px;
    overflow-wrap: anywhere;
}

.result-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.result-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.stat-card {
    min-height: 128px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid #e2e8f2;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.stat-card.primary-stat {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #4265e8, #684fe0);
    box-shadow: 0 18px 38px rgba(68, 84, 205, 0.24);
}

.stat-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: var(--blue);
    border-radius: 14px;
    background: #edf2ff;
    font-size: 18px;
    font-weight: 900;
}

.stat-icon .ui-icon {
    width: 20px;
    height: 20px;
}

.primary-stat .stat-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.stat-icon.mint {
    color: #0d9c7b;
    background: #e3faf3;
}

.stat-icon.violet {
    color: var(--violet);
    background: #f0ebff;
}

.stat-icon.coral {
    color: var(--coral);
    background: #fff0f3;
}

.stat-card > div {
    min-width: 0;
}

.stat-card small {
    display: block;
    color: #8c98aa;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.stat-card strong {
    display: block;
    margin: 3px 0 1px;
    overflow: hidden;
    font-size: 22px;
    letter-spacing: -0.8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stat-card p {
    margin: 0;
    color: #8a96a8;
    font-size: 9px;
    overflow-wrap: anywhere;
}

.primary-stat small,
.primary-stat p {
    color: rgba(255, 255, 255, 0.68);
}

.results-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 318px;
    gap: 20px;
    align-items: start;
}

.serp-panel,
.positions-card,
.result-cta {
    border: 1px solid #e2e8f2;
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.serp-panel {
    overflow: hidden;
}

.serp-toolbar {
    min-height: 77px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 21px;
    border-bottom: 1px solid #e8edf5;
    background: #fbfdff;
}

.serp-toolbar > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.serp-toolbar p {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0;
}

.serp-toolbar strong {
    font-size: 13px;
}

.serp-toolbar small {
    color: #96a1b2;
    font-size: 9px;
}

.google-mark {
    position: relative;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid #e3e9f3;
    border-radius: 11px;
    background: #fff;
}

.google-mark i {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.google-mark i:nth-child(1) {
    top: 8px;
    left: 8px;
    background: #4285f4;
}

.google-mark i:nth-child(2) {
    top: 8px;
    right: 8px;
    background: #ea4335;
}

.google-mark i:nth-child(3) {
    bottom: 8px;
    left: 8px;
    background: #fbbc05;
}

.google-mark i:nth-child(4) {
    right: 8px;
    bottom: 8px;
    background: #34a853;
}

.overview-pill {
    padding: 7px 10px;
    color: #735a3f;
    border: 1px solid #f3e3c8;
    border-radius: 99px;
    background: #fffaf0;
    font-size: 8px;
    font-weight: 800;
}

.serp-list {
    padding: 9px 13px 16px;
}

.serp-item {
    position: relative;
    display: grid;
    grid-template-columns: 37px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: start;
    padding: 17px 13px;
    border: 1px solid transparent;
    border-bottom-color: #edf1f6;
    border-radius: 14px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.serp-item:last-child {
    border-bottom-color: transparent;
}

.serp-item:hover {
    border-color: #e1e8f3;
    background: #fbfdff;
    transform: translateX(2px);
}

.serp-item.is-match {
    margin: 7px 0;
    padding-top: 19px;
    padding-bottom: 19px;
    border-color: #bdebdc;
    background: linear-gradient(100deg, #f1fff9, #fbfffd);
    box-shadow: 0 8px 20px rgba(28, 160, 125, 0.08);
}

.rank-number {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #8491a5;
    border: 1px solid #e3e9f2;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 850;
}

.is-match .rank-number {
    color: #fff;
    border-color: transparent;
    background: var(--mint);
    box-shadow: 0 6px 14px rgba(22, 185, 146, 0.2);
}

.serp-content {
    min-width: 0;
}

.serp-domain {
    display: flex;
    align-items: center;
    gap: 7px;
    overflow: hidden;
    color: #5f6e84;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-favicon {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    color: #5870d6;
    border-radius: 6px;
    background: #edf2ff;
    font-size: 8px;
    font-weight: 850;
}

.serp-content > a {
    display: inline-block;
    margin: 6px 0 4px;
    color: #3158c4;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.serp-content > a:hover {
    text-decoration: underline;
}

.serp-content > .serp-title {
    display: inline-block;
    margin: 6px 0 4px;
    color: #3158c4;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.serp-content > p {
    margin: 0;
    color: #718096;
    font-size: 11px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.match-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    color: #167a62;
    border: 1px solid #c9ecdf;
    border-radius: 99px;
    background: #ecfbf5;
    font-size: 8px;
    font-weight: 850;
    white-space: nowrap;
}

.match-badge .match-icon {
    width: 15px;
    height: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: var(--mint);
}

.match-badge .match-icon .ui-icon {
    width: 9px;
    height: 9px;
}

.result-inline-ad {
    min-height: 87px;
    margin: 9px 0;
    border-radius: 12px;
}

.result-sidebar {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.positions-card {
    padding: 22px;
}

.positions-card h3 {
    margin: 8px 0 16px;
    font-size: 18px;
}

.position-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.position-cloud span {
    min-width: 50px;
    padding: 9px 12px;
    color: #fff;
    border-radius: 11px;
    background: linear-gradient(135deg, #4265e8, #6c55e5);
    box-shadow: 0 7px 16px rgba(70, 84, 201, 0.18);
    text-align: center;
    font-size: 13px;
    font-weight: 850;
}

.positions-card > p {
    margin: 17px 0 0;
    color: #7f8a9e;
    font-size: 10px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.empty-position {
    padding: 14px;
    color: #9a6a38;
    border-radius: 11px;
    background: #fff8ec;
    font-size: 10px;
}

.result-cta {
    padding: 23px;
    background:
        radial-gradient(circle at 90% 10%, rgba(130, 103, 245, 0.18), transparent 35%),
        linear-gradient(135deg, #27375e, #354a7c);
}

.result-cta > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
}

.result-cta > span .ui-icon {
    width: 18px;
    height: 18px;
}

.result-cta h3 {
    margin: 18px 0 8px;
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
}

.result-cta p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 10px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.result-cta a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #cfd8ff;
    font-size: 10px;
    font-weight: 800;
}

.result-cta a .ui-icon {
    width: 13px;
    height: 13px;
}

.error-section {
    position: relative;
    min-height: calc(100vh - 74px);
    display: grid;
    place-items: center;
    padding: 60px 20px;
    background:
        radial-gradient(circle at 26% 38%, rgba(188, 226, 255, 0.7), transparent 31%),
        linear-gradient(135deg, #f7fbff, #f3f6ff);
}

.error-card {
    position: relative;
    width: min(100%, 510px);
    padding: 46px;
    border: 1px solid #fff;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.error-code {
    position: absolute;
    top: 18px;
    right: 21px;
    color: #dce3ef;
    font-size: 33px;
    font-weight: 900;
}

.error-symbol {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin: 0 auto 21px;
    color: #fff;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--coral), var(--orange));
    box-shadow: 0 14px 30px rgba(255, 83, 85, 0.25);
    font-size: 27px;
    font-weight: 900;
}

.error-symbol .ui-icon {
    width: 29px;
    height: 29px;
}

.error-card h1 {
    margin: 0 0 11px;
    font-size: 27px;
    letter-spacing: -1px;
}

.error-card p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.error-card .primary-button {
    width: 100%;
}

.ad-modal {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.ad-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 27, 50, 0.56);
    backdrop-filter: blur(6px);
}

.ad-modal-card {
    position: relative;
    z-index: 2;
    width: min(100%, 510px);
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 40px 100px rgba(16, 26, 50, 0.3);
    animation: modal-in 0.3s ease both;
}

.ad-close {
    position: absolute;
    z-index: 3;
    top: 13px;
    right: 13px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #647188;
    border: 1px solid #dfe6f0;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    font-size: 20px;
}

.ad-close .ui-icon {
    width: 16px;
    height: 16px;
}

.popup-ad-content {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 13px;
    border-radius: 17px;
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.6), transparent 25%),
        linear-gradient(135deg, #e0ebff, #eee6ff 60%, #ffe5ea);
}

.popup-ad-content > span {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    color: #fff;
    border-radius: 20px;
    background: linear-gradient(135deg, #5674f5, #7958ef);
    box-shadow: 0 16px 34px rgba(72, 89, 191, 0.28);
    font-size: 20px;
    font-weight: 900;
}

.popup-ad-content strong {
    font-size: 18px;
}

.popup-ad-content small {
    margin-top: 6px;
    color: #7f8ca1;
    font-size: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes reverse-spin {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(0.76);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
        gap: 38px;
    }

    .hero-copy h1 {
        font-size: 54px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .process-grid,
    .results-layout {
        grid-template-columns: minmax(0, 1fr) 290px;
    }

    .result-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .site-nav {
        position: absolute;
        top: 64px;
        right: 20px;
        min-width: 210px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 15px;
        border: 1px solid #e2e8f2;
        border-radius: 15px;
        background: #fff;
        box-shadow: var(--shadow-md);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a,
    .secure-pill {
        padding: 10px 12px;
    }

    .secure-search-form,
    .secure-pill {
        width: 100%;
    }

    .secure-pill b {
        margin-left: auto;
    }

    .language-switcher {
        justify-content: center;
        margin-top: 2px;
    }

    .language-switcher a {
        padding: 8px 12px;
    }

    .site-nav a::after {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding-top: 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy h1,
    .hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-benefits {
        grid-template-columns: repeat(3, 1fr);
        max-width: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-arrow {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card.raised,
    .feature-card.raised:hover {
        min-height: 260px;
        transform: none;
    }

    .seo-content-grid {
        grid-template-columns: 1fr;
    }

    .how-card {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .process-grid,
    .results-layout {
        grid-template-columns: 1fr;
    }

    .process-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .process-sidebar .ad-rectangle {
        grid-column: 1 / -1;
        min-height: 120px;
    }

    .result-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .result-sidebar .ad-rectangle {
        grid-column: 1 / -1;
        min-height: 120px;
    }
}

@media (max-width: 620px) {
    .container,
    .header-inner,
    .footer-inner {
        width: min(calc(100% - 26px), var(--container));
    }

    .header-inner {
        height: 66px;
    }

    .brand-logo {
        width: 170px;
    }

    .top-ad-wrap .ad-slot {
        width: calc(100% - 26px);
    }

    .hero {
        min-height: 0;
        padding: 44px 0 68px;
    }

    .eyebrow {
        font-size: 9px;
    }

    .hero-copy h1 {
        margin-top: 20px;
        font-size: 42px;
        letter-spacing: -2.7px;
    }

    .hero-copy > p {
        font-size: 15px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .search-card {
        padding: 22px;
        border-radius: 21px;
    }

    .card-heading h2 {
        font-size: 22px;
    }

    .trust-strip {
        margin-top: -22px;
    }

    .trust-grid {
        padding: 18px;
    }

    .section-space {
        padding: 80px 0;
    }

    .section-heading h2,
    .how-copy h2 {
        font-size: 31px;
        letter-spacing: -1.5px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-link {
        left: 24px;
        bottom: 22px;
    }

    .seo-guide {
        padding-top: 72px;
    }

    .seo-article-card,
    .seo-benefits-card,
    .seo-note {
        padding: 24px;
        border-radius: 19px;
    }

    .seo-benefits-card ul {
        grid-template-columns: 1fr;
    }

    .seo-note {
        align-items: flex-start;
    }

    .how-card {
        padding: 28px 22px;
        border-radius: 21px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-meta {
        flex-direction: column;
        gap: 7px;
    }

    .faq-item summary {
        grid-template-columns: 30px 1fr auto;
        gap: 10px;
        padding: 20px 0;
    }

    .faq-item summary strong {
        font-size: 14px;
    }

    .faq-item > p {
        margin: -3px 40px 21px 40px;
        font-size: 13px;
    }

    .process-hero,
    .result-hero {
        padding-top: 15px;
    }

    .process-card {
        min-height: 610px;
        padding: 20px;
    }

    .secure-label {
        display: none;
    }

    .loader-orbit {
        width: 150px;
        height: 150px;
    }

    .loader-core {
        width: 100px;
        height: 100px;
    }

    .loader-stage h1 {
        font-size: 24px;
    }

    .query-summary {
        grid-template-columns: 1fr;
    }

    .process-sidebar,
    .result-sidebar {
        display: flex;
    }

    .splash-ad {
        min-height: 330px;
    }

    .result-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .result-heading h1 {
        font-size: 30px;
    }

    .result-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 104px;
    }

    .serp-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .serp-item {
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .match-badge {
        grid-column: 2;
        width: max-content;
    }

    .serp-content > a {
        font-size: 14px;
    }

    .error-card {
        padding: 38px 22px 28px;
    }

    .ad-modal-card {
        padding: 16px;
    }

    .popup-ad-content {
        min-height: 260px;
    }
}

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

    .orbit-rotator {
        animation: orbit-spin 1.15s linear infinite !important;
    }
}
