:root {
    --color-primary: #0f172a;
    --color-primary-soft: #1e293b;
    --color-secondary: #334155;
    --color-accent: #0369a1;
    --color-accent-strong: #075985;
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-surface-alt: #eef3f8;
    --color-muted: #dce5ef;
    --color-border: #d2ddeb;
    --color-text: #020617;
    --color-text-soft: #334155;
    --color-success: #0f766e;
    --color-danger: #b91c1c;
    --radius-xs: 10px;
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --shadow-sm: 0 12px 28px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 28px 64px rgba(15, 23, 42, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    background:
        radial-gradient(circle at 7% 14%, rgba(3, 105, 161, 0.14) 0%, rgba(3, 105, 161, 0) 34%),
        radial-gradient(circle at 95% 0%, rgba(15, 118, 110, 0.11) 0%, rgba(15, 118, 110, 0) 28%),
        linear-gradient(180deg, #f8fafc 0%, #f0f5fb 100%);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-accent-strong);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(3, 105, 161, 0.35);
    outline-offset: 2px;
}

.site-main {
    overflow: clip;
}

.container {
    width: min(1180px, calc(100% - 44px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 15px;
    z-index: 110;
    background: transparent;
}

.header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.87);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    overflow: visible;
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-primary);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    min-width: 0;
}

.brand:hover {
    text-decoration: none;
}

.brand--lockup {
    display: block;
    width: clamp(160px, 16.5vw, 252px);
    height: 62px;
    flex: 0 0 auto;
    overflow: visible;
}

.brand-lockup-frame {
    position: absolute;
    left: -2px;
    top: 50%;
    width: calc(100% + 8px);
    height: clamp(86px, 7.2vw, 104px);
    transform: translateY(-56%);
    pointer-events: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(150deg, var(--color-accent), var(--color-primary));
    color: #fff;
    letter-spacing: 0.09em;
    font-size: 0.72rem;
    font-weight: 700;
    flex: 0 0 auto;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-logo--lockup {
    object-position: left center;
    filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.2));
}

.site-nav {
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: linear-gradient(180deg, #f7fbff 0%, #edf3fb 100%);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
    display: none;
}

.menu-list {
    margin: 0;
    padding: 0;
    width: max-content;
    min-width: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(8px, 0.8vw, 14px);
}

.menu-list li {
    flex: 0 0 auto;
    position: relative;
}

.menu-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    transition: background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.menu-list a:hover {
    text-decoration: none;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.menu-list .current-menu-item > a,
.menu-list .current_page_item > a,
.menu-list .current-menu-ancestor > a {
    color: var(--color-accent-strong);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
}

.menu-list .menu-item-has-children > a {
    padding-right: 25px;
}

.menu-list .menu-item-has-children > a::after {
    content: "▾";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-47%);
    font-size: 0.72rem;
    opacity: 0.75;
}

.menu-list .sub-menu {
    margin: 0;
    padding: 8px;
    list-style: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 290px;
    max-width: min(92vw, 360px);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 30;
}

.menu-list .sub-menu li {
    width: 100%;
}

.menu-list .sub-menu a {
    width: 100%;
    min-height: 40px;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.9rem;
}

.menu-list > .menu-item-has-children:hover > .sub-menu,
.menu-list > .menu-item-has-children:focus-within > .sub-menu {
    display: block;
}

.submenu-toggle {
    display: none;
}

.header-right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    color: var(--color-primary);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.94rem;
    font-weight: 600;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 46px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--color-accent), var(--color-accent-strong));
    color: #fff;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 14px 30px rgba(3, 105, 161, 0.24);
    cursor: pointer;
    touch-action: manipulation;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    text-decoration: none;
    filter: brightness(1.04);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(3, 105, 161, 0.28);
}

.btn:active {
    transform: translateY(0);
}

.btn-ghost {
    color: var(--color-primary);
    border-color: rgba(15, 23, 42, 0.18);
    background: #fff;
    box-shadow: none;
}

.btn-ghost:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.hero {
    position: relative;
    padding: clamp(58px, 8vw, 88px) 0 30px;
}

.hero--home::before {
    content: "";
    position: absolute;
    width: clamp(300px, 34vw, 520px);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    right: -160px;
    top: -220px;
    background: radial-gradient(circle, rgba(3, 105, 161, 0.2) 0%, rgba(3, 105, 161, 0) 70%);
    pointer-events: none;
}

.compact-hero {
    padding: clamp(38px, 6vw, 62px) 0 10px;
}

.service-hero {
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    width: clamp(260px, 30vw, 420px);
    aspect-ratio: 1 / 1;
    right: -120px;
    top: -170px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.2) 0%, rgba(15, 118, 110, 0) 68%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: clamp(20px, 3vw, 34px);
    align-items: center;
}

.service-hero-side {
    display: grid;
    gap: 14px;
}

.service-hero-photo {
    margin: 0;
    border-radius: var(--radius-md);
    border: 0;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
}

.service-hero-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.eyebrow {
    margin: 0 0 10px;
    font-family: "Lexend", "Segoe UI", sans-serif;
    color: var(--color-accent-strong);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    margin-bottom: 0.7em;
    color: var(--color-primary);
    font-family: "Lexend", "Segoe UI", sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 2.3vw + 1.25rem, 3.55rem);
    margin-bottom: 14px;
    letter-spacing: -0.025em;
}

.hero--home h1 {
    max-width: 18ch;
    font-size: clamp(1.95rem, 1.7vw + 1.3rem, 3.1rem);
    line-height: 1.14;
}

.hero--home .hero-copy {
    max-width: 58ch;
}

h2 {
    font-size: clamp(1.48rem, 1.4vw + 0.95rem, 2.22rem);
}

h3 {
    font-size: clamp(1.08rem, 0.5vw + 0.95rem, 1.3rem);
}

.hero-copy {
    margin: 0;
    max-width: 64ch;
    color: var(--color-text-soft);
    font-size: 1.07rem;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-actions-center {
    justify-content: center;
}

.hero-points {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.hero-points li {
    position: relative;
    padding-left: 25px;
    color: var(--color-text-soft);
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.49em;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #7dd3fc 0%, #0ea5e9 90%);
    box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.12);
}

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

.metric-card {
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: var(--shadow-sm);
}

.metric-label {
    margin: 0 0 7px;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #64748b;
}

.metric-value {
    margin: 0;
    color: var(--color-primary);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 1.34rem;
    font-weight: 600;
    line-height: 1.15;
}

.metric-value-sm {
    font-size: 1rem;
}

.service-hero .metric-grid {
    gap: 14px;
}

.service-hero .metric-grid--service .metric-card--service {
    position: relative;
    display: grid;
    gap: 10px;
    min-height: 136px;
    padding: 16px;
    overflow: hidden;
    isolation: isolate;
    border-color: rgba(14, 116, 144, 0.24);
    background: linear-gradient(160deg, #ffffff 0%, #f4f9ff 56%, #edf6ff 100%);
    box-shadow: 0 13px 28px rgba(15, 23, 42, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-hero .metric-grid--service .metric-card--service::before {
    content: "";
    position: absolute;
    top: -42px;
    right: -34px;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, rgba(14, 165, 233, 0) 72%);
    z-index: -1;
    transition: transform 0.24s ease;
}

.service-hero .metric-grid--service .metric-card--service:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 116, 144, 0.42);
    box-shadow: 0 18px 34px rgba(3, 105, 161, 0.18);
}

.service-hero .metric-grid--service .metric-card--service:hover::before {
    transform: scale(1.08);
}

.service-hero .metric-grid--service .metric-card--service:first-child {
    border-color: rgba(14, 116, 144, 0.45);
    background: linear-gradient(148deg, #ffffff 0%, #eef9ff 46%, #dff3ff 100%);
}

.service-hero .metric-grid--service .metric-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-hero .metric-grid--service .metric-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-hero .metric-grid--service .metric-card--service:hover .metric-card-icon {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 10px 18px rgba(3, 105, 161, 0.18);
}

.service-hero .metric-grid--service .metric-card--service .metric-label {
    margin: 0;
    color: #0f4c73;
}

.service-hero .metric-grid--service .metric-card--service .metric-value {
    margin: 0;
    color: #0f172a;
}

.service-hero .metric-grid--service .metric-card--service:first-child .metric-value {
    font-size: clamp(1.62rem, 0.95vw + 1.3rem, 2.02rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-hero .metric-grid--service .metric-note {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.35;
    color: #475569;
}

.hero-card,
.panel,
.price-card,
.service-card,
.trust-card,
.doc-card,
.case-card,
.work-card,
.method-card,
.process-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.hero-card {
    padding: 24px;
    background:
        linear-gradient(150deg, #ffffff 0%, #eef5fd 100%);
    border-top: 4px solid rgba(3, 105, 161, 0.3);
}

.hero-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.hero-card li {
    position: relative;
    padding-left: 20px;
    color: var(--color-text-soft);
}

.hero-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
}

.hero-note {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-soft);
}

.hero-note p {
    margin: 0 0 5px;
    font-size: 0.96rem;
}

.section {
    padding: clamp(34px, 5vw, 66px) 0;
}

.section-tight {
    padding-top: 18px;
    padding-bottom: 6px;
}

.section-alt {
    background: linear-gradient(180deg, #f2f7fd 0%, #edf4fb 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.hero--with-brand-man,
.section--with-brand-man {
    position: relative;
    overflow: hidden;
}

.hero--with-brand-man > .container,
.section--with-brand-man > .container {
    position: relative;
    z-index: 2;
}

.brand-man {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.16));
    transform-origin: 50% 100%;
    transition: opacity 0.52s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), filter 0.62s ease;
}

.brand-man--hero {
    right: clamp(-24px, 1vw, 42px);
    bottom: -18px;
    width: clamp(214px, 22.5vw, 338px);
    z-index: 1;
    filter: drop-shadow(0 15px 28px rgba(15, 23, 42, 0.1));
    clip-path: inset(5px 0 0 0);
}

.brand-man--process {
    left: clamp(-44px, -2.4vw, 10px);
    bottom: -14px;
    width: clamp(220px, 20.5vw, 322px);
}

.brand-man--process[data-reveal] {
    --reveal-transform-start: translate3d(-24px, 12px, 0) scaleX(-1);
    --reveal-transform-end: translate3d(0, 0, 0) scaleX(-1);
}

.brand-man--services {
    right: clamp(92px, 8.2vw, 178px);
    left: auto;
    top: auto;
    bottom: -18px;
    width: clamp(250px, 22.5vw, 338px);
}

.brand-man--cta {
    right: clamp(-34px, 1.8vw, 34px);
    left: auto;
    bottom: -20px;
    width: clamp(336px, 28.5vw, 456px);
    z-index: 1;
}

.section--with-brand-man-process > .container {
    padding-left: clamp(10px, 4.8vw, 86px);
}

.section--with-brand-man-services > .container {
    padding-right: clamp(0px, 2.4vw, 42px);
}

.section--with-brand-man-cta > .container {
    padding-left: 0;
    padding-right: clamp(88px, 10.8vw, 196px);
}

.section--with-brand-man-cta {
    min-height: clamp(430px, 36vw, 540px);
}

.section--with-brand-man-cta .cta {
    position: relative;
    z-index: 3;
}

.section--with-brand-man-service-cta > .container {
    padding-right: clamp(52px, 7vw, 136px);
}

.section--with-brand-man-service-cta .cta {
    position: relative;
    z-index: 3;
}

.section-head {
    margin-bottom: 20px;
}

.section-assurance {
    padding-top: clamp(14px, 2.2vw, 26px);
}

.assurance-block {
    padding: clamp(20px, 3vw, 30px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(3, 105, 161, 0.2);
    background:
        linear-gradient(158deg, #f8fcff 0%, #eef6ff 56%, #e7f1fd 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.assurance-block::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -90px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.14) 0%, rgba(14, 116, 144, 0) 70%);
    pointer-events: none;
}

.assurance-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.45fr);
    gap: clamp(14px, 2.4vw, 28px);
    align-items: start;
}

.assurance-intro {
    padding: clamp(14px, 2vw, 20px);
    border-radius: 20px;
    border: 1px solid rgba(14, 116, 144, 0.16);
    background: linear-gradient(152deg, rgba(255, 255, 255, 0.86) 0%, rgba(239, 247, 255, 0.86) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.assurance-intro h2 {
    margin-bottom: 14px;
    max-width: 18ch;
}

.assurance-lead {
    margin: 0;
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.55;
}

.assurance-badge {
    margin: 16px 0 0;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 118, 110, 0.32);
    background: linear-gradient(180deg, #ffffff 0%, #ebf9f7 100%);
    color: #0f766e;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.assurance-grid {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.assurance-item {
    min-height: 112px;
    display: grid;
    grid-template-columns: 34px 44px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    padding: 14px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(3, 105, 161, 0.18);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.assurance-item:hover {
    transform: translateY(-2px);
    border-color: rgba(14, 116, 144, 0.34);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.assurance-index {
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgba(14, 116, 144, 0.26);
    background: linear-gradient(154deg, #f2fbff 0%, #e5f4ff 100%);
    color: #0b5f8b;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.assurance-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #0f5f93;
    border: 1px solid rgba(15, 118, 110, 0.24);
    background: linear-gradient(155deg, #e7f7ff 0%, #def5f4 100%);
}

.assurance-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.assurance-item p {
    margin: 2px 0 0;
    color: var(--color-primary-soft);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}

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

.process-card {
    padding: 18px;
    border-top: 3px solid rgba(15, 118, 110, 0.34);
}

.process-step {
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #dff4f3;
    color: #0f766e;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.process-card p {
    margin: 0;
    color: var(--color-text-soft);
}

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

.service-grid--popular {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-theme-block + .service-theme-block {
    margin-top: clamp(24px, 3.2vw, 38px);
}

.service-theme-head {
    margin-bottom: 14px;
}

.service-theme-head h2 {
    margin-bottom: 8px;
}

.service-theme-head p {
    margin: 0;
    color: var(--color-text-soft);
    max-width: 72ch;
}

.service-card {
    display: block;
    height: 100%;
    padding: 20px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card--with-media {
    overflow: hidden;
    padding-top: 0;
}

.service-card-media {
    display: block;
    width: calc(100% + 40px);
    margin: 0 -20px 14px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid var(--color-border);
}

.service-card:hover {
    text-decoration: none;
    transform: translateY(-4px);
    border-color: rgba(3, 105, 161, 0.35);
    box-shadow: var(--shadow-md);
}

.service-card p {
    margin: 0;
    color: var(--color-text-soft);
}

.service-card h3 {
    margin: 0 0 8px;
}

.service-card--popular {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card--popular .service-card-media {
    transition: transform 0.32s ease, filter 0.32s ease;
    filter: saturate(1.05);
}

.service-card--popular:hover .service-card-media {
    transform: scale(1.03);
    filter: saturate(1.14);
}

.service-card-index {
    margin: 0;
    color: var(--color-accent-strong);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card--popular p:last-of-type {
    margin-bottom: 0;
    flex-grow: 1;
}

.service-card-more {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent-strong);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.2;
}

.service-card-more::after {
    content: "→";
    transform: translateX(0);
    transition: transform 0.22s ease;
}

.service-card--popular:hover .service-card-more::after {
    transform: translateX(4px);
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.panel {
    padding: 22px;
}

.panel-form {
    background:
        linear-gradient(160deg, #ffffff 0%, #f2f8ff 100%);
}

.check-list,
.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.check-list li,
.contact-list li {
    position: relative;
    padding-left: 22px;
    color: var(--color-text-soft);
}

.check-list li::before,
.contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.56em;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(145deg, #38bdf8, #0284c7);
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: service-step;
    display: grid;
    gap: 12px;
    max-width: 980px;
}

.steps li {
    counter-increment: service-step;
    position: relative;
    min-height: 74px;
    padding: 14px 16px 14px 76px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(3, 105, 161, 0.22);
    background:
        linear-gradient(160deg, #ffffff 0%, #f4f9ff 76%, #ecf5ff 100%);
    color: var(--color-primary-soft);
    line-height: 1.5;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.steps li:nth-child(even) {
    border-color: rgba(15, 118, 110, 0.24);
    background:
        linear-gradient(160deg, #ffffff 0%, #f1fbfa 76%, #e8f6f4 100%);
}

.steps li::before {
    content: counter(service-step, decimal-leading-zero);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: linear-gradient(145deg, #0284c7, #0369a1);
    color: #fff;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 20px rgba(3, 105, 161, 0.28);
}

.steps li:nth-child(even)::before {
    background: linear-gradient(145deg, #14b8a6, #0f766e);
    box-shadow: 0 10px 20px rgba(15, 118, 110, 0.24);
}

.steps li::after {
    content: "";
    position: absolute;
    left: 37px;
    top: calc(100% - 2px);
    width: 2px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(3, 105, 161, 0.44), rgba(3, 105, 161, 0.03));
}

.steps li:nth-child(even)::after {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.44), rgba(15, 118, 110, 0.03));
}

.steps li:last-child::after {
    display: none;
}

.steps li:hover {
    transform: translateX(4px);
    border-color: rgba(3, 105, 161, 0.34);
    box-shadow: var(--shadow-md);
}

.steps li:nth-child(even):hover {
    border-color: rgba(15, 118, 110, 0.38);
}

.pill-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.pill-list li {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-primary);
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.price-factor-grid {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.price-factor-card {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(3, 105, 161, 0.22);
    background: linear-gradient(165deg, #ffffff 0%, #f1f8ff 100%);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.price-factor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(3, 105, 161, 0.4);
    box-shadow: 0 16px 28px rgba(3, 105, 161, 0.16);
}

.service-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(3, 105, 161, 0.28);
    background: linear-gradient(160deg, #ffffff 0%, #e6f4ff 100%);
    color: var(--color-accent-strong);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.09);
}

.service-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.price-factor-label {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0f766e;
}

.price-factor-text {
    margin: 0;
    color: var(--color-primary);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 1.03rem;
    line-height: 1.35;
}

.service-badges {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-badges li {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(3, 105, 161, 0.28);
    background: rgba(3, 105, 161, 0.1);
    color: var(--color-accent-strong);
    font-size: 0.82rem;
    font-weight: 600;
}

.method-grid,
.trust-grid,
.doc-grid,
.case-grid,
.work-grid,
.price-grid,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.trust-card,
.doc-card,
.case-card,
.work-card,
.method-card,
.price-card {
    padding: 18px;
}

.trust-card,
.doc-card,
.case-card,
.work-card,
.method-card {
    border-top: 3px solid rgba(3, 105, 161, 0.27);
}

.trust-card p,
.doc-card p,
.case-card p,
.work-card p,
.method-card p,
.price-card p {
    margin: 0;
    color: var(--color-text-soft);
}

.doc-card > .text-link {
    display: inline-flex;
    margin-top: 10px;
}

.case-card p {
    margin-top: 7px;
}

.card-heading {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.card-heading h3 {
    margin: 0;
}

.trust-card--enhanced,
.doc-card--enhanced,
.case-card--enhanced {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(3, 105, 161, 0.2);
    background: linear-gradient(165deg, #ffffff 0%, #f7fbff 100%);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.trust-card--enhanced::before,
.doc-card--enhanced::before,
.case-card--enhanced::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(3, 105, 161, 0.78), rgba(20, 184, 166, 0.74));
}

.trust-card--enhanced:hover,
.doc-card--enhanced:hover,
.case-card--enhanced:hover {
    transform: translateY(-4px);
    border-color: rgba(3, 105, 161, 0.38);
    box-shadow: 0 16px 30px rgba(3, 105, 161, 0.15);
}

.trust-card--enhanced .service-card-icon {
    color: #0f766e;
    border-color: rgba(15, 118, 110, 0.28);
    background: linear-gradient(160deg, #ffffff 0%, #e7faf5 100%);
}

.doc-card--enhanced .service-card-icon {
    color: #0369a1;
}

.case-card--enhanced .service-card-icon {
    color: #b45309;
    border-color: rgba(180, 83, 9, 0.3);
    background: linear-gradient(160deg, #ffffff 0%, #fff5eb 100%);
}

.doc-meta {
    margin: 10px 0 0;
    font-size: 0.84rem;
    color: #0f766e;
    font-weight: 600;
}

.doc-actions {
    margin-top: 12px;
}

.doc-actions .text-link {
    margin-top: 0;
}

.text-link--secondary {
    border-color: rgba(15, 23, 42, 0.16) !important;
    background: #fff !important;
    color: var(--color-primary) !important;
}

.case-order {
    margin: 0 0 4px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b45309;
}

.case-flow {
    margin: 0;
    display: grid;
    gap: 9px;
}

.case-flow div {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
}

.case-flow dt {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #64748b;
    font-weight: 700;
}

.case-flow dd {
    margin: 5px 0 0;
    color: var(--color-text-soft);
}

.work-card {
    padding: 0;
    overflow: hidden;
}

.work-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(165deg, #f8fbff 0%, #edf3fb 100%);
}

.work-body {
    padding: 16px;
    display: grid;
    gap: 8px;
}

.work-result {
    margin-top: 3px;
    color: var(--color-accent-strong);
    font-weight: 600;
}

.faq {
    display: grid;
    gap: 10px;
}

.faq details {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 12px 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

.faq summary {
    cursor: pointer;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-weight: 600;
    color: var(--color-primary);
}

.faq p {
    margin: 10px 0 2px;
    color: var(--color-text-soft);
}

.service-methods .method-grid {
    gap: 16px;
}

.service-methods .method-card {
    position: relative;
    padding: 20px;
    border-top: 1px solid rgba(3, 105, 161, 0.2);
    background:
        linear-gradient(160deg, #ffffff 0%, #f4f9ff 74%, #ebf5ff 100%);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-methods .method-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(3, 105, 161, 0.8), rgba(20, 184, 166, 0.76));
}

.service-methods .method-card::after {
    content: "";
    position: absolute;
    right: -52px;
    top: -52px;
    width: 154px;
    height: 154px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.26) 0%, rgba(56, 189, 248, 0) 68%);
    pointer-events: none;
}

.service-methods .method-card h3 {
    margin: 0 0 8px;
    padding-right: 28px;
    color: var(--color-primary);
}

.service-methods .method-card p {
    margin: 0;
    color: var(--color-text-soft);
}

.service-methods .method-card:hover {
    transform: translateY(-4px);
    border-color: rgba(3, 105, 161, 0.35);
    box-shadow: var(--shadow-md);
}

.service-prep .two-col {
    gap: 18px;
}

.service-prep .panel {
    position: relative;
    overflow: hidden;
    border-color: rgba(3, 105, 161, 0.2);
    background:
        linear-gradient(165deg, #ffffff 0%, #f4f9ff 100%);
}

.service-prep .panel::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(2, 132, 199, 0.75), rgba(14, 165, 233, 0.3));
}

.service-prep .panel:nth-child(even)::before {
    background: linear-gradient(90deg, rgba(15, 118, 110, 0.76), rgba(20, 184, 166, 0.32));
}

.service-prep .panel h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.service-faq .faq {
    max-width: 980px;
    gap: 12px;
}

.service-faq .faq details {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-color: rgba(3, 105, 161, 0.2);
    background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.service-faq .faq details::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.72), rgba(14, 165, 233, 0.28));
}

.service-faq .faq summary {
    list-style: none;
    margin: 0;
    padding: 14px 50px 14px 18px;
    display: block;
    position: relative;
    color: var(--color-primary);
    transition: color 0.22s ease;
}

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

.service-faq .faq summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-52%);
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(3, 105, 161, 0.28);
    background: #f0f8ff;
    color: var(--color-accent-strong);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1;
    display: grid;
    place-items: center;
}

.service-faq .faq details[open] {
    border-color: rgba(3, 105, 161, 0.34);
    box-shadow: var(--shadow-md);
}

.service-faq .faq details:hover {
    transform: translateX(2px);
}

.service-faq .faq details[open] summary {
    color: var(--color-accent-strong);
}

.service-faq .faq details[open] summary::after {
    content: "-";
}

.service-faq .faq p {
    margin: 0;
    padding: 12px 18px 16px 18px;
    border-top: 1px solid rgba(3, 105, 161, 0.12);
}

.service-coverage {
    position: relative;
}

.service-coverage > .container {
    position: relative;
    z-index: 2;
}

.brand-man--coverage-pointer {
    left: max(4px, calc((100vw - min(1180px, calc(100vw - 44px))) / 2 - 354px));
    right: auto;
    top: auto;
    bottom: -2px;
    width: clamp(300px, 21vw, 420px);
    z-index: 1;
    filter: none;
    opacity: 0.98;
}

.coverage-intro {
    margin: 0;
    max-width: 72ch;
    color: var(--color-text-soft);
}

.coverage-map-card {
    margin-top: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 16px;
}

.coverage-map-stage {
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f8fbff;
}

.coverage-map {
    display: block;
    width: 100%;
    height: auto;
}

.coverage-map-ring {
    fill: none;
    stroke: #d5e3f5;
    stroke-width: 1;
}

.coverage-map-district {
    fill: #dbeafe;
    stroke: #7ea7d1;
    stroke-width: 1;
    cursor: pointer;
    transition: fill 0.2s ease;
}

.coverage-map-district:hover,
.coverage-map-district:focus-visible,
.coverage-map-district.is-active {
    fill: #93c5fd;
    outline: none;
}

.coverage-map-district-label {
    fill: #0f172a;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
}

.coverage-map-core {
    fill: #0f766e;
    stroke: #0b5e58;
    stroke-width: 1;
}

.coverage-map-core-label {
    fill: #fff;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
}

.coverage-map-city {
    fill: #14b8a6;
    stroke: #0f766e;
    stroke-width: 1;
    cursor: pointer;
    transition: fill 0.2s ease;
}

.coverage-map-city:hover,
.coverage-map-city:focus-visible,
.coverage-map-city.is-active {
    fill: #0f766e;
    outline: none;
}

.coverage-map-info {
    display: grid;
    align-content: start;
    gap: 10px;
}

.coverage-map-lead,
.coverage-map-region,
.coverage-map-hint {
    margin: 0;
    color: var(--color-text-soft);
}

.coverage-map-lead {
    font-weight: 600;
}

.coverage-map-active {
    margin: 0;
    min-height: 64px;
    padding: 10px 12px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(2, 132, 199, 0.25);
    background: #f1f7ff;
    color: var(--color-primary);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.coverage-map-lists {
    display: grid;
    gap: 12px;
}

.coverage-list-block {
    display: grid;
    gap: 8px;
}

.coverage-list-title {
    margin: 0;
    color: var(--color-text-soft);
}

.coverage-link-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.coverage-link-list-cities {
    max-height: 220px;
    overflow: auto;
    padding-right: 4px;
    scrollbar-width: thin;
}

.coverage-link-chip {
    min-height: 34px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(2, 132, 199, 0.24);
    background: #f4f9ff;
    color: #0f2e4f;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.coverage-link-chip:hover,
.coverage-link-chip:focus-visible,
.coverage-link-chip.is-active {
    border-color: rgba(3, 105, 161, 0.45);
    background: #dbeafe;
    color: #0b2f52;
    outline: none;
}

.price-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.price {
    margin: 2px 0 8px;
    color: var(--color-accent-strong);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1.15;
}

.price-note {
    margin: 14px 0 0;
    color: var(--color-text-soft);
}

.price-table-caption {
    margin: 0;
    max-width: 72ch;
    color: var(--color-text-soft);
}

.price-table-group {
    margin-top: 24px;
    padding: clamp(14px, 2vw, 20px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.price-table-title {
    margin-bottom: 12px;
}

.price-table-wrap + .price-table-title {
    margin-top: 16px;
}

.price-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #c7d8ec;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

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

.price-table th,
.price-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: middle;
}

.price-table th {
    color: var(--color-primary);
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    background: #eaf3ff;
    position: sticky;
    top: 0;
    z-index: 1;
}

.price-table tbody td:first-child {
    color: #0f2e4f;
    font-weight: 600;
}

.price-table tbody td:last-child {
    color: var(--color-accent-strong);
    font-weight: 600;
}

.price-table tr:last-child td {
    border-bottom: 0;
}

.price-table tbody tr:nth-child(even) {
    background: #f8fbff;
}

.price-table tbody tr:hover {
    background: #eef6ff;
}

.price-plan-details {
    border-color: rgba(2, 132, 199, 0.22);
}

.tariff-diff-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.tariff-diff-card {
    position: relative;
    padding: 16px 16px 14px;
    border-radius: 12px;
    border: 1px solid #c7d8ec;
    background: #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.tariff-diff-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(120deg, var(--tariff-color), var(--color-primary));
}

.tariff-diff-card--lite {
    --tariff-color: #0284c7;
}

.tariff-diff-card--basis {
    --tariff-color: #0f766e;
}

.tariff-diff-card--premium {
    --tariff-color: #7c3aed;
}

.tariff-diff-kicker {
    margin: 0;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

.tariff-diff-card h4 {
    margin: 8px 0 10px;
    font-size: 1.08rem;
}

.tariff-diff-list {
    gap: 8px;
}

.cta {
    padding: clamp(22px, 3vw, 32px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(3, 105, 161, 0.3);
    background:
        linear-gradient(150deg, #fafdff 0%, #e8f5ff 100%);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta p {
    margin: 0 auto;
    max-width: 72ch;
    color: var(--color-text-soft);
}

.cta-phone {
    margin: 18px 0 0;
}

.cta-phone-label {
    display: block;
    margin-bottom: 10px;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

.cta-phone a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    padding: 12px 30px;
    border-radius: 999px;
    border: 1px solid rgba(3, 105, 161, 0.42);
    background: linear-gradient(140deg, #075985 0%, #0f172a 100%);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.24);
    color: #fff;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-phone a:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.3);
}

.cta-form {
    margin-top: 18px;
    text-align: left;
}

.service-cta .cta-form {
    max-width: 760px;
    margin-inline: auto;
}

.service-cta .lead-form-wrap {
    border-color: rgba(3, 105, 161, 0.24);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.inline-link-row {
    margin: 14px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.text-link {
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-weight: 600;
}

.inline-link-row--actions {
    margin-top: 18px;
    gap: 10px;
}

.inline-link-row--actions .text-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(3, 105, 161, 0.28);
    background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
    color: #0f172a;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.inline-link-row--actions .text-link:hover,
.inline-link-row--actions .text-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(3, 105, 161, 0.45);
    box-shadow: 0 10px 20px rgba(3, 105, 161, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #e9f4ff 100%);
    text-decoration: none;
}

.section-additional-info .prose {
    max-width: 980px;
    padding: clamp(20px, 3vw, 30px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(3, 105, 161, 0.23);
    background:
        linear-gradient(165deg, #ffffff 0%, #f4f9ff 100%);
    box-shadow: var(--shadow-sm);
}

.section-additional-info .prose h2:first-child {
    margin-top: 0;
    margin-bottom: 0.8em;
}

.prose {
    max-width: 920px;
}

.prose > *:first-child {
    margin-top: 0;
}

.prose > *:last-child {
    margin-bottom: 0;
}

.prose li {
    color: var(--color-text-soft);
}

.prose p {
    margin: 0 0 1em;
    color: var(--color-text-soft);
    font-size: 1.03rem;
}

.prose h2,
.prose h3,
.prose h4 {
    margin-top: 1.15em;
    margin-bottom: 0.52em;
}

.prose ul,
.prose ol {
    margin: 0.5em 0 1.1em;
    padding-left: 1.2em;
}

.prose li + li {
    margin-top: 0.32em;
}

.prose a {
    font-weight: 600;
}

.prose strong {
    color: var(--color-primary);
}

.prose blockquote {
    margin: 1.25em 0;
    padding: 10px 14px 10px 18px;
    border-left: 4px solid rgba(3, 105, 161, 0.55);
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    background: rgba(3, 105, 161, 0.07);
    color: #1e3a5f;
}

.prose code {
    padding: 2px 6px;
    border-radius: 7px;
    background: #e8eef6;
    color: #0f172a;
    font-size: 0.92em;
}

.prose pre {
    margin: 1.2em 0;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: #0f172a;
    color: #e2e8f0;
    overflow-x: auto;
}

.prose pre code {
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
}

.prose table {
    width: 100%;
    margin: 1em 0 1.2em;
    border-collapse: collapse;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #fff;
}

.prose th,
.prose td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.prose th {
    font-family: "Lexend", "Segoe UI", sans-serif;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    background: #eff6ff;
}

.prose tr:last-child td {
    border-bottom: 0;
}

.prose img,
.prose figure {
    margin: 1em 0 1.2em;
}

.prose figure {
    width: 100%;
}

.prose figcaption {
    margin-top: 8px;
    color: #64748b;
    font-size: 0.88rem;
}

.prose .wp-block-image img,
.prose .wp-block-cover,
.prose .wp-block-gallery {
    border-radius: var(--radius-sm);
}

.prose .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(145deg, var(--color-accent), var(--color-accent-strong));
    color: #fff;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
}

.prose .wp-block-button__link:hover {
    text-decoration: none;
    filter: brightness(1.04);
}

.prose iframe,
.prose video {
    width: 100%;
    border: 0;
    border-radius: var(--radius-sm);
}

.prose .wp-block-separator {
    margin: 1.35em 0;
    border: 0;
    border-top: 1px solid var(--color-border);
}

.lead-form-wrap {
    width: 100%;
    position: relative;
    padding: clamp(14px, 2.3vw, 20px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(3, 105, 161, 0.2);
    background:
        linear-gradient(165deg, #ffffff 0%, #f5faff 72%, #eef7ff 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.lead-form {
    display: grid;
    gap: 12px;
}

.lead-form label {
    display: grid;
    gap: 7px;
    color: var(--color-primary);
    font-size: 0.93rem;
    font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(3, 105, 161, 0.2);
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
    padding: 10px 12px;
    font: inherit;
    color: var(--color-text);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover {
    border-color: rgba(3, 105, 161, 0.34);
    background: #fff;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: rgba(3, 105, 161, 0.6);
    box-shadow: 0 0 0 4px rgba(3, 105, 161, 0.14);
    outline: none;
}

.lead-form textarea {
    min-height: 110px;
    resize: vertical;
}

.lead-form .btn {
    margin-top: 2px;
    box-shadow: 0 12px 24px rgba(3, 105, 161, 0.24);
}

.form-alert {
    margin: 0 0 10px;
    padding: 11px 12px;
    border-radius: 11px;
    font-size: 0.93rem;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.form-alert-ok {
    color: #115e59;
    background: #d8f6f3;
    border: 1px solid #9adbd5;
}

.form-alert-error {
    color: #991b1b;
    background: #fee9e9;
    border: 1px solid #f6bbbb;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.site-footer {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(165deg, #08152f 0%, #0f2643 56%, #0a203c 100%);
    color: #dbe7f5;
    padding-top: 42px;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.site-footer::before {
    top: -160px;
    left: -110px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(56, 189, 248, 0) 68%);
}

.site-footer::after {
    right: -180px;
    bottom: -220px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.22) 0%, rgba(15, 118, 110, 0) 68%);
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer a {
    color: #dbe7f5;
}

.site-footer a:hover {
    color: #f1f7ff;
}

.site-footer h3,
.site-footer h4 {
    color: #f7fbff;
}

.footer-grid {
    align-items: start;
    gap: 18px;
}

.footer-brand-block {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(187, 227, 250, 0.25);
    background: linear-gradient(160deg, rgba(7, 20, 42, 0.6) 0%, rgba(10, 38, 64, 0.6) 100%);
    box-shadow: 0 20px 38px rgba(2, 6, 23, 0.3);
}

.footer-brand-link {
    display: block;
    position: relative;
    width: clamp(220px, 21vw, 300px);
    height: 78px;
}

.footer-brand-frame {
    position: absolute;
    left: -1px;
    top: 50%;
    width: calc(100% + 6px);
    height: 98px;
    transform: translateY(-56%);
    pointer-events: none;
}

.footer-brand-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 14px 24px rgba(2, 6, 23, 0.4));
}

.footer-brand-text {
    margin: 6px 0 0;
    max-width: 34ch;
    color: rgba(232, 242, 252, 0.92);
    line-height: 1.55;
}

.footer-brand-badges {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-brand-badges li {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(186, 230, 253, 0.34);
    background: rgba(15, 23, 42, 0.35);
    color: #f1f7ff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

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

.footer-menu a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 3px 0;
    font-weight: 600;
    color: rgba(232, 242, 252, 0.9);
}

.footer-menu-secondary {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(219, 231, 245, 0.24);
}

.footer-contact-block p {
    margin: 0 0 8px;
}

.footer-contact-cta {
    margin: 14px 0 10px;
}

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(186, 230, 253, 0.46);
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.92) 0%, rgba(8, 145, 178, 0.92) 100%);
    color: #f8fcff;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.footer-contact-button:hover {
    text-decoration: none;
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(2, 6, 23, 0.4);
}

.messenger-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.messenger-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(219, 231, 245, 0.35);
    background: rgba(15, 23, 42, 0.24);
}

.footer-bottom {
    margin-top: 26px;
    padding: 15px 0 20px;
    border-top: 1px solid rgba(219, 231, 245, 0.22);
    color: rgba(221, 234, 247, 0.86);
    font-size: 0.89rem;
}

.footer-bottom small {
    display: block;
}

.quick-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 120;
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(11, 21, 44, 0.94);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.32);
}

.quick-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    min-width: 42px;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-family: "Lexend", "Segoe UI", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    touch-action: manipulation;
}

.quick-actions .quick-action-messenger-max {
    gap: 6px;
}

.quick-actions .quick-action-messenger-max img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.quick-actions a:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
}

[data-reveal] {
    --reveal-delay: 0ms;
    --reveal-transform-start: translate3d(0, 16px, 0);
    --reveal-transform-end: translate3d(0, 0, 0);
    opacity: 0;
    transform: var(--reveal-transform-start);
    transition: opacity 0.48s ease, transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay);
    will-change: opacity, transform;
}

[data-reveal][data-reveal-direction="left"] {
    --reveal-transform-start: translate3d(-22px, 12px, 0);
}

[data-reveal][data-reveal-direction="right"] {
    --reveal-transform-start: translate3d(22px, 12px, 0);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: var(--reveal-transform-end);
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        order: 2;
    }

    .coverage-map-card {
        grid-template-columns: 1fr;
    }

    .metric-grid,
    .assurance-grid,
    .process-grid,
    .price-factor-grid,
    .method-grid,
    .trust-grid,
    .doc-grid,
    .case-grid,
    .work-grid,
    .service-grid,
    .two-col,
    .tariff-diff-grid,
    .price-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }

    .footer-brand-link {
        width: clamp(220px, 38vw, 320px);
    }

    .brand-man {
        opacity: 0.86;
    }

    .brand-man--hero {
        right: -10px;
        width: 230px;
    }

    .brand-man--process,
    .brand-man--services,
    .brand-man--cta,
    .brand-man--coverage-pointer {
        display: none;
    }

    .section--with-brand-man-process > .container,
    .section--with-brand-man-services > .container,
    .section--with-brand-man-cta > .container,
    .section--with-brand-man-service-cta > .container {
        padding-inline: 0;
    }

    .assurance-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .assurance-intro h2 {
        max-width: none;
    }
}

@media (max-width: 1460px) {
    .brand-man--coverage-pointer {
        display: none;
    }
}

@media (max-width: 1024px) {
    .site-nav {
        display: none;
    }

    .site-nav.is-open {
        display: block;
        position: absolute;
        top: 86px;
        right: 20px;
        left: 20px;
        width: auto;
        padding: 12px;
        border-radius: 14px;
        border: 1px solid var(--color-border);
        background: #fff;
        box-shadow: var(--shadow-md);
        max-height: min(68vh, 500px);
        overflow: auto;
    }

    .menu-list {
        width: 100%;
        min-width: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
    }

    .menu-list li {
        width: 100%;
    }

    .menu-list .menu-item-has-children {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        column-gap: 6px;
    }

    .menu-list a {
        width: 100%;
        justify-content: flex-start;
    }

    .menu-list .menu-item-has-children > a {
        padding-right: 14px;
    }

    .menu-list .menu-item-has-children > a::after {
        display: none;
    }

    /* Disable desktop hover-open behavior on touch layouts; toggle button controls state */
    .menu-list > .menu-item-has-children:hover > .sub-menu,
    .menu-list > .menu-item-has-children:focus-within > .sub-menu {
        display: none;
    }

    .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        min-width: 44px;
        border-radius: 10px;
        border: 1px solid var(--color-border);
        background: #fff;
        color: var(--color-primary);
        font-size: 0.86rem;
        cursor: pointer;
    }

    .menu-item-has-children.is-open > .submenu-toggle span {
        transform: rotate(180deg);
    }

    .submenu-toggle span {
        transition: transform 0.2s ease;
    }

    .menu-list .sub-menu {
        position: static;
        grid-column: 1 / -1;
        min-width: 0;
        max-width: none;
        margin-top: 2px;
        padding: 4px 0 0 14px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .menu-list .menu-item-has-children.is-open > .sub-menu {
        display: block;
    }

    .menu-list .sub-menu a {
        min-height: 38px;
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 0.88rem;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid rgba(3, 105, 161, 0.28);
        background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
        color: var(--color-accent-strong);
        font-family: "Lexend", "Segoe UI", sans-serif;
        font-size: 0.88rem;
        font-weight: 600;
    }

    .header-phone,
    .header-cta {
        display: none;
    }

    .brand--lockup {
        width: clamp(198px, 38vw, 300px);
        height: 56px;
    }

    .brand-lockup-frame {
        left: -1px;
        width: calc(100% + 6px);
        height: 86px;
        transform: translateY(-55%);
    }
}

@media (max-width: 760px) {
    .service-hero .metric-card {
        min-height: 0;
    }

    .hero,
    .section {
        padding: 28px 0;
    }

    .metric-grid,
    .assurance-grid,
    .process-grid,
    .price-factor-grid,
    .method-grid,
    .trust-grid,
    .doc-grid,
    .case-grid,
    .work-grid,
    .service-grid,
    .two-col,
    .tariff-diff-grid,
    .price-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-block {
        grid-column: auto;
        padding: 16px;
    }

    .footer-brand-link {
        width: clamp(186px, 60vw, 258px);
        height: 68px;
    }

    .footer-brand-frame {
        height: 84px;
        transform: translateY(-57%);
    }

    .footer-contact-button {
        width: 100%;
    }

    .container {
        width: min(1180px, calc(100% - 28px));
    }

    .steps {
        gap: 10px;
    }

    .steps li {
        min-height: 0;
        padding: 12px 12px 12px 62px;
        font-size: 0.96rem;
    }

    .steps li::before {
        left: 12px;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 0.74rem;
    }

    .price-table {
        min-width: 520px;
    }

    .price-table th,
    .price-table td {
        padding: 10px 11px;
        font-size: 0.9rem;
    }

    .assurance-item {
        min-height: 0;
        grid-template-columns: 30px 40px minmax(0, 1fr);
        padding: 12px;
    }

    .assurance-index {
        width: 28px;
        height: 28px;
        border-radius: 9px;
        font-size: 0.67rem;
    }

    .assurance-icon {
        width: 40px;
        height: 40px;
    }

    .assurance-icon svg {
        width: 20px;
        height: 20px;
    }

    .assurance-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .steps li::after {
        left: 30px;
        height: 10px;
    }

    .service-faq .faq summary {
        padding: 12px 44px 12px 14px;
    }

    .service-faq .faq p {
        padding: 10px 14px 14px;
    }

    .lead-form-wrap {
        padding: 12px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 0.68rem;
    }

    .brand--lockup {
        width: clamp(170px, 52vw, 230px);
        height: 50px;
    }

    .brand-lockup-frame {
        left: 0;
        width: calc(100% + 4px);
        height: 72px;
        transform: translateY(-58%);
    }

    .coverage-map-card {
        padding: 12px;
    }

    .coverage-map-stage {
        padding: 8px;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        gap: 8px;
    }

    .service-hero-photo img {
        aspect-ratio: 4 / 3;
    }

    .inline-link-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-actions {
        left: 10px;
        right: 10px;
        bottom: 10px;
        justify-content: space-between;
    }

    .quick-actions a {
        flex: 1;
        text-align: center;
    }

    .brand-man--hero {
        display: none;
    }
}

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
