/* ===== LANDING PAGE STYLES ===== */

.landing-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-bg {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Offset for sticky navbar on anchor scroll */
[id^="landing-"] {
    scroll-margin-top: 80px;
}

.landing-block {
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 80px 24px;
}

/* ===== HERO ===== */
.landing-hero {
    min-height: 520px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef3fc 50%, #e8eef8 100%);
    position: relative;
    overflow: hidden;
}

.landing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, white);
}

.landing-hero .landing-block {
    align-items: center;
    gap: 48px;
}

.landing-hero-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 1;
    z-index: 1;
}

.landing-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 41, 75, 0.08);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-blue-dark);
    width: fit-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.landing-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.landing-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-blue-dark);
}

.landing-hero-title span {
    color: var(--color-orange);
}

.landing-hero-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: var(--color-blue-dark-3);
    max-width: 520px;
}

.landing-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

/* ===== UNIFIED LANDING BUTTONS ===== */
.landing-btn {
    padding: 14px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.landing-btn--dark {
    background: var(--color-blue-dark);
    color: #fff;
    box-shadow: 0 4px 16px rgba(18, 41, 75, 0.18);
}

.landing-btn--dark:hover {
    background: var(--color-blue-dark-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(18, 41, 75, 0.25);
    color: #fff;
    text-decoration: none;
}

.landing-btn--dark:active {
    background: var(--color-blue-dark-3);
    transform: translateY(0);
}

.landing-btn--light {
    background: rgba(18, 41, 75, 0.06);
    color: var(--color-blue-dark);
    box-shadow: none;
}

.landing-btn--light:hover {
    background: rgba(18, 41, 75, 0.1);
    transform: translateY(-2px);
    color: var(--color-blue-dark);
    text-decoration: none;
}

.landing-btn--light:active {
    background: rgba(18, 41, 75, 0.14);
    transform: translateY(0);
}

/* Inverted for dark backgrounds */
.landing-btn--white {
    background: white;
    color: var(--color-blue-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.landing-btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: var(--color-blue-dark);
    text-decoration: none;
}


.landing-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Hero mockup composition */
.hero-mockup {
    position: relative;
    width: 560px;
    height: 500px;
    perspective: 800px;
}

/* Large background panel — fills empty space */
.hero-mockup-bg {
    position: absolute;
    inset: 5px -15px 5px 30px;
    background: rgba(18, 41, 75, 0.05);
    border-radius: 24px;
    border: 1.5px solid rgba(18, 41, 75, 0.08);
    z-index: 0;
}

/* Dot grid pattern on background */
.hero-mockup-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(18, 41, 75, 0.1) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    border-radius: 24px;
}

/* Flow connectors — dashed arrows between cards */
.hero-connector {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* Doc → SMS connector */
.hero-connector--1 {
    top: 30px;
    right: 90px;
}

/* SMS → Status connector */
.hero-connector--2 {
    top: 240px;
    right: 55px;
}

/* Numbered step labels */
.hero-step-label {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-blue-dark);
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(18, 41, 75, 0.2);
}

.hero-step-label--1 {
    top: 8px;
    left: 35px;
}

.hero-step-label--2 {
    top: 155px;
    right: -5px;
}

.hero-step-label--3 {
    bottom: 85px;
    right: 5px;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px rgba(18, 41, 75, 0.1),
        0 1px 3px rgba(18, 41, 75, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 20px 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}

.hero-card:hover {
    box-shadow:
        0 16px 48px rgba(18, 41, 75, 0.15),
        0 2px 6px rgba(18, 41, 75, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Document card — primary, largest */
.hero-card--doc {
    top: 30px;
    left: 0;
    width: 390px;
    z-index: 1;
    animation: hero-float-doc 7s ease-in-out infinite;
    transform-origin: center bottom;
}

.hero-card--doc:hover {
    transform: translateY(-4px) scale(1.02);
}

@keyframes hero-float-doc {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(0.3deg); }
    66% { transform: translateY(-4px) rotate(-0.2deg); }
}

.hero-card-header {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.hero-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}

.hero-card-dot--green { background: #2BAC20; }
.hero-card-dot--orange { background: #E59419; }
.hero-card-dot--red { background: #E53935; }

.hero-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 14px;
}

.hero-card-line {
    height: 7px;
    border-radius: 4px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.hero-card-line::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-blue-dark);
    opacity: 0.06;
    border-radius: 4px;
}

/* Shimmer animation on lines */
.hero-card-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(18, 41, 75, 0.04), transparent);
    animation: line-shimmer 4s ease-in-out infinite;
}

@keyframes line-shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.hero-card-line--long { width: 100%; }
.hero-card-line--medium { width: 70%; }
.hero-card-line--short { width: 45%; }

.hero-card-signature {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed rgba(18, 41, 75, 0.12);
}

.hero-card-signature svg {
    animation: sig-draw 3s ease-out forwards;
}

@keyframes sig-draw {
    0% { stroke-dasharray: 200; stroke-dashoffset: 200; opacity: 0; }
    30% { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.hero-card-badge--signed {
    background: linear-gradient(135deg, #2BAC20, #34c924);
    color: white;
    box-shadow: 0 2px 10px rgba(43, 172, 32, 0.25);
    animation: badge-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2s both;
}

.hero-card-badge--created {
    background: var(--color-blue-dark);
    color: white;
    box-shadow: 0 2px 10px rgba(18, 41, 75, 0.2);
}

@keyframes badge-pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* SMS card — floating notification feel */
.hero-card--sms {
    top: 130px;
    right: -10px;
    width: 260px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: hero-slide-sms 7s ease-in-out 0.8s infinite;
    border-left: 3px solid var(--color-blue-dark);
}

@keyframes hero-slide-sms {
    0%, 100% { transform: translateX(0) translateY(0); }
    40% { transform: translateX(-6px) translateY(-6px); }
    70% { transform: translateX(-2px) translateY(-3px); }
}

.hero-sms-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-dark-2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(18, 41, 75, 0.2);
}

.hero-sms-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-blue-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-sms-text {
    font-size: 13px;
    color: var(--color-blue-dark-3);
}

.hero-sms-text strong {
    color: var(--color-blue-dark);
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

/* Status card — success state */
.hero-card--status {
    bottom: 30px;
    right: 10px;
    width: 240px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: hero-float-status 7s ease-in-out 1.6s infinite;
}

@keyframes hero-float-status {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-0.5deg); }
}

.hero-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-status-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.hero-status-avatar--done {
    background: linear-gradient(135deg, #2BAC20, #34c924);
    box-shadow: 0 2px 8px rgba(43, 172, 32, 0.3);
}

/* Pulse ring on avatar */
.hero-status-avatar--done::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(43, 172, 32, 0.2);
    animation: avatar-pulse 3s ease-in-out infinite;
}

@keyframes avatar-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0; }
}

.hero-status-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-blue-dark);
}

.hero-status-label {
    font-size: 11px;
}

.hero-status-label--done {
    color: #2BAC20;
    font-weight: 600;
}

/* ===== TRUST BAR ===== */
.landing-trust-bar {
    background: white;
    border-bottom: 1px solid var(--color-grey-2);
}

.landing-trust-bar .landing-block {
    padding: 36px 24px;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.landing-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.landing-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(18, 41, 75, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.landing-trust-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-blue-dark);
    line-height: 1.3;
}

.landing-trust-label {
    font-size: 13px;
    color: var(--color-grey);
    font-weight: 500;
}

.landing-trust-divider {
    width: 1px;
    height: 40px;
    background: var(--color-grey-2);
    align-self: center;
}

/* ===== HOW IT WORKS ===== */
.landing-how {
    background: white;
}

.landing-how .landing-block {
    flex-direction: column;
    gap: 56px;
}

.landing-section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--color-blue-dark);
}

.landing-section-subtitle {
    font-size: 18px;
    color: var(--color-blue-dark-3);
    text-align: center;
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.landing-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.landing-how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 32px 24px;
    position: relative;
}

.landing-how-step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--color-blue-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.landing-how-step-arrow {
    position: absolute;
    right: -24px;
    top: 48px;
    color: var(--color-grey-3);
    font-size: 28px;
}

.landing-how-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.landing-how-step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue-dark);
}

.landing-how-step-text {
    font-size: 16px;
    color: var(--color-blue-dark-3);
    line-height: 1.5;
}

/* ===== ADVANTAGES ===== */
.landing-advantages {
    background: var(--color-blue-light);
}

.landing-advantages .landing-block {
    flex-direction: column;
    gap: 56px;
}

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

.landing-adv-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 28px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.landing-adv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.landing-adv-icon--time { background: #FFF3E0; color: #E59419; }
.landing-adv-icon--legal { background: #E8F5E9; color: #2BAC20; }
.landing-adv-icon--secure { background: #E3F2FD; color: #3657CD; }
.landing-adv-icon--simple { background: #FDE8E8; color: #E53935; }

.landing-adv-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.landing-adv-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue-dark);
}

.landing-adv-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-blue-dark-3);
}

/* ===== WHO USES ===== */
.landing-who {
    background: white;
}

.landing-who .landing-block {
    flex-direction: column;
    gap: 56px;
}

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

.landing-who-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    border: 2px solid var(--color-grey-2);
    border-radius: 20px;
    transition: border-color 0.3s ease;
}

.landing-who-card:hover {
    border-color: var(--color-blue-dark);
}

.landing-who-icon {
    font-size: 36px;
    margin-bottom: 4px;
}

.landing-who-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.landing-who-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue-dark);
}

.landing-who-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-blue-dark-3);
}

/* ===== DEMO SIGNING ===== */
.landing-demo {
    background: #f0f2f7;
}

.landing-demo .landing-block {
    justify-content: center;
    padding: 80px 24px;
}

.landing-demo-card {
    position: relative;
    background: var(--color-blue-dark);
    border-radius: 24px;
    padding: 48px 56px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(18, 41, 75, 0.25);
}

.landing-demo-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.landing-demo-glow--1 {
    width: 300px;
    height: 300px;
    background: rgba(232, 168, 56, 0.12);
    top: -80px;
    right: -60px;
}

.landing-demo-glow--2 {
    width: 250px;
    height: 250px;
    background: rgba(91, 139, 255, 0.1);
    bottom: -60px;
    left: -40px;
}

.landing-demo-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.landing-demo-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px;
}

.landing-demo-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Horizontal form */
.landing-demo-form {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.landing-demo-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.landing-demo-field--btn {
    flex: 0 0 auto;
}

.landing-demo-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 2px;
}

/* Select dropdown */
.landing-demo-select {
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 15px;
    color: white;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    width: 100%;
    box-sizing: border-box;
}

.landing-demo-select option {
    background: var(--color-blue-dark);
    color: white;
}

.landing-demo-select:focus {
    border-color: #e8a838;
}

/* Phone input */
.landing-demo-phone-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.landing-demo-phone-wrap:focus-within {
    border-color: #e8a838;
}

.landing-demo-phone-prefix {
    padding: 13px 0 13px 14px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    user-select: none;
}

.landing-demo-input {
    padding: 13px 14px;
    border: none;
    font-size: 15px;
    color: white;
    background: transparent;
    outline: none;
    box-sizing: border-box;
    width: 100%;
}

.landing-demo-input--phone {
    padding-left: 6px;
}

.landing-demo-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Send button */
.landing-demo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 32px;
    background: linear-gradient(135deg, #e8a838, #f0c060);
    color: var(--color-blue-dark);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(232, 168, 56, 0.3);
    white-space: nowrap;
    height: 48px;
}

.landing-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232, 168, 56, 0.4);
}

.landing-demo-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer */
.landing-demo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.landing-demo-hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

.landing-demo-result {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.landing-demo-result--success {
    background: rgba(76, 175, 80, 0.15);
    color: #81c784;
}

.landing-demo-result--error {
    background: rgba(244, 67, 54, 0.15);
    color: #ef9a9a;
}

/* ===== CTA FREE ===== */
.landing-cta-free {
    background: #f8f9fb;
}

.landing-cta-free .landing-block {
    padding: 40px 24px;
}

.landing-cta-card {
    width: 100%;
    background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 50%, #12294b 100%);
    border-radius: 24px;
    padding: 64px;
    position: relative;
    overflow: hidden;
}

/* Diagonal ribbon */
.landing-cta-card::before {
    content: 'БЕСПЛАТНО';
    position: absolute;
    top: 56px;
    left: -60px;
    width: 340px;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: #0d1f3c;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #f0c060, #e8a838);
    padding: 10px 0;
    transform: rotate(-35deg);
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    box-shadow: 0 2px 8px rgba(232, 168, 56, 0.4);
    z-index: 2;
}

.landing-cta-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Mobile badge — hidden on desktop, visible on mobile when ribbon is hidden */
.landing-cta-mobile-badge {
    display: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0d1f3c;
    background: linear-gradient(135deg, #f0c060, #e8a838);
    padding: 6px 20px;
    border-radius: 100px;
    width: fit-content;
}

.landing-cta-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}

.landing-cta-title {
    font-size: 38px;
    font-weight: 700;
    color: white;
    line-height: 1.25;
}

.landing-cta-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.landing-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.landing-cta-feature strong {
    color: white;
}

.landing-cta-btn {
    background: white;
    color: var(--color-blue-dark);
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.landing-cta-btn:hover {
    background: var(--color-grey-light-2);
    transform: translateY(-2px);
}

/* ===== PRICING ===== */
.landing-pricing {
    background: var(--color-blue-light);
}

.landing-pricing .landing-block {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
}

.landing-prices-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.landing-price-card {
    position: relative;
    border-radius: 20px;
    padding: 40px 24px 32px;
    width: 100%;
    background: white;
    border: 2px solid var(--color-grey-2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.landing-price-card--popular {
    background: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
    color: var(--color-grey-light-2);
}

.landing-price-popular-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-green);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.landing-price-name {
    font-size: 20px;
    font-weight: 700;
}

.landing-price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 20px;
}

.landing-price-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.landing-price-currency {
    font-weight: 700;
}

.landing-price-per-doc {
    font-size: 15px;
    font-weight: 600;
    margin-top: 4px;
    opacity: 0.7;
}

.landing-price-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.landing-price-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.3;
}

.landing-price-feature svg {
    flex-shrink: 0;
}

.landing-price-feature--disabled {
    opacity: 0.4;
}

.landing-price-feature--disabled span {
    text-decoration: line-through;
}

.landing-price-limit {
    color: var(--color-orange);
    font-weight: 600;
    margin-top: auto;
    padding-top: 28px;
    font-size: 14px;
}

.landing-price-card--popular .landing-price-limit {
    color: #f0b94d;
}

.landing-price-btn {
    margin-top: 24px;
    width: 100%;
}

.landing-price-note {
    margin-top: 0;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    font-size: 14px;
    color: #3a4a6a;
    line-height: 1.5;
}

/* ===== NEWS ===== */
.landing-news {
    background: #f8f9fb;
}

.landing-news .landing-block {
    flex-direction: column;
    gap: 48px;
}

/* News cards grid */
.landing-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.landing-article-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(18, 41, 75, 0.06);
}

.landing-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(18, 41, 75, 0.12);
    text-decoration: none;
}

.landing-article-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.landing-article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.landing-article-card:hover .landing-article-card-image img {
    transform: scale(1.05);
}

.landing-article-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eef1f5 0%, #e0e4ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-article-placeholder::after {
    content: '';
    width: 48px;
    height: 48px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23b5b5b5' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}

.landing-article-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px 24px;
    flex: 1;
}

.landing-article-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-article-card-category {
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.landing-article-card-date {
    font-size: 13px;
    color: var(--color-grey);
}

.landing-article-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue-dark);
    line-height: 1.4;
    margin: 0;
}

.landing-article-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-blue-dark-3);
    margin: 0;
}

.article-category {
    padding: 4px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    width: max-content;
}

.landing-articles-show-all {
    cursor: pointer;
    color: var(--color-blue-dark);
    margin: 0 auto;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 28px;
    border: 1.5px solid rgba(18, 41, 75, 0.2);
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s;
    display: inline-block;
}

.landing-articles-show-all:hover {
    background: var(--color-blue-dark);
    color: white;
    border-color: var(--color-blue-dark);
    text-decoration: none;
}

/* ===== REVIEWS ===== */
.landing-reviews-section {
    background: var(--color-blue-dark);
}

.landing-reviews-section .landing-block {
    flex-direction: column;
    gap: 40px;
}

.landing-reviews-section .landing-section-title {
    color: white;
}

.landing-reviews-section .landing-section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

/* Video grid */
.landing-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.landing-review-unit {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    transition: border-color 0.2s, background-color 0.2s;
}

.landing-review-unit:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.1);
}

.landing-review-placeholder {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.03);
}

.landing-review-placeholder:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.03);
}

.landing-review-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 500;
}

/* ===== FAQ ===== */
.landing-faq-section {
    background: white;
}

.landing-faq-section .landing-block {
    flex-direction: column;
    gap: 48px;
}

.landing-faq-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.landing-faq-badge {
    display: inline-block;
    background: var(--color-blue-dark);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 6px;
    letter-spacing: 0.1em;
}

.landing-faq-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.landing-faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.landing-faq-card {
    background: #f8f9fb;
    border-radius: 14px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}

.landing-faq-card:hover {
    background: #f1f3f7;
}

.landing-faq-card.open {
    background: white;
    border-color: rgba(18, 41, 75, 0.1);
    box-shadow: 0 4px 20px rgba(18, 41, 75, 0.08);
}

.landing-faq-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}

.landing-faq-num {
    font-size: 13px;
    font-weight: 700;
    color: rgba(18, 41, 75, 0.25);
    flex-shrink: 0;
    width: 28px;
    font-variant-numeric: tabular-nums;
}

.landing-faq-card.open .landing-faq-num {
    color: #e8a838;
}

.landing-faq-question {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-blue-dark);
    line-height: 1.4;
}

.landing-faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(18, 41, 75, 0.06);
    color: var(--color-blue-dark-3);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.landing-faq-card.open .landing-faq-toggle {
    background: var(--color-blue-dark);
    color: white;
}

.landing-faq-toggle-v {
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
}

.landing-faq-card.open .landing-faq-toggle-v {
    transform: rotate(90deg);
    opacity: 0;
}

.landing-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.landing-faq-card.open .landing-faq-answer {
    max-height: 500px;
}

.landing-faq-answer-inner {
    padding: 0 24px 24px 68px;
    color: var(--color-blue-dark-3);
    line-height: 1.7;
    font-size: 15px;
}

/* FAQ aside card */
.landing-faq-aside {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 88px;
}

.landing-faq-aside-card {
    background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 100%);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.landing-faq-aside-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-faq-aside-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.landing-faq-aside-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.landing-faq-aside-btn {
    display: inline-block;
    background: white;
    color: var(--color-blue-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}

.landing-faq-aside-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--color-blue-dark);
}

/* ===== CALLBACK FORM ===== */
.landing-callback {
    background: white;
}

.landing-callback .landing-block {
    justify-content: center;
    padding: 64px 24px;
}

.landing-callback-card {
    width: 100%;
    background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 50%, #12294b 100%);
    border-radius: 24px;
    padding: 56px 64px;
    display: flex;
    align-items: flex-start;
    gap: 64px;
    position: relative;
    overflow: hidden;
}

.landing-callback-card::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.landing-callback-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.landing-callback-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.landing-callback-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-callback-title {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.landing-callback-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.landing-callback-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-callback-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.landing-callback-contact svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.landing-callback-right {
    flex: 1;
    max-width: 400px;
}

.landing-callback-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.landing-callback-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.landing-callback-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 4px;
}

.landing-callback-input {
    border-radius: 10px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.landing-callback-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.landing-callback-input:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
}

.landing-callback-btn {
    background: white;
    color: var(--color-blue-dark);
    border: none;
    padding: 13px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.landing-callback-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* ===== SCROLL ANIMATION ===== */
.landing-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1280px) {
    .landing-hero .landing-block {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .landing-hero-left {
        align-items: center;
    }

    .landing-hero-subtitle {
        max-width: 100%;
    }

    .landing-hero-buttons {
        justify-content: center;
    }

    .hero-mockup {
        width: 420px;
        height: 400px;
    }

    .hero-mockup-bg {
        inset: 5px -5px 5px 20px;
    }

    .hero-card--doc {
        width: 260px;
    }

    .hero-card--sms {
        width: 210px;
        top: 30px;
    }

    .hero-card--status {
        width: 200px;
        bottom: 20px;
    }

    .hero-step-label {
        display: none;
    }

    .hero-connector {
        display: none;
    }

    .landing-trust-bar .landing-block {
        gap: 40px;
    }

    .landing-how-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .landing-how-step-arrow {
        display: none;
    }

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

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

    .landing-cta-card {
        padding: 48px 40px;
    }

    .landing-cta-features {
        gap: 20px;
    }

    .landing-faq-question {
        font-size: 16px;
        padding: 20px 4px;
    }

    .landing-articles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ===== RESPONSIVE: SMALL TABLET ===== */
@media (max-width: 960px) {
    .landing-section-title {
        font-size: 32px;
    }

    .landing-how-steps {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .landing-adv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .landing-who-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .landing-callback-card {
        flex-direction: column;
        padding: 48px 40px;
        gap: 40px;
    }

    .landing-callback-right {
        max-width: 100%;
        width: 100%;
    }

    .landing-demo-card {
        padding: 40px 28px;
    }

    .landing-demo-form {
        flex-direction: column;
    }

    .landing-faq-grid {
        flex-direction: column;
    }

    .landing-faq-aside {
        width: 100%;
        position: static;
    }

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

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

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 640px) {
    .landing-block {
        padding: 56px 16px;
    }

    .landing-hero-title {
        font-size: 32px;
    }

    .landing-hero-subtitle {
        font-size: 16px;
    }

    .landing-hero-eyebrow {
        font-size: 12px;
    }

    .landing-trust-bar .landing-block {
        gap: 16px;
        padding: 24px 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .landing-trust-divider {
        display: none;
    }

    .landing-trust-icon {
        width: 40px;
        height: 40px;
    }

    /* Hero mockup — масштабируем чтобы вписать в экран */
    .hero-mockup {
        width: 320px;
        height: 300px;
    }

    .hero-mockup-bg {
        inset: 5px 0 5px 10px;
    }

    .hero-card {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .hero-card--doc {
        width: 200px;
        top: 20px;
    }

    .hero-card--sms {
        width: 170px;
        top: 20px;
        right: -5px;
    }

    .hero-card--status {
        width: 165px;
        bottom: 15px;
        right: 5px;
    }

    .hero-card-title {
        font-size: 12px;
    }

    .hero-card-header {
        margin-bottom: 10px;
    }

    .hero-card-dot {
        width: 6px;
        height: 6px;
    }

    .hero-card-line {
        height: 6px;
        margin-bottom: 6px;
    }

    .hero-sms-icon {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .hero-sms-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero-sms-title {
        font-size: 9px;
    }

    .hero-sms-text {
        font-size: 11px;
    }

    .hero-sms-text strong {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .hero-status-avatar {
        width: 28px;
        height: 28px;
    }

    .hero-status-name {
        font-size: 12px;
    }

    .hero-status-label {
        font-size: 10px;
    }

    .hero-card-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .landing-demo-card {
        padding: 32px 20px;
    }

    .landing-demo-title {
        font-size: 22px;
    }

    .landing-demo-form {
        flex-direction: column;
    }

    .landing-demo-field {
        width: 100%;
    }

    .landing-demo-field--btn {
        width: 100%;
    }

    .landing-demo-btn {
        width: 100%;
    }

    .landing-section-title {
        font-size: 28px;
    }

    .landing-section-subtitle {
        font-size: 15px;
    }

    /* ── "Как это работает" — timeline layout ── */
    .landing-how .landing-block {
        gap: 32px;
    }

    .landing-how-steps {
        max-width: 100%;
        gap: 0;
    }

    .landing-how-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
        padding: 0 0 24px 0;
        position: relative;
    }

    /* Вертикальная линия между шагами */
    .landing-how-step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 19px;
        top: 40px;
        width: 2px;
        bottom: 0;
        background: var(--color-blue-dark);
        opacity: 0.15;
        border-radius: 1px;
    }

    .landing-how-step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 50%;
        font-size: 16px;
    }

    .landing-how-step-content {
        align-items: flex-start;
        gap: 4px;
        padding-top: 6px;
    }

    .landing-how-step-title {
        font-size: 16px;
    }

    .landing-how-step-text {
        font-size: 14px;
        line-height: 1.45;
    }

    .landing-how-step-arrow {
        display: none;
    }

    .landing-adv-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .landing-advantages .landing-block {
        gap: 32px;
    }

    .landing-adv-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .landing-adv-card:last-child {
        border-bottom: none;
    }

    .landing-adv-card:hover {
        transform: none;
        box-shadow: none;
    }

    .landing-adv-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
        margin-top: 2px;
    }

    .landing-adv-icon svg {
        width: 22px;
        height: 22px;
    }

    .landing-adv-content {
        gap: 4px;
    }

    .landing-adv-title {
        font-size: 16px;
    }

    .landing-adv-text {
        font-size: 14px;
        line-height: 1.4;
    }

    .landing-who .landing-block {
        gap: 32px;
    }

    .landing-who-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .landing-who-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 0;
        border: none;
        border-bottom: 1px solid var(--color-grey-2);
        border-radius: 0;
    }

    .landing-who-card:last-child {
        border-bottom: none;
    }

    .landing-who-card:hover {
        border-color: var(--color-grey-2);
    }

    .landing-who-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .landing-who-icon svg {
        width: 28px;
        height: 28px;
    }

    .landing-who-content {
        gap: 4px;
    }

    .landing-who-title {
        font-size: 16px;
    }

    .landing-who-text {
        font-size: 14px;
        line-height: 1.4;
    }

    .landing-prices-block {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .landing-price-card {
        padding: 28px 24px 24px;
        border-radius: 18px;
    }

    .landing-price-card--popular {
        padding: 32px 24px 28px;
        box-shadow: 0 8px 24px rgba(18, 41, 75, 0.15);
    }

    .landing-price-card:hover {
        transform: none;
        box-shadow: none;
    }

    .landing-price-card--popular:hover {
        box-shadow: 0 8px 24px rgba(18, 41, 75, 0.15);
    }

    .landing-price-popular-tag {
        position: absolute;
        top: 14px;
        right: 14px;
        font-size: 12px;
        padding: 4px 14px;
    }

    .landing-price-name {
        font-size: 16px;
    }

    .landing-price-amount {
        margin-top: 16px;
        gap: 6px;
    }

    .landing-price-number {
        font-size: 32px;
    }

    .landing-price-currency {
        font-size: 16px;
    }

    .landing-price-per-doc {
        font-size: 14px;
        margin-top: 4px;
    }

    .landing-price-features {
        gap: 10px;
        margin-top: 18px;
    }

    .landing-price-feature {
        font-size: 14px;
        gap: 10px;
    }

    .landing-price-feature svg {
        width: 16px;
        height: 12px;
    }

    .landing-price-limit {
        padding-top: 18px;
        font-size: 14px;
    }

    .landing-price-btn {
        margin-top: 18px;
        padding: 14px 18px;
        font-size: 16px;
    }

    .landing-price-note {
        font-size: 14px;
        padding: 14px 16px;
    }

    .landing-cta-card {
        padding: 36px 24px;
    }

    .landing-cta-card::before {
        display: none;
    }

    .landing-cta-mobile-badge {
        display: inline-block;
    }

    .landing-cta-title {
        font-size: 26px;
    }

    .landing-cta-features {
        flex-direction: column;
        gap: 12px;
    }

    .landing-articles-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .landing-article-card-image {
        height: 180px;
    }

    .landing-article-card-title {
        font-size: 16px;
    }

    .landing-faq-question {
        font-size: 16px;
        padding: 18px 4px;
    }

    .landing-faq-answer-inner {
        font-size: 14px;
    }

    .landing-faq-aside-title {
        font-size: 16px;
    }

    .landing-reviews-grid {
        grid-template-columns: 1fr;
    }

    /* На мобильном показываем только одну заглушку */
    .landing-review-placeholder ~ .landing-review-placeholder {
        display: none;
    }

    .landing-callback-card {
        padding: 36px 24px;
        gap: 28px;
    }

    .landing-callback-title {
        font-size: 22px;
    }

    .landing-callback-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .landing-callback-contacts {
        flex-direction: column;
        gap: 12px;
    }

    .landing-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .landing-hero-buttons .landing-btn {
        width: 100%;
    }
}
