:root {
    --background-black: #0009;
    --background-blue: #248af6;
    --background-blue-100: #141f48;
    --background-blue-01: rgba(36, 138, 246, .1);
    --background-gray-10: #f7f7f7;
    --background-white: #fff;
    --background-overlay: rgba(0, 0, 0, .4);
    --border-blue-40: rgba(0, 118, 206, .4);
    --border-blue-50: #e0edff;
    --border-gray-40: #d7d7d7;
    --border-gray-70: rgba(176, 186, 191, .7);
    --control-primary-initial: #248af6;
    --control-primary-hover: #096ed9;
    --control-primary-pressed: #0b5eb8;
    --control-tertiary-initial: #f2f5f8;
    --control-tertiary-hover: #e1e1e1;
    --control-tertiary-pressed: #cbcbcb;
    --control-secondary-initial: #f6f8f9;
    --text-black-100: #000;
    --text-gray: #585858;
    --text-gray-70: #a6a6a6;
    --text-gray-90: #464646;
    --text-white: #fff;
    --icons-green-100: #00bb61;
    --icons-red: #da2d26;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, .2);
    --shadow-toolbar: 0 2px 12px 0 rgba(25, 25, 26, .04), 0 6px 20px 0 rgba(25, 25, 26, .06);
    --site-width: 1160px;
    --radius-control: 8px;
    --radius-card: 8px;
    --radius-upload: 10px;
    --z-header: 30;
    --z-tools-menu: 29;
    --z-tools-overlay: 28;
    --z-content: 2;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-black-100);
    background: var(--background-white);
    font-family: "Poppins", Arial, sans-serif;
}

[hidden] {
    display: none !important;
}

body.is-locked {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

img,
svg {
    display: block;
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    z-index: 200;
    width: auto;
    height: auto;
    clip: auto;
    top: 12px;
    left: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-control);
    background: var(--background-blue);
    color: var(--text-white);
}

.desktop-only {
    display: inline;
}

.mobile-only,
.mobile-support-bar {
    display: none;
}

.button {
    position: relative;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-control);
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:disabled,
.button.is-disabled {
    cursor: not-allowed;
    opacity: .55;
    transform: none;
}

.button:focus-visible,
.language-button:focus-visible,
.burger-button:focus-visible,
.accordion__trigger:focus-visible,
.tabs__tab:focus-visible {
    outline: 3px solid rgba(36, 138, 246, .38);
    outline-offset: 2px;
}

.button--primary {
    border: 1px solid var(--control-primary-initial);
    background: var(--control-primary-initial);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.button--primary:hover {
    background: var(--control-primary-hover);
}

.button--primary:active {
    background: var(--control-primary-pressed);
}

.button--tertiary {
    background: var(--control-tertiary-initial);
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.button--tertiary:hover {
    background: var(--control-tertiary-hover);
}

.button--gray {
    border: 1px solid var(--border-gray-70);
    background: var(--background-white);
    color: var(--text-black-100);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.button--gray:hover {
    color: var(--text-gray-90);
}

.button--ghost {
    background: transparent;
    color: var(--text-black-100);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.button--ghost:hover {
    background: var(--control-tertiary-hover);
}

.button--secondary {
    border: 1px solid var(--border-blue-50);
    background: var(--control-secondary-initial);
    color: rgba(107, 107, 107, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.button--transparent {
    background: transparent;
    color: var(--text-black-100);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.button--medium {
    height: 40px;
    padding: 10px 12px;
}

.button--small {
    height: 32px;
    padding: 6px 8px;
}

.button--large {
    height: 52px;
    min-width: 250px;
    padding: 16px;
}

.button--full {
    width: 100%;
    height: 52px;
}

.top-banner {
    position: sticky;
    z-index: 80;
    top: 0;
    display: flex;
    justify-content: center;
    background: var(--background-gray-10);
    padding: 0 40px;
}

.top-banner__inner {
    display: flex;
    width: 100%;
    max-width: var(--site-width);
    height: 64px;
    align-items: center;
    justify-content: space-between;
}

.language-button {
    position: relative;
    display: flex;
    width: 194px;
    height: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid #8c8c8c;
    border-radius: var(--radius-control);
    background: var(--background-white);
    color: var(--text-black-100);
    cursor: pointer;
}

.language-button > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.language-button [data-language-label] {
    display: inline;
}

.language-menu {
    position: absolute;
    top: 52px;
    left: calc((100vw - min(var(--site-width), calc(100vw - 80px))) / 2);
    z-index: 120;
    display: grid;
    width: 194px;
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--border-gray-70);
    border-radius: var(--radius-control);
    background: var(--background-white);
    box-shadow: var(--shadow-toolbar);
}

.language-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 14px;
}

.language-menu a[aria-current="true"] {
    background: var(--background-blue-01);
    color: var(--background-blue);
    font-weight: 600;
}

.language-menu small {
    color: var(--text-gray-70);
    font-size: 11px;
    font-weight: 600;
}

.language-menu a:hover {
    background: var(--control-tertiary-initial);
}

.site-header {
    position: sticky;
    z-index: 60;
    top: 64px;
    display: flex;
    width: 100%;
    min-height: 80px;
    justify-content: center;
    background: var(--background-white);
    padding: 20px 40px;
}

.page--privacy .site-header,
.page--terms .site-header,
.page--unsubscribe .site-header {
    top: 0;
}

.site-header__inner {
    display: flex;
    width: 100%;
    max-width: var(--site-width);
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo__icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 4px;
    background: #da2d26;
    color: var(--text-white);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.logo__wordmark {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 34px;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.site-header__tools-mobile,
.burger-button,
.mobile-drawer {
    display: none;
}

.burger-button {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-black-100);
    cursor: pointer;
}

.tools-overlay {
    position: fixed;
    z-index: var(--z-tools-overlay);
    inset: 144px 0 0;
    background: var(--background-overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s linear, visibility .3s linear;
}

.tools-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.tools-menu {
    position: fixed;
    z-index: var(--z-tools-menu);
    top: 144px;
    right: 0;
    left: 0;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    background: var(--background-white);
    transform: translateY(-130%);
    transition: transform .3s ease-in-out;
}

.page--privacy .tools-menu,
.page--terms .tools-menu,
.page--unsubscribe .tools-menu {
    top: 80px;
}

.page--privacy .tools-overlay,
.page--terms .tools-overlay,
.page--unsubscribe .tools-overlay {
    top: 80px;
}

.tools-menu.is-open {
    transform: translateY(0);
}

.tools-menu__grid {
    display: grid;
    min-height: 484px;
    grid-template-columns: 3fr 1fr;
}

.tools-menu h2 {
    margin: 0;
    padding: 18px 40px;
    border-bottom: 1px solid var(--border-gray-40);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
}

.tools-menu__pdf {
    border-right: 1px solid var(--border-gray-40);
}

.tools-menu__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 36px 40px 32px;
}

.tools-menu__column h3 {
    margin: 0 0 14px;
    color: var(--text-gray-70);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.tools-menu ul {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tools-menu a {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 12px;
    border-radius: var(--radius-control);
    font-size: 14px;
    line-height: 20px;
}

.tools-menu a:hover {
    background: var(--control-tertiary-hover);
}

.tools-menu__sign > a {
    margin: 30px 24px;
}

.hero-surface {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 54%, rgba(218, 45, 38, .10), transparent 28%),
        radial-gradient(circle at 78% 22%, rgba(36, 138, 246, .18), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #eef6ff 62%, #ffffff 100%);
    padding-bottom: 100px;
}

.hero {
    display: flex;
    width: 100%;
    max-width: 768px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 40px;
    padding-top: 33px;
}

.hero h1 {
    margin: 0 0 24px;
    color: var(--text-black-100);
    font-size: 64px;
    font-weight: 600;
    line-height: 80px;
    text-align: center;
}

.hero p {
    margin: 0;
    color: var(--text-gray-90);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

.upload {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0 52px;
}

.blur {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: .45;
    filter: blur(120px);
}

.blur--blue {
    background: rgba(36, 138, 246, .38);
}

.blur--cyan {
    background: rgba(36, 138, 246, .5);
}

.blur--red {
    background: rgba(218, 45, 38, .6);
}

.upload__blur--upper {
    top: -130px;
    left: 50%;
    width: 500px;
    height: 90px;
}

.upload__blur--center {
    top: 60px;
    left: 30%;
    width: 160px;
    height: 260px;
}

.upload__blur--lower {
    bottom: -40px;
    left: 50%;
    width: 720px;
    height: 80px;
    transform: translateX(-50%);
}

.upload__box {
    position: relative;
    z-index: var(--z-content);
    display: flex;
    width: 100%;
    max-width: var(--site-width);
    flex-direction: column;
    padding: 15px;
    border-radius: var(--radius-upload);
    background: var(--background-white);
    box-shadow: var(--shadow-small);
}

.upload-zone {
    display: flex;
    width: 100%;
    min-height: 280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 1px dashed var(--border-blue-40);
    border-radius: var(--radius-upload);
    cursor: pointer;
    text-align: center;
    transition: border-color .2s ease, background-color .2s ease, opacity .2s ease;
}

.upload-zone.is-drag-active {
    border-color: var(--background-blue);
    background: #e0edff;
    opacity: .75;
}

.upload-zone__desktop-title,
.upload-zone__mobile-title {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.upload-zone__mobile-title {
    display: none;
}

.button--upload {
    width: 400px;
    height: 52px;
    margin-top: 24px;
}

.upload-zone__description {
    max-width: 700px;
    margin: 24px 10px 0;
    color: var(--text-gray-70);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.upload-zone__secure {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    color: var(--icons-green-100);
    font-size: 12px;
    line-height: 16px;
}

.service-buttons {
    display: none;
}

.brand-mark {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.brand-mark--drive {
    clip-path: polygon(50% 0, 100% 86%, 0 86%);
    background: conic-gradient(from 20deg, #0f9d58, #4285f4, #f4b400, #0f9d58);
}

.brand-mark--dropbox::before,
.brand-mark--dropbox::after {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #1976d2;
    content: "";
    transform: rotate(45deg);
}

.brand-mark--dropbox::before {
    left: 2px;
    top: 4px;
}

.brand-mark--dropbox::after {
    right: 2px;
    top: 4px;
}

.brand-mark--onedrive {
    border-radius: 999px;
    background: linear-gradient(135deg, #0488d1, #33b3ff);
}

.brand-mark--onedrive::before {
    position: absolute;
    right: -4px;
    bottom: 4px;
    left: 7px;
    height: 10px;
    border-radius: 999px;
    background: #1976d2;
    content: "";
}

.stats {
    position: relative;
    z-index: var(--z-content);
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 100px auto;
}

.stats article {
    display: grid;
    grid-template-columns: 40px auto;
    column-gap: 12px;
    align-items: center;
}

.stats article:not(:last-child) {
    margin-right: 48px;
}

.stats__icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: var(--background-white);
    box-shadow: var(--shadow-small);
    grid-row: span 2;
}

.stats strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.stats span:last-child {
    color: var(--text-gray);
    font-size: 12px;
    line-height: 16px;
}

.tools-grid {
    display: grid;
    max-width: var(--site-width);
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 auto 100px;
    padding: 0;
}

.tool-card {
    display: flex;
    height: 108px;
    border: 1px solid var(--border-blue-50);
    border-radius: var(--radius-card);
    background: var(--background-white);
    box-shadow: var(--shadow-small);
    transition: transform .2s ease, box-shadow .2s ease;
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-toolbar);
}

.tool-card a {
    display: flex;
    width: 100%;
    gap: 16px;
    align-items: center;
    padding: 16px;
}

.tool-card__icon {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 12px;
    background: var(--background-blue-01);
    color: var(--background-blue);
}

.tool-card h2 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.tool-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.tools-grid__show {
    display: none;
}

.advantages {
    position: relative;
    display: flex;
    max-width: 100%;
    flex-direction: column;
    padding: 0 16px;
}

.advantages > h2 {
    max-width: 918px;
    margin: 0 auto;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
}

.advantages__subtitle {
    margin: 24px 0 0;
    color: var(--text-gray);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

.advantages__content {
    position: relative;
    z-index: var(--z-content);
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.advantages__items {
    display: flex;
    flex-direction: column;
}

.advantage-item {
    display: flex;
    width: 396px;
    min-height: 360px;
    flex-direction: column;
    justify-content: flex-start;
}

.advantage-item__mobile-visual {
    display: none;
}

.advantage-item__copy {
    padding: 24px 0 0;
}

.advantage-item h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.advantage-item p {
    margin: 0;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.advantage-upload {
    width: 180px;
    height: 52px;
    margin-top: auto;
    margin-left: 46px;
}

.advantages__sticky {
    position: sticky;
    top: 220px;
    width: 702px;
    height: 352px;
    margin-left: 60px;
}

.visual-panel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 240px;
    border: 1px solid var(--border-blue-50);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(36, 138, 246, .12), transparent 42%),
        linear-gradient(315deg, rgba(218, 45, 38, .08), transparent 40%),
        #fff;
    box-shadow: var(--shadow-toolbar);
}

.visual-panel__bar {
    display: flex;
    height: 40px;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    border-bottom: 1px solid var(--border-blue-50);
    background: #f8fbff;
}

.visual-panel__bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d7d7d7;
}

.visual-panel__bar span:first-child {
    background: #da2d26;
}

.visual-panel__bar span:nth-child(2) {
    background: #ffb125;
}

.visual-panel__bar span:nth-child(3) {
    background: #00bb61;
}

.visual-panel__document {
    position: absolute;
    top: 72px;
    left: 34px;
    width: 48%;
    min-height: 210px;
    padding: 28px 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-small);
}

.visual-panel__line {
    height: 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #dde8f5;
}

.visual-panel__line--wide {
    width: 90%;
}

.visual-panel__line--short {
    width: 58%;
}

.visual-panel__annotation,
.visual-panel__signature {
    display: inline-flex;
    margin-top: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #e0edff;
    color: var(--background-blue);
    font-size: 12px;
    font-weight: 600;
}

.visual-panel__signature {
    margin-left: 12px;
    background: #ffe8f3;
    color: var(--icons-red);
}

.visual-panel__rail {
    position: absolute;
    top: 78px;
    right: 34px;
    display: grid;
    width: 34%;
    gap: 14px;
}

.visual-panel__rail span {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border-blue-50);
    border-radius: 10px;
    background: #fff;
    color: var(--text-gray);
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(25, 25, 26, .05);
}

.visual-panel--secure {
    background:
        linear-gradient(135deg, rgba(0, 187, 97, .12), transparent 42%),
        linear-gradient(315deg, rgba(36, 138, 246, .12), transparent 40%),
        #fff;
}

.visual-panel--conversion {
    background:
        linear-gradient(135deg, rgba(255, 177, 37, .16), transparent 42%),
        linear-gradient(315deg, rgba(36, 138, 246, .12), transparent 40%),
        #fff;
}

.faq-section {
    position: relative;
    display: flex;
    width: 100%;
    max-width: var(--site-width);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 100px auto;
}

.faq-section > h2,
.questions > h2 {
    margin: 0;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
}

.faq-section > p {
    margin: 24px 0 32px;
    color: var(--text-gray);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

.tabs {
    width: 100%;
}

.tabs__list {
    position: relative;
    z-index: var(--z-content);
    display: flex;
    width: fit-content;
    gap: 4px;
    margin: 0 auto 40px;
    padding: 4px;
    border-radius: 12px;
    background: var(--background-white);
    box-shadow: var(--shadow-toolbar);
}

.tabs__tab {
    position: relative;
    z-index: 2;
    padding: 10px 12px;
    border-radius: var(--radius-control);
    background: transparent;
    color: var(--text-black-100);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: color .3s;
}

.tabs__tab.is-active {
    color: var(--text-white);
}

.tabs__glider {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    border-radius: var(--radius-control);
    background: var(--text-black-100);
    transition: width .35s cubic-bezier(.4, 0, .2, 1), transform .35s cubic-bezier(.4, 0, .2, 1);
}

.tabs__panel {
    width: 100%;
}

.accordion {
    display: grid;
    width: 100%;
    gap: 16px;
}

.accordion__item {
    overflow: hidden;
    border: 1px solid var(--border-blue-50);
    border-radius: 12px;
    background: var(--background-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.accordion__trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.accordion__trigger span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.accordion__trigger svg {
    flex: 0 0 auto;
    transition: transform .2s ease;
}

.accordion__trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.accordion__content {
    padding: 0 24px 20px;
}

.accordion__content p {
    margin: 0;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 22px;
}

.cta-banner {
    position: relative;
    display: flex;
    width: min(var(--site-width), calc(100% - 32px));
    min-height: 320px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 52px 0;
    border-radius: 16px;
    margin: 0 auto 100px;
    background: var(--background-blue-100);
}

.cta-banner__copy {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 520px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-banner__copy p {
    margin: 0 0 24px;
    color: var(--text-white);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.cta-banner__copy h2 {
    margin: 0 0 32px;
    color: var(--text-white);
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
}

.cta-banner__left,
.cta-banner__right {
    position: absolute;
    z-index: 1;
    width: 290px;
    height: 210px;
    opacity: .85;
    transform: rotate(-15deg);
}

.cta-banner__left {
    left: 10px;
    top: -20px;
}

.cta-banner__right {
    right: -16px;
    top: 34px;
    transform: rotate(15deg);
}

.cta-banner--legal .cta-banner__left,
.cta-banner--legal .cta-banner__right {
    display: none;
}

.footer {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0 16px 54px;
}

.footer__inner {
    width: 100%;
    max-width: var(--site-width);
    border-top: 1px solid var(--border-gray-70);
    padding-top: 28px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer__brand p {
    margin: 8px 0 28px;
    color: var(--text-gray);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.footer__company-image {
    display: flex;
    gap: 8px;
}

.footer__company-image span {
    height: 18px;
    border-radius: 4px;
    background: #d7d7d7;
}

.footer__company-image span:first-child {
    width: 42px;
}

.footer__company-image span:nth-child(2) {
    width: 64px;
}

.footer__company-image span:nth-child(3) {
    width: 38px;
}

.footer__company-image span:nth-child(4) {
    width: 48px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 42px;
}

.footer h2 {
    margin: 0 0 12px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer a {
    font-size: 14px;
    line-height: 20px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-gray-70);
}

.footer__language-wrap {
    position: relative;
}

.language-menu--footer {
    top: auto;
    right: 0;
    bottom: 48px;
    left: auto;
}

.footer__copyright {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.footer__security {
    margin: 8px 0 0;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
}

.page-hero {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 64px 16px 48px;
    text-align: center;
}

.page-hero h1,
.contact-form h1,
.legal-layout h1,
.auth-card h1,
.faq-page__content h1 {
    margin: 0;
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
}

.pricing {
    display: grid;
    max-width: 856px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 auto 56px;
}

.price-card {
    padding: 24px;
    border: 1px solid var(--border-gray-40);
    border-radius: 12px;
    background: #fff;
}

.price-card.is-selected {
    border-color: var(--background-blue);
    box-shadow: var(--shadow-toolbar);
}

.price-card__price {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
}

.price-card__body {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.price-card h2 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.price-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 24px;
}

.price-card span:not(.price-card__radio) {
    display: inline-flex;
    margin-top: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #e0edff;
    color: var(--background-blue);
    font-size: 12px;
    font-weight: 600;
}

.price-card__radio {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid var(--border-gray-40);
    border-radius: 50%;
}

.price-card.is-selected .price-card__radio {
    border-color: var(--background-blue);
}

.price-card.is-selected .price-card__radio::after {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--background-blue);
    content: "";
}

.pricing__button {
    grid-column: 1 / -1;
    width: 420px;
    height: 52px;
    justify-self: center;
}

.features,
.questions {
    max-width: var(--site-width);
    margin: 0 auto 100px;
    padding: 0 16px;
}

.features h2 {
    margin: 0 0 48px;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
}

.feature {
    position: relative;
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 14px;
}

.feature__icon {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--background-blue-01);
    color: var(--background-blue);
}

.feature h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.feature__badge {
    align-self: flex-start;
    padding: 2px 7px;
    border-radius: 999px;
    background: #ffe8f3;
    color: #da2d26;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.questions > h2 {
    margin-bottom: 40px;
}

.faq-page {
    display: grid;
    max-width: var(--site-width);
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 52px;
    margin: 0 auto;
    padding: 64px 16px 100px;
}

.faq-nav {
    position: sticky;
    top: 180px;
    display: grid;
    height: fit-content;
    gap: 8px;
}

.faq-nav a {
    padding: 12px 14px;
    border-radius: var(--radius-control);
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.faq-nav a:hover {
    background: var(--control-tertiary-initial);
    color: var(--text-black-100);
}

.faq-group {
    margin-top: 56px;
}

.faq-group:first-of-type {
    margin-top: 32px;
}

.faq-group h2 {
    margin: 0 0 24px;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
}

.contact-page {
    display: grid;
    max-width: var(--site-width);
    gap: 80px;
    margin: 0 auto;
    padding: 58px 16px 100px;
}

.contact-form,
.auth-card {
    width: min(100%, 640px);
    margin: 0 auto;
    padding: 40px;
    border: 1px solid var(--border-blue-50);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-toolbar);
}

.contact-form > p,
.auth-card > p {
    margin: 12px 0 32px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 24px;
}

.contact-form label,
.unsubscribe-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.contact-form label span,
.unsubscribe-form label span {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.unsubscribe-form input {
    width: 100%;
    border: 1px solid var(--border-gray-40);
    border-radius: var(--radius-control);
    background: #fff;
    color: var(--text-black-100);
    font-size: 14px;
    line-height: 20px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select,
.unsubscribe-form input {
    height: 50px;
    padding: 0 14px;
}

.contact-form textarea {
    min-height: 160px;
    padding: 14px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.unsubscribe-form input:focus {
    border-color: var(--background-blue);
    box-shadow: 0 0 0 4px rgba(36, 138, 246, .12);
}

.form-message {
    margin: 14px 0 0;
    color: var(--icons-green-100);
    font-size: 14px;
    font-weight: 500;
}

.toast-message {
    position: fixed;
    z-index: 240;
    right: 18px;
    bottom: 18px;
    max-width: min(360px, calc(100vw - 36px));
    padding: 12px 14px;
    border-radius: var(--radius-control);
    background: #111827;
    color: #fff;
    box-shadow: var(--shadow-toolbar);
    font-size: 14px;
    line-height: 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease;
}

.toast-message.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.legal-page {
    position: relative;
    padding: 48px 16px 64px;
}

.legal-layout {
    max-width: 920px;
    margin: 0 auto;
}

.legal-layout__intro,
.legal-layout p {
    color: var(--text-gray);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 28px;
}

.legal-layout h1 + .legal-layout__intro {
    margin-top: 24px;
}

.legal-layout h1:not(:first-child) {
    margin-top: 64px;
}

.legal-layout h2 {
    margin: 36px 0 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.unsubscribe-page {
    display: grid;
    gap: 56px;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 48px 16px 100px;
}

.social-cancel {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    text-align: center;
}

.social-cancel span {
    color: var(--text-gray);
    font-size: 14px;
}

.social-cancel button {
    height: 46px;
    border: 1px solid var(--border-blue-50);
    border-radius: var(--radius-control);
    background: var(--control-secondary-initial);
    cursor: pointer;
}

.unsubscribe-page__contact {
    width: min(100%, 640px);
    margin: 0 auto;
    text-align: center;
}

.unsubscribe-page__contact h2 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 40px;
}

.unsubscribe-page__contact p {
    margin: 0 0 18px;
    color: var(--text-gray);
}

.auth-page {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 56px 16px 100px;
}

.auth-card label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.auth-card label span {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.auth-card input {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid var(--border-gray-40);
    border-radius: var(--radius-control);
    background: #fff;
    color: var(--text-black-100);
    font-size: 14px;
    line-height: 20px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.auth-card input:focus {
    border-color: var(--background-blue);
    box-shadow: 0 0 0 4px rgba(36, 138, 246, .12);
}

.auth-card__switch {
    margin: 22px 0 0;
    color: var(--text-gray);
    font-size: 14px;
    text-align: center;
}

.auth-card__switch a {
    color: var(--background-blue);
    font-weight: 600;
}

.tool-page {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 56px 16px 100px;
}

.tool-workspace {
    overflow: hidden;
    border: 1px solid var(--border-blue-50);
    border-radius: 18px;
    background:
        radial-gradient(circle at 9% 0, rgba(36, 138, 246, .12), transparent 26%),
        radial-gradient(circle at 92% 18%, rgba(218, 45, 38, .08), transparent 30%),
        #fff;
    box-shadow: var(--shadow-toolbar);
}

.tool-workspace__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-blue-50);
}

.tool-workspace__header .button svg {
    transform: rotate(90deg);
}

.tool-workspace__badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--background-blue-01);
    color: var(--background-blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tool-workspace__hero {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding: 32px 32px 8px;
}

.tool-workspace__icon {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 16px;
    background: var(--background-blue-01);
    color: var(--background-blue);
}

.tool-workspace h1 {
    margin: 0 0 8px;
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
}

.tool-workspace__hero p {
    max-width: 720px;
    margin: 0;
    color: var(--text-gray);
    font-size: 17px;
    line-height: 26px;
}

.tool-builder {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 24px;
    padding: 32px;
}

.tool-upload-panel,
.tool-options {
    border: 1px solid var(--border-blue-50);
    border-radius: 14px;
    background: rgba(255, 255, 255, .86);
}

.tool-upload-panel {
    padding: 14px;
}

.tool-upload-panel__drop {
    display: grid;
    min-height: 320px;
    place-items: center;
    align-content: center;
    gap: 10px;
    border: 1px dashed var(--border-blue-40);
    border-radius: 12px;
    color: var(--text-gray);
    cursor: pointer;
    text-align: center;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.tool-upload-panel__drop:hover,
.tool-upload-panel.is-drag-active .tool-upload-panel__drop {
    border-color: var(--background-blue);
    background: #f1f7ff;
    transform: translateY(-1px);
}

.tool-upload-panel__drop span {
    color: var(--background-blue);
}

.tool-upload-panel__drop strong {
    color: var(--text-black-100);
    font-size: 22px;
    line-height: 30px;
}

.tool-upload-panel__drop small {
    max-width: 420px;
    color: var(--text-gray-70);
    font-size: 12px;
    line-height: 18px;
}

.tool-upload-panel__file {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--control-secondary-initial);
    color: var(--text-gray);
    font-size: 14px;
    overflow-wrap: anywhere;
}

.service-buttons--tool {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.service-buttons--tool .button {
    width: 100%;
    min-height: 48px;
}

.tool-options {
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.tool-options h2 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.tool-field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.tool-field span,
.tool-check span {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.tool-field input,
.tool-field select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--border-gray-40);
    border-radius: var(--radius-control);
    background: #fff;
    outline: none;
}

.tool-field input:focus,
.tool-field select:focus {
    border-color: var(--background-blue);
    box-shadow: 0 0 0 4px rgba(36, 138, 246, .12);
}

.tool-check {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-bottom: 16px;
}

.tool-check input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--background-blue);
}

.tool-options__note {
    margin: 14px 0 0;
    color: var(--text-gray-70);
    font-size: 12px;
    line-height: 18px;
}

.tool-result {
    margin: 0 32px 32px;
    padding: 18px;
    border: 1px solid var(--border-blue-50);
    border-radius: 14px;
    background: #f8fbff;
}

.tool-result__status {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
}

.tool-result__bar {
    overflow: hidden;
    height: 8px;
    margin-top: 12px;
    border-radius: 999px;
    background: #dcecff;
}

.tool-result__bar span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: var(--background-blue);
    transition: width .35s ease;
}

.tool-result__done {
    margin-top: 18px;
}

.tool-result__done h2 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 30px;
}

.tool-result__done p {
    margin: 0 0 14px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 22px;
}

.related-tools {
    margin-top: 36px;
}

.related-tools h2 {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 32px;
}

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

.related-tools__grid a {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border-blue-50);
    border-radius: var(--radius-card);
    background: #fff;
    box-shadow: var(--shadow-small);
    font-size: 14px;
    font-weight: 600;
}

.related-tools__grid a span {
    color: var(--background-blue);
}

@media (max-width: 1299.98px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
    }

    .advantages__sticky {
        width: 500px;
        height: 350px;
    }
}

@media (max-width: 1023.98px) {
    .top-banner {
        padding: 0 16px;
    }

    .site-header {
        padding: 19px 16px;
    }

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

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

    .related-tools__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-page {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-nav {
        position: static;
        display: flex;
        overflow-x: auto;
    }

    .faq-nav a {
        white-space: nowrap;
    }
}

@media (max-width: 899.98px) {
    .advantages__sticky {
        width: 350px;
        height: 240px;
    }
}

@media (max-width: 766.98px) {
    .desktop-only,
    .top-banner,
    .auth-button,
    .site-header__tools-desktop,
    .advantages__sticky,
    .upload-zone__desktop-title {
        display: none;
    }

    .mobile-only,
    .mobile-support-bar,
    .site-header__tools-mobile,
    .burger-button,
    .upload-zone__mobile-title {
        display: flex;
    }

    .mobile-support-bar {
        width: 100%;
        height: 36px;
        align-items: center;
        justify-content: center;
        gap: 4px;
        background: var(--background-gray-10);
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
    }

    .mobile-support-bar a {
        text-decoration: underline;
    }

    .site-header {
        top: 36px;
        min-height: 64px;
        padding: 12px 16px;
    }

    .page--privacy .site-header,
    .page--terms .site-header,
    .page--unsubscribe .site-header {
        top: 0;
    }

    .logo__icon {
        width: 26px;
        height: 26px;
        font-size: 9px;
    }

    .logo__wordmark {
        font-size: 24px;
        line-height: 26px;
    }

    .site-header__actions {
        gap: 12px;
    }

    .site-header__tools-mobile {
        font-size: 12px;
        font-weight: 600;
    }

    .burger-button {
        display: flex;
    }

    .mobile-drawer {
        position: fixed;
        z-index: 35;
        top: 100px;
        right: 16px;
        display: grid;
        width: min(260px, calc(100vw - 32px));
        gap: 4px;
        padding: 12px;
        border: 1px solid var(--border-gray-70);
        border-radius: 12px;
        background: #fff;
        box-shadow: var(--shadow-toolbar);
    }

    .page--privacy .mobile-drawer,
    .page--terms .mobile-drawer,
    .page--unsubscribe .mobile-drawer {
        top: 64px;
    }

    .mobile-drawer a {
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 14px;
    }

    .mobile-drawer a:hover {
        background: var(--control-tertiary-initial);
    }

    .tools-overlay {
        inset: 100px 0 0;
    }

    .tools-menu {
        top: 100px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .page--privacy .tools-menu,
    .page--terms .tools-menu,
    .page--unsubscribe .tools-menu {
        top: 64px;
    }

    .page--privacy .tools-overlay,
    .page--terms .tools-overlay,
    .page--unsubscribe .tools-overlay {
        top: 64px;
    }

    .tools-menu__grid {
        grid-template-columns: 1fr;
    }

    .tools-menu__pdf {
        border-right: 0;
    }

    .tools-menu__columns {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 24px 32px;
    }

    .hero-surface {
        padding-bottom: 56px;
    }

    .hero {
        max-width: 343px;
        margin-bottom: 32px;
        padding-top: 28px;
    }

    .hero h1 {
        margin-bottom: 12px;
        font-size: 32px;
        line-height: 40px;
    }

    .hero p {
        font-size: 14px;
        line-height: 20px;
    }

    .upload {
        padding: 0 16px;
    }

    .blur,
    .upload__blur {
        display: none;
    }

    .upload__box {
        min-height: 529px;
    }

    .upload-zone {
        min-height: 280px;
        padding: 26px 16px;
    }

    .upload-zone__mobile-title {
        margin: 16px 0 20px;
        font-size: 18px;
        line-height: 24px;
    }

    .button--upload {
        width: 122px;
        height: 52px;
        margin-top: 0;
    }

    .upload-zone__description {
        max-width: 291px;
        margin-top: 24px;
    }

    .upload-zone__secure {
        display: none;
    }

    .service-buttons {
        display: grid;
        gap: 12px;
        margin-top: 20px;
    }

    .button--cloud {
        width: 100%;
        height: 58px;
    }

    .stats {
        width: 100%;
        justify-content: space-between;
        margin: 56px 0;
        padding: 0 16px;
    }

    .stats article {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .stats article:not(:last-child) {
        margin-right: 0;
    }

    .stats strong {
        margin-top: 8px;
        font-size: 14px;
        line-height: 20px;
    }

    .stats span:last-child {
        max-width: 90px;
    }

    .tools-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 56px;
        padding: 0 16px;
    }

    .tool-card {
        height: 104px;
        border: 0;
        box-shadow: none;
    }

    .tool-card--extra {
        display: none;
    }

    .tools-grid.is-expanded .tool-card--extra {
        display: flex;
    }

    .tools-grid__show {
        display: flex;
        width: 100%;
        height: 52px;
    }

    .tool-card__icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .tool-card h2 {
        font-size: 16px;
        line-height: 24px;
    }

    .tool-card p {
        font-size: 13px;
        line-height: 18px;
    }

    .advantages {
        padding: 0 16px;
    }

    .advantages > h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .advantages__subtitle {
        margin-top: 14px;
        font-size: 14px;
        line-height: 20px;
    }

    .advantages__content {
        justify-content: center;
        margin-top: 40px;
    }

    .advantage-item {
        width: 100%;
        min-height: 0;
        gap: 16px;
        margin-bottom: 32px;
    }

    .advantage-item__mobile-visual {
        display: block;
        height: 191px;
    }

    .advantage-item__mobile-visual .visual-panel {
        min-height: 191px;
        border-radius: 12px;
    }

    .advantage-item__copy {
        padding: 0;
    }

    .advantage-item h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .advantage-item p {
        font-size: 13px;
        line-height: 18px;
    }

    .visual-panel__document {
        top: 52px;
        left: 16px;
        min-height: 120px;
        padding: 16px;
    }

    .visual-panel__rail {
        top: 56px;
        right: 16px;
        gap: 8px;
    }

    .visual-panel__rail span {
        min-height: 28px;
        font-size: 10px;
    }

    .visual-panel__annotation,
    .visual-panel__signature {
        font-size: 10px;
    }

    .advantage-upload {
        width: 100%;
        max-width: 343px;
        margin: 0 auto;
        height: 52px;
    }

    .faq-section {
        margin: 56px 0;
        padding: 0 16px;
    }

    .faq-section > h2,
    .questions > h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
    }

    .faq-section > p {
        margin: 12px 0 20px;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    .tabs__list {
        width: 100%;
        overflow-x: auto;
        gap: 8px;
        margin-bottom: 24px;
        padding: 0 0 12px;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .tabs__tab {
        border: 1px solid rgba(0, 0, 0, .24);
        white-space: nowrap;
    }

    .tabs__glider {
        top: 0;
        height: 42px;
    }

    .accordion {
        gap: 12px;
    }

    .accordion__trigger {
        padding: 16px 12px;
    }

    .accordion__trigger span {
        font-size: 14px;
        line-height: 20px;
    }

    .accordion__content {
        padding: 0 12px 16px;
    }

    .cta-banner {
        min-height: 230px;
        margin-bottom: 56px;
        padding: 32px 8px;
    }

    .cta-banner__left {
        width: 130px;
        height: 140px;
        left: -48px;
        top: 38px;
    }

    .cta-banner__right {
        width: 190px;
        height: 160px;
        right: -114px;
        top: -14px;
    }

    .cta-banner__copy p {
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 24px;
    }

    .cta-banner__copy h2 {
        margin-bottom: 24px;
        padding: 0 20px;
        font-size: 20px;
        line-height: 28px;
    }

    .button--large {
        min-width: 182px;
    }

    .footer {
        padding: 0 16px 28px;
    }

    .footer__top {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .footer__brand {
        display: grid;
        justify-items: center;
    }

    .footer__brand p {
        max-width: 220px;
        font-size: 11px;
        font-weight: 500;
        line-height: 16px;
    }

    .footer__links {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        text-align: left;
    }

    .footer h2 {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
    }

    .footer a {
        font-size: 12px;
        line-height: 16px;
    }

    .footer__bottom {
        display: block;
        text-align: center;
    }

    .footer__language {
        display: none;
    }

    .page-hero {
        padding: 44px 16px 32px;
    }

    .page-hero h1,
    .contact-form h1,
    .legal-layout h1,
    .auth-card h1,
    .faq-page__content h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .pricing {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .pricing__button {
        width: 100%;
    }

    .features,
    .questions {
        margin-bottom: 56px;
    }

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

    .faq-page {
        padding: 40px 16px 64px;
    }

    .contact-page {
        padding: 40px 16px 64px;
    }

    .contact-form,
    .auth-card {
        padding: 24px;
    }

    .auth-page,
    .tool-page {
        padding: 40px 16px 64px;
    }

    .tool-workspace {
        border-radius: 12px;
    }

    .tool-workspace__header {
        padding: 14px;
    }

    .tool-workspace__hero {
        grid-template-columns: 1fr;
        padding: 24px 18px 0;
    }

    .tool-workspace__icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    .tool-workspace h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .tool-workspace__hero p {
        font-size: 14px;
        line-height: 22px;
    }

    .tool-builder {
        gap: 16px;
        padding: 18px;
    }

    .tool-upload-panel__drop {
        min-height: 230px;
    }

    .tool-upload-panel__drop strong {
        font-size: 18px;
        line-height: 24px;
    }

    .service-buttons--tool,
    .related-tools__grid {
        grid-template-columns: 1fr;
    }

    .tool-result {
        margin: 0 18px 18px;
    }

    .legal-page {
        padding-top: 40px;
    }
}

@media (max-width: 423.98px) {
    .logo__wordmark {
        font-size: 22px;
    }

    .site-header__tools-mobile {
        width: auto;
        padding-inline: 10px;
    }

    .footer__links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
