/* ============================================
   ЦССД — iOS-inspired premium styles
   ============================================ */

:root {
    --navy-900: #0A0E27;
    --navy-800: #131A3E;
    --navy-700: #1A1F5C;
    --navy-600: #252E7A;
    --navy-500: #3A46B8;
    --blue-400: #4D5BD4;
    --blue-300: #7B88F0;

    --ink-900: #0B0D17;
    --ink-700: #1D1D1F;
    --ink-500: #424551;
    --ink-300: #86868B;
    --ink-200: #C6C6CB;
    --ink-100: #E8E8ED;

    --bg: #FFFFFF;
    --bg-alt: #F5F5F7;
    --bg-glass: rgba(255, 255, 255, 0.72);

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 1px 2px rgba(10, 14, 39, 0.04), 0 2px 8px rgba(10, 14, 39, 0.04);
    --shadow: 0 4px 12px rgba(10, 14, 39, 0.06), 0 12px 32px rgba(10, 14, 39, 0.08);
    --shadow-lg: 0 8px 24px rgba(10, 14, 39, 0.08), 0 24px 64px rgba(10, 14, 39, 0.12);
    --shadow-navy: 0 10px 40px rgba(26, 31, 92, 0.25);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-700);
    background: var(--bg);
    overflow-x: hidden;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(10, 14, 39, 0.06);
    transition: all 0.3s var(--ease);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    display: inline-block;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background-image: url('assets/logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }

.brand__name {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.12em;
    color: var(--navy-700);
}

.brand__tag {
    font-size: 10.5px;
    color: var(--ink-300);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink-500);
    transition: color 0.2s;
    position: relative;
}

.nav a:hover { color: var(--navy-700); }

.header__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 999px;
    padding: 12px 22px;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
    background: var(--navy-700);
    color: #fff;
    box-shadow: var(--shadow-navy);
}

.btn--primary:hover {
    background: var(--navy-600);
    transform: translateY(-1px);
    box-shadow: 0 14px 44px rgba(26, 31, 92, 0.32);
}

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

.btn--secondary {
    background: #fff;
    color: var(--navy-700);
    border-color: var(--ink-100);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    border-color: var(--navy-700);
    transform: translateY(-1px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.6);
    color: var(--ink-700);
    border-color: rgba(10, 14, 39, 0.08);
}

.btn--ghost:hover {
    background: #fff;
    border-color: var(--navy-700);
    color: var(--navy-700);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 128px 0 96px;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFBFF 0%, #F0F3FF 60%, #FFFFFF 100%);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.hero__content { text-align: left; }

.hero__bullets {
    list-style: none;
    margin: 32px 0 24px;
    display: grid;
    gap: 14px;
}

.hero__bullets li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.hero__bullets strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.hero__bullets span { font-size: 14.5px; color: var(--ink-500); line-height: 1.5; }

.bullet-ic {
    width: 36px; height: 36px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: rgba(26, 31, 92, 0.06);
    color: var(--navy-700);
    border-radius: 10px;
    margin-top: 2px;
}

.pill {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-700);
    background: rgba(26, 31, 92, 0.07);
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero__orb--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(77, 91, 212, 0.4), transparent 70%);
    top: -150px; left: -100px;
}

.hero__orb--2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26, 31, 92, 0.25), transparent 70%);
    top: 100px; right: -200px;
}

.hero__inner {
    position: relative;
    text-align: center;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(26, 31, 92, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy-700);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero__title {
    font-size: clamp(34px, 5.2vw, 58px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--ink-900);
    margin-bottom: 20px;
}

.accent {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--blue-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.accent-light {
    background: linear-gradient(135deg, #fff 0%, #C6CBFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__sub {
    font-size: clamp(15.5px, 1.4vw, 18px);
    color: var(--ink-500);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 0 0;
}

.hero__cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero__trust {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust { text-align: center; }

.trust__num {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy-700);
    letter-spacing: -0.02em;
    line-height: 1;
}

.trust__cap {
    font-size: 13px;
    color: var(--ink-300);
    margin-top: 6px;
    font-weight: 500;
}

.hero__scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 38px;
    border: 2px solid var(--ink-200);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero__scroll span {
    width: 3px; height: 8px;
    background: var(--navy-700);
    border-radius: 2px;
    animation: scroll 1.8s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ============ SECTIONS ============ */
.section {
    padding: 120px 0;
    position: relative;
}

.section--alt {
    background: var(--bg-alt);
}

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-400);
    margin-bottom: 16px;
}

.eyebrow--light { color: var(--blue-300); }

.section__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink-900);
}

.section__title--light { color: #fff; }

/* ============ CARDS ============ */
.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(77, 91, 212, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 91, 212, 0.2);
    box-shadow: var(--shadow);
}

.card:hover::before { opacity: 1; }

.card > * { position: relative; }

.card__icon {
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    background: rgba(26, 31, 92, 0.06);
    color: var(--navy-700);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.25s var(--ease);
}

.card:hover .card__icon {
    background: rgba(26, 31, 92, 0.1);
}

.card__icon svg { width: 22px; height: 22px; }

.card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.card__text {
    font-size: 14.5px;
    color: var(--ink-500);
    line-height: 1.55;
}

/* ============ STEPS ============ */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%; right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--ink-200) 0 6px, transparent 6px 12px);
    z-index: 0;
}

.step {
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    z-index: 1;
    transition: all 0.35s var(--ease);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(77, 91, 212, 0.25);
}

.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(26, 31, 92, 0.06);
    color: var(--navy-700);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50%;
    margin-bottom: 18px;
    letter-spacing: 0;
}

.step__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step__text {
    font-size: 14.5px;
    color: var(--ink-500);
    line-height: 1.55;
    margin-bottom: 16px;
}

.step__time {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-400);
    background: rgba(77, 91, 212, 0.08);
    padding: 4px 10px;
    border-radius: 8px;
}

/* ============ QUALIFY ============ */
.qualify {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.qualify__content .eyebrow { margin-top: 0; }
.qualify__content .section__title { text-align: left; margin-bottom: 32px; }

.check-list {
    list-style: none;
    margin-bottom: 36px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-700);
    border-bottom: 1px solid var(--ink-100);
}

.check-list li:last-child { border-bottom: 0; }

.check {
    width: 22px; height: 22px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--navy-700);
    color: #fff;
    border-radius: 50%;
    margin-top: 3px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--ink-100);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(77, 91, 212, 0.15), transparent 70%);
    filter: blur(40px);
}

.stat-card > * { position: relative; }

.stat-card__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-300);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.stat-card__value {
    font-size: 52px;
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -0.035em;
    line-height: 1;
}

.stat-card__value span {
    font-size: 24px;
    font-weight: 600;
    color: var(--ink-300);
    margin-left: 4px;
}

.stat-card__value--accent {
    background: linear-gradient(135deg, var(--navy-700), var(--blue-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card__hint {
    font-size: 14px;
    color: var(--ink-500);
    margin-top: 10px;
}

.divider {
    height: 1px;
    background: var(--ink-100);
    margin: 28px 0;
}

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; }

.faq__item {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.25s var(--ease);
}

.faq__item:hover {
    border-color: rgba(77, 91, 212, 0.2);
}

.faq__item[open] {
    border-color: rgba(77, 91, 212, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq__item summary {
    padding: 22px 26px;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink-900);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 60px;
    user-select: none;
    transition: color 0.2s;
}

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

.faq__item summary::after {
    content: '';
    position: absolute;
    right: 26px; top: 50%;
    width: 12px; height: 12px;
    border-right: 2px solid var(--ink-300);
    border-bottom: 2px solid var(--ink-300);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s var(--ease);
}

.faq__item[open] summary::after {
    transform: translateY(-30%) rotate(-135deg);
    border-color: var(--navy-700);
}

.faq__item[open] summary { color: var(--navy-700); }

.faq__body {
    padding: 0 26px 22px;
    font-size: 15.5px;
    color: var(--ink-500);
    line-height: 1.6;
}

/* ============ CONTACT ============ */
.contact {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(123, 136, 240, 0.2), transparent 60%);
    filter: blur(60px);
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(77, 91, 212, 0.2), transparent 60%);
    filter: blur(60px);
}

.contact__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
}

.contact__info .section__title { text-align: left; margin-bottom: 20px; }

.contact__lead {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    max-width: 480px;
}

.contact__channels {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    transition: all 0.25s var(--ease);
    color: #fff;
}

.channel:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.channel__icon {
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    flex-shrink: 0;
    color: #fff;
}

.channel__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.channel__value {
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}

/* ============ FORM ============ */
.form {
    background: rgba(255, 255, 255, 0.98);
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: var(--ink-700);
}

.form__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.form__hint {
    font-size: 13.5px;
    color: var(--ink-300);
    margin-bottom: 24px;
    line-height: 1.5;
}

.field { margin-bottom: 16px; }

.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-500);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink-900);
    background: var(--bg-alt);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.field textarea { resize: vertical; min-height: 88px; font-family: inherit; }

.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2386868B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: #fff;
    border-color: var(--navy-700);
    box-shadow: 0 0 0 4px rgba(26, 31, 92, 0.12);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--ink-300); }

.form__agree {
    font-size: 12px;
    color: var(--ink-300);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.form__state {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    display: none;
}

.form__state[data-state="ok"] {
    background: rgba(34, 197, 94, 0.1);
    color: #047857;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form__state[data-state="error"] {
    background: rgba(239, 68, 68, 0.08);
    color: #B91C1C;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--ink-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 0 40px;
}

.footer__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}

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

.footer__brand .brand__mark {
    width: 42px; height: 42px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tag { color: rgba(255, 255, 255, 0.5); }

.footer__meta {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.footer__meta a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.footer__meta a:hover { color: #fff; }

.footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    max-width: 280px;
    line-height: 1.5;
}

/* ============ FAB ============ */
.fab {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 32px rgba(42, 171, 238, 0.4);
    z-index: 90;
    transition: all 0.3s var(--ease);
    animation: fabPulse 2.5s ease-in-out infinite;
}

.fab:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 40px rgba(42, 171, 238, 0.5);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 12px 32px rgba(42, 171, 238, 0.4), 0 0 0 0 rgba(42, 171, 238, 0.5); }
    50% { box-shadow: 0 12px 32px rgba(42, 171, 238, 0.4), 0 0 0 16px rgba(42, 171, 238, 0); }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ============ HERO FORM ============ */
.hero__form { position: relative; }

.form--hero {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--ink-100);
}

.form--hero .form__title {
    font-size: 22px;
    margin-bottom: 4px;
}

.form__or {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--ink-300);
    margin: 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}

.form__or::before, .form__or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ink-100);
    margin: 0 12px;
}

.agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 6px 0 18px;
    font-size: 12.5px;
    color: var(--ink-500);
    line-height: 1.45;
    cursor: pointer;
    user-select: none;
}

.agree input {
    width: 16px; height: 16px;
    margin-top: 2px;
    accent-color: var(--navy-700);
    flex-shrink: 0;
}

.agree a { color: var(--navy-700); text-decoration: underline; text-underline-offset: 2px; }
.agree a:hover { color: var(--blue-400); }

.field .opt { color: var(--ink-300); font-weight: 400; font-size: 12px; margin-left: 4px; }

/* ============ CHECK GRID ============ */
.check-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 980px;
    margin: 0 auto;
}

.check-grid li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink-700);
    line-height: 1.45;
    transition: all 0.25s var(--ease);
}

.check-grid li:hover {
    border-color: rgba(77, 91, 212, 0.25);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.check-grid .check { margin-top: 2px; }

/* ============ GRID 3 ============ */
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ============ NOTICE ============ */
.notice {
    margin-top: 40px;
    background: #FFF9EC;
    border: 1px solid #F5D86B;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.notice__head {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8A6A00;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 14px;
}

.notice ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
    margin-bottom: 14px;
}

.notice ul li {
    font-size: 14.5px;
    color: var(--ink-700);
    padding-left: 18px;
    position: relative;
}

.notice ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #8A6A00;
}

.notice__caption {
    font-size: 13px;
    color: var(--ink-500);
    font-style: italic;
}

/* ============ CALLOUT ============ */
.callout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 40px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(26, 31, 92, 0.04), rgba(77, 91, 212, 0.06));
    border: 1px solid rgba(26, 31, 92, 0.1);
    border-radius: var(--radius-lg);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.callout__icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--navy-700);
    border: 1px solid rgba(26, 31, 92, 0.08);
    border-radius: 14px;
}

.callout h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.callout p {
    font-size: 15px;
    color: var(--ink-500);
    line-height: 1.6;
}

/* ============ STATS ============ */
.stats { padding: 80px 0; }

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.stats__grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 48px;
}

.stats__grid::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(123, 136, 240, 0.25), transparent 60%);
    filter: blur(40px);
}

.stat {
    position: relative;
    text-align: center;
}

.stat__num {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    display: inline-block;
}

.stat__suffix {
    display: inline-block;
    margin-left: 4px;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: baseline;
}

.stat__cap {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 10px;
    line-height: 1.45;
}

.stats__note {
    text-align: center;
    font-size: 13px;
    color: var(--ink-300);
    margin-top: 20px;
}

/* ============ STEPS 6 ============ */
.steps--6 {
    grid-template-columns: repeat(3, 1fr);
}

.steps--6::before { display: none; }

.step__num {
    padding: 4px 14px;
    font-size: 15px;
}

/* ============ PROCEDURE CARD ============ */
.procedure {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
}

.procedure__item {
    padding: 44px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.procedure__icon {
    width: 56px; height: 56px;
    display: grid;
    place-items: center;
    color: var(--navy-700);
    background: rgba(26, 31, 92, 0.06);
    border-radius: 14px;
    margin-bottom: 20px;
}

.procedure__icon svg { width: 26px; height: 26px; }

.procedure__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-300);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.procedure__value {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 6px;
}

.procedure__hint {
    font-size: 13.5px;
    color: var(--ink-500);
}

.procedure__divider {
    width: 1px;
    background: var(--ink-100);
    margin: 32px 0;
}

/* ============ COMPARE TABLE (legacy, kept for safety) ============ */
.compare {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.compare__head {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.1fr;
    background: linear-gradient(180deg, #F5F5F7 0%, #FAFBFF 100%);
    border-bottom: 1px solid var(--ink-100);
}

.compare__col {
    padding: 28px 24px;
    text-align: center;
    border-left: 1px solid var(--ink-100);
    position: relative;
}

.compare__col h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 4px;
}

.compare__col p {
    font-size: 13px;
    color: var(--ink-300);
}

.compare__col--primary {
    background: linear-gradient(135deg, rgba(26, 31, 92, 0.06), rgba(77, 91, 212, 0.08));
}

.compare__tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--navy-700);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.compare__row {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.1fr;
    border-top: 1px solid var(--ink-100);
}

.compare__row:first-of-type { border-top: 0; }

.compare__row > div {
    padding: 20px 24px;
    font-size: 14.5px;
    color: var(--ink-700);
    border-left: 1px solid var(--ink-100);
    line-height: 1.5;
}

.compare__row > div:first-child { border-left: 0; }

.compare__label {
    font-weight: 600;
    color: var(--ink-500);
    background: #FAFBFF;
}

.compare__note {
    text-align: center;
    font-size: 13px;
    color: var(--ink-300);
    margin-top: 24px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ CASES ============ */
.cases .case {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s var(--ease);
}

.case:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(77, 91, 212, 0.2);
}

.case__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.case__avatar {
    width: 48px; height: 48px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy-700), var(--blue-400));
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.case__name {
    font-weight: 700;
    color: var(--ink-900);
    font-size: 15px;
}

.case__city {
    font-size: 13px;
    color: var(--ink-300);
}

.case__sum {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 16px;
}

.case__sum-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.case__sum-val {
    font-size: 22px;
    font-weight: 800;
    color: #047857;
    letter-spacing: -0.02em;
}

.case__text {
    font-size: 14.5px;
    color: var(--ink-500);
    line-height: 1.55;
    margin-bottom: 14px;
}

/* ============ ABOUT ============ */
.about {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: center;
}

.about__content .section__title { text-align: left; margin-bottom: 20px; }
.about__content .eyebrow { margin-top: 0; }

.about__text {
    font-size: 16px;
    color: var(--ink-500);
    line-height: 1.6;
    margin-bottom: 28px;
}

.about__list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
}

.about__list li {
    font-size: 15px;
    color: var(--ink-500);
    padding-left: 18px;
    position: relative;
}

.about__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 6px; height: 6px;
    background: var(--navy-700);
    border-radius: 50%;
}

.about__list strong { color: var(--ink-900); font-weight: 700; }

.g-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.g-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--ink-700);
    line-height: 1.5;
}

.g-ic {
    width: 24px; height: 24px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #22C55E, #10B981);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.25);
    margin-top: 1px;
}

.contact__hours {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
}

.section__lead {
    font-size: 16px;
    color: var(--ink-500);
    line-height: 1.55;
    margin-top: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .steps--6 { grid-template-columns: repeat(2, 1fr); }
    .qualify { grid-template-columns: 1fr; gap: 48px; }
    .contact__wrap { grid-template-columns: 1fr; gap: 48px; }
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__form { max-width: 520px; margin: 0 auto; width: 100%; }
    .about { grid-template-columns: 1fr; gap: 48px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); padding: 40px 32px; }
    .stats__grid--2 { padding: 44px 36px; }
    .nav { display: none; }
}

@media (max-width: 720px) {
    .hero { padding: 108px 0 60px; }
    .section { padding: 72px 0; }
    .section__head { margin-bottom: 44px; }
    .hero__trust { gap: 8px; }
    .btn__label { display: none; }
    .btn--sm { padding: 9px 12px; }
    .header__inner { height: 64px; }
    .brand__tag { display: none; }
    .grid--4, .grid--3 { grid-template-columns: 1fr; }
    .steps, .steps--6 { grid-template-columns: 1fr; }
    .check-grid { grid-template-columns: 1fr; }
    .form, .form--hero { padding: 26px 22px; }
    .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .footer__brand { justify-content: center; }
    .footer__copy { text-align: center; max-width: none; }
    .footer__meta { flex-wrap: wrap; gap: 16px 24px; }
    .fab { width: 56px; height: 56px; bottom: 20px; right: 20px; }
    .stat-card { padding: 32px 26px; }
    .stat-card__value { font-size: 42px; }
    .stat-card__value span { font-size: 20px; }
    .stats__grid { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
    .notice ul { grid-template-columns: 1fr; }
    .notice { padding: 24px 22px; }
    .compare__head, .compare__row { grid-template-columns: 1fr; }
    .compare__col, .compare__row > div { border-left: 0; border-top: 1px solid var(--ink-100); }
    .compare__label { background: #FAFBFF; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; padding: 12px 20px; }
    .compare__row > div { padding: 16px 20px; }
    .compare__col { padding: 24px 20px; }

    .procedure { grid-template-columns: 1fr; }
    .procedure__item { padding: 32px 24px; }
    .procedure__divider { width: auto; height: 1px; margin: 0 32px; }
    .stats__grid--2 { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
    .callout { flex-direction: column; padding: 24px 22px; gap: 16px; }
    .callout__icon { width: 48px; height: 48px; }
}

@media (max-width: 420px) {
    .container { padding: 0 18px; }
    .hero__cta { flex-direction: column; width: 100%; }
    .hero__cta .btn { width: 100%; }
    .hero__sub br { display: none; }
    .hero__title br { display: block; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
