:root {
    --mk-container: 1180px;
    --mk-radius-lg: 30px;
    --mk-radius-md: 22px;
    --mk-radius-sm: 16px;
    --mk-shadow-lg: 0 32px 80px rgba(6, 23, 56, 0.14);
    --mk-shadow-md: 0 18px 44px rgba(7, 29, 70, 0.1);
    --mk-shadow-sm: 0 12px 28px rgba(8, 30, 68, 0.08);
    --mk-border: rgba(13, 48, 108, 0.1);
    --mk-text: #101827;
    --mk-text-soft: #49566d;
    --mk-text-muted: #66758d;
    --mk-surface: #ffffff;
    --mk-surface-soft: #f5f8ff;
    --mk-black: #0b1220;
    --mk-white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body.marketing-body {
    margin: 0;
    color: var(--mk-text);
    font-family: "Raleway", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(60, 104, 194, 0.08), transparent 30%),
        radial-gradient(circle at right 20%, rgba(9, 47, 114, 0.07), transparent 24%),
        linear-gradient(180deg, #fbfdff 0%, #f4f7fc 100%);
}

body.marketing-body.reduce-motion *,
body.marketing-body.reduce-motion *::before,
body.marketing-body.reduce-motion *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.marketing-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(248, 251, 255, 0.82);
    border-bottom: 1px solid rgba(14, 51, 112, 0.08);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-brand__logo,
.site-footer__logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(9, 35, 83, 0.12);
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-brand__name {
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mk-black);
}

.site-brand__tagline {
    color: var(--mk-text-muted);
    font-size: 0.82rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.site-nav__links,
.site-nav__actions,
.button-row,
.hero__actions,
.page-hero__actions,
.pill-list,
.app-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-nav__links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--mk-text-soft);
    font-size: 0.93rem;
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
    color: var(--mk-brand-strong);
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--mk-border);
    border-radius: 16px;
    background: var(--mk-white);
    color: var(--mk-brand-strong);
    box-shadow: var(--mk-shadow-sm);
    cursor: pointer;
}

.nav-toggle__icon {
    display: grid;
    gap: 5px;
}

.nav-toggle__line {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--mk-white);
    background: linear-gradient(135deg, var(--mk-brand), var(--mk-brand-strong));
    box-shadow: 0 18px 36px rgba(8, 36, 87, 0.22);
}

.button--secondary {
    color: var(--mk-brand-strong);
    border-color: rgba(14, 54, 122, 0.14);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--mk-shadow-sm);
}

.button--signin {
    color: var(--mk-white);
    background: linear-gradient(120deg, var(--mk-brand-strong) 0%, var(--mk-brand) 52%, #5f8fe7 100%);
    background-size: 180% 180%;
    box-shadow: 0 18px 38px rgba(8, 36, 87, 0.24);
    border-color: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, box-shadow 0.25s ease, background-position 0.35s ease;
}

.button--signin:hover {
    background-position: 100% 0;
    box-shadow: 0 22px 44px rgba(10, 42, 100, 0.3);
}

.button--block {
    width: 100%;
}

.eyebrow,
.section-kicker,
.support-card__eyebrow,
.panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(14, 51, 112, 0.08);
    color: var(--mk-brand-strong);
    box-shadow: var(--mk-shadow-sm);
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mk-brand), var(--mk-brand-soft));
    box-shadow: 0 0 0 6px rgba(48, 96, 189, 0.12);
}

.section-kicker,
.support-card__eyebrow,
.panel__eyebrow {
    color: var(--mk-brand-soft);
}

.hero {
    position: relative;
    padding: 42px 0 24px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 32px 0 auto;
    height: 620px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 245, 255, 0.92)),
        linear-gradient(var(--mk-gradient-direction), rgba(13, 57, 135, 0.07), rgba(38, 91, 185, 0.02));
    border-radius: 0 0 42px 42px;
    border-top: 1px solid rgba(14, 51, 112, 0.06);
    z-index: -1;
}

.hero__grid,
.split-panel,
.contact-layout,
.site-footer__grid {
    display: grid;
    gap: 24px;
}

.hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 42px;
    padding: 34px 0 72px;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: stretch;
}

.hero__content,
.hero-visual,
.page-hero__media,
.stack,
.form-grid,
.faq-grid,
.support-stack,
.check-list,
.quote-card,
.plan-card,
.section-head,
.site-footer__about,
.site-footer__links,
.support-card__list {
    display: grid;
    gap: 18px;
}

.hero__content {
    padding-top: 26px;
}

.display-title,
.section-title,
.page-hero__inner h1,
.cta-banner h2 {
    margin: 0;
    font-family: "Raleway", sans-serif;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--mk-black);
}

.display-title {
    font-size: clamp(3rem, 5vw, 5rem);
}

.section-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.page-hero__inner h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.cta-banner h2 {
    color: var(--mk-white);
    font-size: clamp(2.1rem, 3.5vw, 3rem);
}

.lead-copy,
.section-copy,
.page-hero__inner p,
.cta-banner p,
.detail-card p,
.plan-card p,
.support-card p,
.notice-card p,
.sheet-card p,
.site-footer__about p,
.site-footer__col p,
.quote-card blockquote,
.support-card__value,
.field label,
.faq-item__content {
    color: var(--mk-text-soft);
    line-height: 1.8;
}

.lead-copy,
.section-copy,
.page-hero__inner p {
    font-size: 1.05rem;
}

.pill-list span,
.app-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(12, 44, 98, 0.1);
    color: var(--mk-text-soft);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: var(--mk-shadow-sm);
}

.hero-slider {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--mk-radius-lg);
    border: 1px solid rgba(12, 44, 98, 0.1);
    box-shadow: var(--mk-shadow-lg);
}

.hero-slider__track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.9s ease, transform 1.1s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-slide__image,
.page-hero__photo,
.media-card__image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slide__overlay,
.page-hero__photo::before,
.media-card__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 17, 41, 0.12) 0%, rgba(8, 31, 79, 0.78) 100%),
        linear-gradient(135deg, rgba(19, 68, 149, 0.38), rgba(8, 31, 79, 0.2));
}

.hero-slide__content,
.page-hero__photo-copy,
.media-card__content {
    position: relative;
    z-index: 1;
}

.hero-slide__content {
    display: grid;
    align-content: end;
    gap: 16px;
    height: 100%;
    padding: 28px;
    color: var(--mk-white);
}

.hero-slide__content h2,
.page-hero__photo-copy strong,
.media-card__content h3 {
    margin: 0;
    color: var(--mk-white);
}

.hero-slide__content h2 {
    font-family: "Raleway", sans-serif;
    font-size: clamp(2.2rem, 3.4vw, 3.2rem);
    line-height: 1.02;
}

.hero-slide__content p,
.page-hero__photo-copy p,
.media-card__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.hero-slider__controls {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-slider__dot.is-active {
    background: var(--mk-white);
    transform: scale(1.2);
}

.gallery-slider {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--mk-radius-lg);
    border: 1px solid rgba(12, 44, 98, 0.1);
    box-shadow: var(--mk-shadow-lg);
    background:
        linear-gradient(145deg, rgba(8, 33, 81, 0.14), rgba(24, 69, 147, 0.08)),
        linear-gradient(180deg, #eff4ff 0%, #fbfdff 100%);
}

.gallery-slider__track,
.gallery-slide {
    position: absolute;
    inset: 0;
}

.gallery-slide {
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.8s ease, transform 1s ease;
    pointer-events: none;
}

.gallery-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.gallery-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 25, 62, 0.1) 0%, rgba(7, 25, 62, 0.2) 100%),
        linear-gradient(135deg, rgba(17, 65, 145, 0.12), rgba(17, 65, 145, 0));
}

.gallery-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-slider__controls {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-slider__dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 6px 18px rgba(6, 23, 56, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.gallery-slider__dot.is-active {
    background: var(--mk-white);
    transform: scale(1.18);
}

.page-hero__media {
    position: relative;
}

.page-hero__photo {
    position: relative;
    min-height: 100%;
    border-radius: var(--mk-radius-md);
    overflow: hidden;
    box-shadow: var(--mk-shadow-lg);
    background-image: var(--mk-hero-image);
}

.page-hero__photo-copy {
    display: grid;
    align-content: end;
    gap: 14px;
    min-height: 100%;
    padding: 28px;
}

.page-hero__photo-copy strong {
    font-size: 1.65rem;
    line-height: 1.05;
}

.media-showcase {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 18px;
}

.media-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--mk-radius-md);
    box-shadow: var(--mk-shadow-lg);
}

.media-card--tall {
    min-height: 380px;
}

.media-card__content {
    display: grid;
    align-content: end;
    gap: 14px;
    min-height: 100%;
    padding: 28px;
}

.floating-card,
.panel,
.stat-card,
.detail-card,
.plan-card,
.quote-card,
.support-card,
.notice-card,
.sheet-card,
.site-footer__panel,
.page-hero__inner,
.cta-banner,
.faq-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(12, 44, 98, 0.09);
    border-radius: var(--mk-radius-md);
    box-shadow: var(--mk-shadow-md);
}

.floating-card,
.panel,
.stat-card,
.detail-card,
.plan-card,
.quote-card,
.support-card,
.notice-card,
.sheet-card,
.site-footer__panel,
.cta-banner {
    padding: 26px;
}

.floating-card--primary,
.panel--dark,
.notice-card,
.cta-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.floating-card--primary {
    background-image:
        linear-gradient(145deg, rgba(8, 33, 81, 0.9), rgba(24, 69, 147, 0.82)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80");
}

.panel--dark {
    background-image:
        linear-gradient(145deg, rgba(8, 33, 81, 0.9), rgba(24, 69, 147, 0.82)),
        url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80");
}

.notice-card {
    background-image:
        linear-gradient(145deg, rgba(8, 33, 81, 0.9), rgba(24, 69, 147, 0.82)),
        url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80");
}

.cta-banner {
    background-image:
        linear-gradient(145deg, rgba(8, 33, 81, 0.9), rgba(24, 69, 147, 0.82)),
        url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1200&q=80");
}

.device-frame__card {
    background:
        linear-gradient(145deg, rgba(8, 33, 81, 0.98), rgba(24, 69, 147, 0.92)),
        linear-gradient(var(--mk-gradient-direction), rgba(255, 255, 255, 0.08), transparent);
    color: var(--mk-white);
}

.floating-card--primary .floating-card__copy,
.panel--dark p,
.panel--dark li,
.notice-card p,
.cta-banner p {
    color: rgba(255, 255, 255, 0.84);
}

.floating-card__title,
.stat-card__value,
.detail-card h3,
.plan-card h3,
.support-card h3,
.notice-card h3,
.sheet-card h3,
.field label,
.site-footer__title,
.quote-card__name {
    color: var(--mk-black);
}

.floating-card__title {
    margin: 18px 0 6px;
    font-size: 1.5rem;
    font-weight: 800;
}

.card-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.floating-card__meta,
.plan-card__meta {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding-top: 16px;
}

.floating-card__meta {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.plan-card__meta {
    border-top: 1px solid rgba(14, 51, 112, 0.08);
}

.floating-card__meta-item,
.plan-card__meta div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
}

.visual-grid,
.grid,
.metric-row,
.form-grid--2 {
    display: grid;
    gap: 18px;
}

.visual-grid,
.metric-row,
.form-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

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

.stat-card__label,
.support-card__label,
.site-brand__name,
.plan-card__tag,
.detail-card__index,
.sheet-card__pill {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stat-card__value {
    margin: 12px 0 8px;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: var(--mk-brand-strong);
}

.stat-card__hint,
.support-card__label,
.quote-card__role,
.site-footer__meta,
.subtle-note {
    color: var(--mk-text-muted);
}

.detail-card__index,
.plan-card__tag,
.sheet-card__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(23, 72, 155, 0.14), rgba(61, 110, 201, 0.16));
    color: var(--mk-brand-strong);
    font-weight: 900;
}

.split-panel,
.contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.plan-card__top,
.cta-banner__grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.panel__title {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1.1;
}

.panel__copy {
    margin: 0;
}

.check-list span {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}

.check-list span::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 5px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.85) 0, rgba(255, 255, 255, 0) 38%),
        linear-gradient(135deg, var(--mk-brand), var(--mk-brand-soft));
    box-shadow: 0 0 0 4px rgba(44, 96, 194, 0.12);
}

.plan-card__range {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--mk-brand-strong);
}

.quote-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(24, 77, 167, 0.12), rgba(47, 102, 200, 0.2));
    color: var(--mk-brand-strong);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.faq-item {
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    list-style: none;
    padding: 22px 64px 22px 22px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
    color: var(--mk-black);
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 18px;
    right: 22px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 79, 171, 0.1);
    color: var(--mk-brand-strong);
    font-size: 1.1rem;
    font-weight: 900;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item__content {
    padding: 0 22px 22px;
}

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

.page-hero,
.section,
.site-footer {
    padding: 36px 0 78px;
}

.section-head--center {
    justify-items: center;
    text-align: center;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(241, 246, 255, 0.92));
    border-top: 1px solid rgba(16, 56, 126, 0.06);
    border-bottom: 1px solid rgba(16, 56, 126, 0.06);
}

.page-hero__inner,
.site-footer__panel {
    box-shadow: var(--mk-shadow-lg);
}

.site-footer__grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.75fr));
}

.site-footer__meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(13, 48, 108, 0.08);
    font-size: 0.92rem;
}

.field {
    display: grid;
    gap: 8px;
}

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

.form-shell__head h2,
.form-shell__head p {
    margin: 0;
}

.form-shell__head h2 {
    color: var(--mk-black);
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1.08;
}

.field input,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(14, 51, 112, 0.14);
    border-radius: 16px;
    background: #f9fbff;
    color: var(--mk-text);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(20, 74, 166, 0.4);
    box-shadow: 0 0 0 4px rgba(32, 84, 177, 0.12);
    background: var(--mk-white);
}

.field textarea {
    min-height: 160px;
    resize: vertical;
}

.captcha-panel {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3f7ff, #eef4ff);
    border: 1px solid rgba(18, 60, 133, 0.09);
}

.captcha-panel__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 118px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: var(--mk-black);
    color: var(--mk-white);
    font-weight: 900;
    letter-spacing: 0.2em;
}

.alert-box {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid transparent;
    font-weight: 700;
}

.alert-box--error {
    color: #8a1f2d;
    background: #fff2f4;
    border-color: #f5c7cf;
}

.alert-box--success {
    color: #14533f;
    background: #eefaf4;
    border-color: #bfe8cf;
}

.device-frame {
    position: relative;
    padding: 22px;
    border-radius: 30px;
    background: linear-gradient(180deg, #0b1427, #172743);
    box-shadow: 0 28px 64px rgba(7, 24, 57, 0.28);
}

.device-frame::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 84px;
    height: 7px;
    margin-left: -42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.device-frame__screen {
    display: grid;
    gap: 14px;
    min-height: 420px;
    padding: 34px 22px 22px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(109, 159, 255, 0.16), transparent 26%),
        linear-gradient(180deg, #f9fbff, #edf3ff);
}

.device-frame__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--mk-text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.device-frame__card {
    padding: 20px;
    border-radius: 22px;
}

.device-frame__card h3,
.device-frame__card strong {
    color: var(--mk-white);
}

.device-frame__card p {
    color: rgba(255, 255, 255, 0.82);
}

.device-frame__stack {
    display: grid;
    gap: 12px;
}

.device-frame__metric {
    padding: 16px;
    border-radius: 18px;
    background: var(--mk-white);
    border: 1px solid rgba(13, 48, 108, 0.08);
    color: var(--mk-text-soft);
}

.device-frame__metric strong {
    display: block;
    margin-top: 6px;
    color: var(--mk-black);
    font-size: 1.18rem;
}

.legal-richtext,
.sheet-card ul,
.sheet-card ol,
.plan-card ul {
    color: var(--mk-text-soft);
    line-height: 1.82;
}

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

.legal-richtext h1,
.legal-richtext h2,
.legal-richtext h3,
.legal-richtext h4 {
    margin: 26px 0 12px;
    color: var(--mk-black);
    line-height: 1.18;
}

.legal-richtext p,
.legal-richtext ul,
.legal-richtext ol,
.sheet-card ul,
.sheet-card ol {
    margin: 0 0 16px;
}

.legal-richtext ul,
.legal-richtext ol,
.sheet-card ul,
.sheet-card ol,
.plan-card ul {
    padding-left: 18px;
}

@media (max-width: 1100px) {
    .hero__grid,
    .page-hero__grid,
    .split-panel,
    .contact-layout,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .media-showcase,
    .grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 20px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(12, 44, 98, 0.08);
        box-shadow: var(--mk-shadow-lg);
    }

    .site-nav.is-open,
    .site-nav__links,
    .site-nav__actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero::before {
        height: 760px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(var(--mk-container), calc(100% - 22px));
    }

    .hero {
        padding-top: 10px;
    }

    .hero > .container {
        width: 100%;
        max-width: none;
    }

    .hero__grid {
        padding: 10px 0 48px;
        gap: 20px;
    }

    .hero-visual {
        order: 1;
    }

    .hero__content {
        order: 2;
        padding: 18px 22px 0;
    }

    .hero-slider {
        min-height: 440px;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .hero-slide__content {
        align-content: start;
        gap: 18px;
        padding: 36px 24px 96px;
    }

    .hero-slide__content .floating-card__meta {
        margin-top: auto;
        padding-top: 22px;
    }

    .hero-slider__controls {
        left: 24px;
        right: 24px;
        bottom: 18px;
    }

    .gallery-slider {
        min-height: 320px;
        border-radius: 24px;
    }

    .gallery-slider__controls {
        left: 18px;
        right: 18px;
        bottom: 16px;
    }

    .legal-grid,
    .media-showcase,
    .visual-grid,
    .grid--2,
    .grid--3,
    .grid--4,
    .metric-row,
    .form-grid--2 {
        grid-template-columns: 1fr;
    }

    .button,
    .hero__actions,
    .page-hero__actions,
    .button-row {
        width: 100%;
        justify-content: stretch;
    }

    .button {
        width: 100%;
    }

    .plan-card__top,
    .cta-banner__grid {
        flex-direction: column;
    }

    .site-footer__meta {
        flex-direction: column;
    }

    .floating-card,
    .panel,
    .stat-card,
    .detail-card,
    .plan-card,
    .quote-card,
    .support-card,
    .notice-card,
    .sheet-card,
    .site-footer__panel,
    .cta-banner,
    .page-hero__inner {
        padding: 22px;
    }

    .hero-slider,
    .media-card,
    .media-card--tall {
        min-height: 400px;
    }

    .gallery-slider {
        min-height: 320px;
    }

    .page-hero__photo {
        min-height: 320px;
    }
}
