/* =============================================
   1С в облаке — Облачные решения для бизнеса
   Design System (светлая тема)
   Форк: partner-site → 1c-site
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-y: scroll; scrollbar-gutter: stable; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: #1F5BFF; text-decoration: none; transition: all .25s ease; }
a:hover { opacity: .85; }

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

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Inter', 'Roboto', Arial, sans-serif; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: 52px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

.text-muted { color: #6b7280; }
.text-center { text-align: center; }

/* --- Animated Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, #1F5BFF, #7C3AED, #1F5BFF);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* --- Layout --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 100px 0; }

.section--dark {
    background: #07062B;
    color: #fff;
    position: relative;
}

.section--light { background: #fff; color: #0a0a0a; }

.section--gray {
    background: #f8f9fb;
    color: #0a0a0a;
}

/* --- Glow Effects --- */
.glow-blue {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(31,91,255,.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    text-align: center;
    position: relative;
}

.btn--primary {
    background: linear-gradient(135deg, #1F5BFF, #4F46E5);
    color: #fff;
    box-shadow: 0 4px 24px rgba(31,91,255,.35);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(31,91,255,.5);
    color: #fff;
    opacity: 1;
}

.btn--outline {
    background: rgba(255,255,255,.06);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
}
.btn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.4);
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
}

.btn--outline-dark {
    background: transparent;
    color: #1F5BFF;
    border: 1.5px solid #1F5BFF;
}
.btn--outline-dark:hover {
    background: #1F5BFF;
    color: #fff;
    opacity: 1;
}

/* --- Header (DARK) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(7,6,43,.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    height: 72px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.header__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.header__logo svg { width: 36px; height: 36px; }
.header__logo-img { height: 34px; width: auto; }

.header__nav { display: flex; align-items: center; gap: 36px; }
.header__nav a {
    color: rgba(255,255,255,.65);
    font-size: 15px;
    font-weight: 500;
    position: relative;
}
.header__nav a:hover { color: #fff; opacity: 1; }
.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1F5BFF;
    transition: width .3s;
}
.header__nav a:hover::after, .header__nav a.active::after { width: 100%; }
.header__nav a.active { color: #fff; opacity: 1; }

.header__cta .btn { padding: 10px 24px; font-size: 14px; border-radius: 10px; }
.header__cta--mobile { display: none; }

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero (LIGHT) --- */
.hero {
    padding: 180px 0 100px;
    background: #fff;
    color: #0a0a0a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle grid background for light hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(31,91,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,91,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

/* Light glow orb */
.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(31,91,255,.08) 0%, rgba(124,58,237,.04) 40%, transparent 70%);
    pointer-events: none;
}

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

.hero h1 { max-width: 820px; margin: 0 auto 28px; color: #0a0a0a; }

.hero__subtitle {
    font-size: 19px;
    color: #6b7280;
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 400;
}

.hero__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(31,91,255,.06), rgba(124,58,237,.04));
    border: 1px solid rgba(31,91,255,.15);
    border-radius: 40px;
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
}
.hero__badge span { color: #1F5BFF; font-weight: 600; }

/* Hero guarantee text */
.hero__guarantee {
    margin-top: 16px;
    font-size: 15px;
    color: #1F5BFF;
    font-weight: 600;
}

/* --- Cards Grid --- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(0,0,0,.06);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1F5BFF, #7C3AED);
    opacity: 0;
    transition: opacity .35s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    border-color: transparent;
}
.card:hover::before { opacity: 1; }

.card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(31,91,255,.1), rgba(124,58,237,.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #1F5BFF;
}

.card h3 { margin-bottom: 12px; }
.card p { color: #6b7280; font-size: 15px; line-height: 1.7; }

/* Dark cards (glass morphism) */
.card--dark {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
}
.card--dark::before {
    background: linear-gradient(90deg, #1F5BFF, #7C3AED);
    opacity: 0;
}
.card--dark:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.card--dark:hover::before { opacity: 1; }
.card--dark h3 { color: #fff; }
.card--dark p { color: rgba(255,255,255,.6); }
.card--dark .card__icon {
    background: linear-gradient(135deg, rgba(31,91,255,.2), rgba(124,58,237,.15));
}

/* --- Features Grid (2x3) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    transition: all .3s;
}
.feature:hover {
    background: rgba(31,91,255,.04);
}

.feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(31,91,255,.1), rgba(124,58,237,.06));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F5BFF;
}

.feature h4 { margin-bottom: 6px; }
.feature p { color: #6b7280; font-size: 14px; line-height: 1.6; }

/* --- Trust Logos --- */
.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: .6;
    transition: all .3s;
}
.trust-logo:hover { opacity: 1; transform: translateY(-4px); }
.trust-logo__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(31,91,255,.08), rgba(124,58,237,.06));
    border: 1px solid rgba(31,91,255,.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F5BFF;
}
.trust-logo__text {
    font-size: 13px;
    text-align: center;
    max-width: 120px;
    color: #6b7280;
    font-weight: 500;
}

/* --- Steps --- */
.steps { display: flex; gap: 48px; counter-reset: step; }

.step {
    flex: 1;
    position: relative;
    counter-increment: step;
    padding-top: 56px;
}

.step::before {
    content: counter(step);
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1F5BFF, #4F46E5);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(31,91,255,.3);
}

.step h3 { margin-bottom: 8px; }
.step p { color: #6b7280; font-size: 15px; }

/* Connector line */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 56px;
    right: -32px;
    height: 2px;
    background: linear-gradient(90deg, #1F5BFF, rgba(31,91,255,.1));
    border-radius: 1px;
}

/* --- FAQ Accordion --- */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid #eef0f3;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 48px 28px 0;
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    position: relative;
    color: #0a0a0a;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    transition: color .2s;
}
.faq-question:hover { color: #1F5BFF; }

.faq-question::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 32px;
    height: 32px;
    background: rgba(31,91,255,.08);
    border-radius: 8px;
    transform: translateY(-50%);
    transition: all .3s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231F5BFF' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.faq-item.active .faq-question::after {
    background: rgba(31,91,255,.12);
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq-answer__inner {
    padding: 0 0 28px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
}

/* --- Form --- */
/* --- Form (LIGHT) --- */
.form {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,.06);
}

.form__row { margin-bottom: 20px; }

.form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #0a0a0a;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
    transition: all .25s;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #9ca3af;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: 2px solid #1F5BFF;
    outline-offset: 1px;
    border-color: #1F5BFF;
    box-shadow: 0 0 0 3px rgba(31,91,255,.15);
    background: #fff;
}

.form__select option { background: #fff; color: #0a0a0a; }

.form__textarea { min-height: 100px; resize: vertical; }

.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form__consent {
    font-size: 13px;
    color: #6b7280;
    margin-top: 16px;
    text-align: center;
}
.form__consent a { color: #1F5BFF; text-decoration: underline; }

.form__checkbox { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; cursor: pointer; }
.form__checkbox input[type="checkbox"] {
    flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; cursor: pointer;
    accent-color: #1F5BFF; border-radius: 4px;
}
.form__checkbox-label {
    font-size: 13px; color: #6b7280; line-height: 1.4; text-align: left; cursor: pointer;
}
.form__checkbox-label a { color: #1F5BFF; text-decoration: underline; }

.form__submit { margin-top: 8px; width: 100%; padding: 18px; font-size: 17px; }

/* Form success/error messages */
.form__message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    display: none;
    font-weight: 500;
}
.form__message--success { background: rgba(34,197,94,.1); color: #22C55E; border: 1px solid rgba(34,197,94,.2); }
.form__message--error { background: rgba(239,68,68,.1); color: #EF4444; border: 1px solid rgba(239,68,68,.2); }

/* --- Partners Page --- */
.filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
}
.filter-btn:hover { border-color: #1F5BFF; color: #1F5BFF; }
.filter-btn.active { background: linear-gradient(135deg, #1F5BFF, #4F46E5); color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(31,91,255,.3); }

.partner-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.partner-card__logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0f4ff, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #1F5BFF;
    overflow: hidden;
}
.partner-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.partner-card__name { font-weight: 700; font-size: 17px; }

.partner-card__tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(31,91,255,.08), rgba(124,58,237,.06));
    color: #1F5BFF;
    font-size: 13px;
    font-weight: 600;
}

.partner-card__region { font-size: 14px; color: #6b7280; }

.partner-card__link {
    font-size: 14px;
    color: #1F5BFF;
    font-weight: 600;
}

/* --- Terms Page --- */
.terms-block { margin-bottom: 48px; }

.terms-block h2 { margin-bottom: 28px; font-size: 28px; }

.terms-list { display: flex; flex-direction: column; gap: 20px; }

.terms-list__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: 14px;
    transition: background .2s;
}
.terms-list__item:hover { background: rgba(31,91,255,.03); }

.terms-list__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(31,91,255,.1), rgba(124,58,237,.06));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F5BFF;
    margin-top: 2px;
}

.terms-list__text h4 { margin-bottom: 4px; }
.terms-list__text p { color: #6b7280; font-size: 15px; }

/* --- Section Headers --- */
.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__header h2 { margin-bottom: 16px; }

.section__header p {
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section--dark .section__header p { color: rgba(255,255,255,.55); }
.section--light .section__header p { color: #6b7280; }

/* --- Footer --- */
.footer {
    background: #07062B;
    color: rgba(255,255,255,.5);
    padding: 56px 0 24px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer__col h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer__col a {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    margin-bottom: 10px;
}
.footer__col a:hover { color: rgba(255,255,255,.9); }

.footer__legal {
    max-width: 1140px;
    margin: 32px auto 0;
    padding: 0 24px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer__legal a {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .2s;
}
.footer__legal a:hover { color: rgba(255,255,255,.6); }

.footer__bottom {
    max-width: 1140px;
    margin: 16px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
    color: rgba(255,255,255,.35);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    transition: all .2s;
}
.footer__socials a:hover { color: #fff; background: rgba(31,91,255,.2); opacity: 1; }

/* --- Empty State --- */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state p { color: #6b7280; font-size: 18px; margin-bottom: 28px; }

/* --- Page Header (internal pages) --- */
.page-header {
    padding: 160px 0 72px;
    background: #07062B;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(31,91,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,91,255,.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header p {
    color: rgba(255,255,255,.55);
    font-size: 18px;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- CTA Bottom Block --- */
.cta-bottom { text-align: center; padding: 60px 0; }
.cta-bottom h2 { margin-bottom: 20px; }

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* --- Number Counter Animation --- */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { flex-wrap: wrap; }
    .step:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    .section { padding: 64px 0; }
    .hero { padding: 140px 0 80px; }

    .cards { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }

    .steps { flex-direction: column; gap: 32px; }

    .form { padding: 24px; }
    .form__grid { grid-template-columns: 1fr; }

    .header__nav { display: none; }
    .header__burger { display: flex; }

    .header__nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(7,6,43,.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .header__cta { display: none; }
    .header__cta--mobile {
        display: block;
        margin-top: 8px;
    }

    .footer__inner { flex-direction: column; }

    .trust-logos { gap: 24px; }

    .partner-card { padding: 24px; }
}

@media (max-width: 480px) {
    h1 { font-size: 28px; }
    .hero__buttons { flex-direction: column; align-items: center; }
    .hero__buttons .btn { width: 100%; }
    .btn { padding: 16px 28px; }
}

/* Why page */
.why-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.why-stat { text-align: center; padding: 32px 16px; border-radius: 16px; background: linear-gradient(135deg, #f0f4ff, #ede9fe); }
.why-stat__number { font-size: 48px; font-weight: 800; color: #1F5BFF; line-height: 1; margin-bottom: 12px; }
.why-stat__number span { font-size: 24px; font-weight: 700; }
.why-stat__label { font-size: 14px; color: #555; line-height: 1.5; }

.law-requirements { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.law-card { padding: 32px; }
.law-card__icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #1F5BFF, #7C3AED); display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 20px; }
.law-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.law-card p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 12px; }
.law-ref { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.penalty-table-wrap { overflow-x: auto; margin-top: 40px; }
.penalty-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.penalty-table th { background: #07062B; color: #fff; padding: 16px 24px; text-align: left; font-weight: 600; font-size: 15px; }
.penalty-table td { padding: 16px 24px; border-bottom: 1px solid #f0f0f0; font-size: 15px; color: #333; }
.penalty-table tr:last-child td { border-bottom: none; }
.penalty-table__highlight { background: #fff5f5; }
.penalty-table__highlight td { color: #c0392b; font-weight: 600; }
.penalty-table td small { font-weight: 400; color: #777; font-size: 13px; }

.penalty-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 24px; padding: 20px 24px; background: #f0f4ff; border-radius: 12px; border-left: 4px solid #1F5BFF; }
.penalty-note p { font-size: 14px; line-height: 1.6; color: #333; margin: 0; }

.criminal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.criminal-card { padding: 32px; text-align: center; }
.criminal-card__article { font-size: 12px; font-weight: 600; color: #1F5BFF; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.criminal-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.criminal-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; margin-bottom: 20px; }
.criminal-card__penalty { font-size: 18px; color: #fff; margin-bottom: 4px; }
.criminal-card__fine { font-size: 13px; color: rgba(255,255,255,.5); }

.tax-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.tax-item { padding: 32px; background: #fff; border-radius: 16px; border: 1px solid #eee; transition: transform .2s, box-shadow .2s; }
.tax-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.06); }
.tax-item__law { font-size: 12px; font-weight: 600; color: #1F5BFF; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.tax-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.tax-item p { font-size: 14px; color: #555; line-height: 1.6; }

.risk-scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.risk-card { padding: 32px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; }
.risk-card__icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(31,91,255,.15), rgba(124,58,237,.15)); display: flex; align-items: center; justify-content: center; color: #1F5BFF; margin-bottom: 20px; }
.risk-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.risk-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }

.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.solution-item { display: flex; gap: 16px; padding: 24px; background: #fff; border-radius: 14px; border: 1px solid #eee; }
.solution-item__check { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: #f0f4ff; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.solution-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.solution-item p { font-size: 14px; color: #555; line-height: 1.6; }
.btn--large { padding: 18px 36px; font-size: 16px; }

/* --- Tax Audit Sections --- */
.audit-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.audit-card { padding: 32px; }
.audit-card__badge { display: inline-block; font-size: 12px; font-weight: 700; color: #1F5BFF; background: rgba(31,91,255,.12); padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 0.3px; }
.audit-card__badge--red { color: #ff4444; background: rgba(255,68,68,.12); }
.audit-card h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.audit-card__subtitle { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.audit-card__list { list-style: none; padding: 0; }
.audit-card__list li { font-size: 14px; color: rgba(255,255,255,.75); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.audit-card__list li:last-child { border-bottom: none; }
.audit-card__list li::before { content: '→'; color: #1F5BFF; font-weight: 700; flex-shrink: 0; }

.doc-timeline { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.doc-timeline__item { display: flex; gap: 20px; padding: 28px; background: #fff; border-radius: 16px; border: 1px solid #eee; }
.doc-timeline__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: #f0f4ff; display: flex; align-items: center; justify-content: center; color: #1F5BFF; }
.doc-timeline__icon--warning { background: #fff3e0; color: #ff9800; }
.doc-timeline__content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.doc-timeline__content p { font-size: 14px; color: #555; line-height: 1.7; }

.accountant-risks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.acc-risk-card { padding: 32px; position: relative; }
.acc-risk-card__number { font-size: 48px; font-weight: 800; color: rgba(31,91,255,.15); line-height: 1; margin-bottom: 16px; }
.acc-risk-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.acc-risk-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }

.audit-scenario { margin-top: 48px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.audit-scenario__header { padding: 24px 32px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.08); }
.audit-scenario__header h3 { font-size: 16px; font-weight: 700; color: #fff; }
.audit-scenario__grid { display: grid; grid-template-columns: 1fr 1fr; }
.audit-scenario__col { padding: 28px 32px; }
.audit-scenario__col--bad { background: rgba(255,68,68,.06); }
.audit-scenario__col--good { background: rgba(31,91,255,.06); }
.audit-scenario__label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.audit-scenario__col--bad .audit-scenario__label { color: #ff6b6b; }
.audit-scenario__col--good .audit-scenario__label { color: #4ecdc4; }
.audit-scenario__col ul { list-style: none; padding: 0; }
.audit-scenario__col li { font-size: 14px; color: rgba(255,255,255,.7); padding: 6px 0 6px 22px; position: relative; line-height: 1.5; }
.audit-scenario__col--bad li::before { content: '✕'; color: #ff6b6b; font-weight: 700; position: absolute; left: 0; top: 6px; }
.audit-scenario__col--good li::before { content: '✓'; color: #4ecdc4; font-weight: 700; position: absolute; left: 0; top: 6px; }

/* --- Nav Dropdown --- */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle { background: none; border: none; color: rgba(255,255,255,.65); font: inherit; font-size: 15px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 0; transition: opacity .25s; }
.nav-dropdown__toggle:hover { color: #fff; opacity: .85; }
.nav-dropdown__toggle svg { transition: transform .2s; }
.nav-dropdown.active .nav-dropdown__toggle svg { transform: rotate(180deg); }
.nav-dropdown__menu { display: none; position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%); min-width: 280px; background: rgba(7,6,43,.95); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 8px; z-index: 1000; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.nav-dropdown.active .nav-dropdown__menu { display: block; }
.nav-dropdown__menu a { display: block; padding: 10px 16px; font-size: 14px; color: rgba(255,255,255,.8); border-radius: 8px; transition: all .15s; }
.nav-dropdown__menu a:hover { background: rgba(31,91,255,.15); color: #fff; opacity: 1; }
@media (hover: hover) and (min-width: 769px) {
    .nav-dropdown:hover .nav-dropdown__menu { display: block; }
    .nav-dropdown:hover .nav-dropdown__toggle svg { transform: rotate(180deg); }
}

/* --- Scroll-to-top --- */
.scroll-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #1F5BFF, #7C3AED);
    color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity .3s, visibility .3s, transform .3s;
    box-shadow: 0 4px 16px rgba(31,91,255,.3);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(31,91,255,.4); }
.scroll-top svg { width: 20px; height: 20px; }

/* --- Hero Stats Bar --- */
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,.08); }
.hero-stat { text-align: center; }
.hero-stat__number { font-size: 28px; font-weight: 800; color: #1F5BFF; }
.hero-stat__label { font-size: 13px; color: #6b7280; margin-top: 4px; }

/* --- Threat Cards (4 col) --- */
.threat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.threat-card { padding: 28px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; transition: transform .2s, border-color .2s; }
.threat-card:hover { transform: translateY(-4px); border-color: rgba(31,91,255,.3); }
.threat-card__icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(31,91,255,.15), rgba(124,58,237,.15)); display: flex; align-items: center; justify-content: center; color: #1F5BFF; margin-bottom: 16px; }
.threat-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.threat-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 16px; }
.threat-card__link { font-size: 13px; font-weight: 600; color: #1F5BFF; }
.threat-card__link:hover { opacity: 1; text-decoration: underline; }

/* --- Story Block --- */
.story-block { max-width: 800px; margin: 40px auto 0; }
.story-block__scenario { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); margin-top: 32px; }
.story-block__col { padding: 28px 32px; }
.story-block__col--before { background: rgba(255,68,68,.06); }
.story-block__col--after { background: rgba(31,91,255,.06); }
.story-block__label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.story-block__col--before .story-block__label { color: #ff6b6b; }
.story-block__col--after .story-block__label { color: #4ecdc4; }
.story-block__text { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7; }
.story-block__text strong { color: #fff; }

/* --- Product Cards --- */
.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.product-card { padding: 36px; background: #fff; border-radius: 20px; border: 1px solid rgba(0,0,0,.06); text-align: center; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.product-card__icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, #f0f4ff, #ede9fe); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #1F5BFF; }
.product-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.product-card p { font-size: 14px; color: #555; line-height: 1.6; }

/* --- Related Articles --- */
.related-articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.related-card { display: block; padding: 28px; background: #fff; border-radius: 16px; border: 1px solid #eee; transition: transform .2s, box-shadow .2s; }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.06); opacity: 1; }
.related-card__tag { font-size: 11px; font-weight: 700; color: #1F5BFF; text-transform: uppercase; letter-spacing: 0.5px; }
.related-card h3 { font-size: 16px; font-weight: 700; color: #0a0a0a; margin: 8px 0; line-height: 1.3; }
.related-card p { font-size: 13px; color: #6b7280; line-height: 1.5; margin-bottom: 12px; }
.related-card__link { font-size: 13px; font-weight: 600; color: #1F5BFF; }

/* --- Article Cards Grid (main page) --- */
.article-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.article-card { display: block; padding: 28px; background: #fff; border-radius: 16px; border: 1px solid #eee; transition: transform .2s, box-shadow .2s; }
.article-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.08); opacity: 1; }
.article-card__tag { font-size: 11px; font-weight: 700; color: #1F5BFF; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 8px; }
.article-card h3 { font-size: 17px; font-weight: 700; color: #0a0a0a; margin-bottom: 8px; line-height: 1.3; }
.article-card p { font-size: 13px; color: #6b7280; line-height: 1.5; margin-bottom: 16px; }
.article-card__arrow { font-size: 13px; font-weight: 600; color: #1F5BFF; }

/* --- Article Page Content --- */
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.article-meta__back { font-size: 14px; color: rgba(255,255,255,.6); }
.article-meta__back:hover { color: #fff; opacity: 1; }
.article-meta__date, .article-meta__time { font-size: 13px; color: rgba(255,255,255,.6); }
.article-content { max-width: 840px; margin: 0 auto; }
.article-content p { font-size: 16px; line-height: 1.8; color: #333; margin-bottom: 20px; }
.article-content h2 { margin: 48px 0 20px; }
.article-content h3 { margin: 32px 0 12px; }
.article-content ul, .article-content ol { margin-bottom: 20px; padding-left: 24px; }
.article-content li { font-size: 15px; line-height: 1.7; color: #444; margin-bottom: 8px; }
.article-content blockquote { margin: 24px 0; padding: 20px 24px; background: #f0f4ff; border-left: 4px solid #1F5BFF; border-radius: 0 12px 12px 0; font-size: 15px; color: #333; line-height: 1.7; }

/* --- Article Table --- */
.article-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0 32px; }
.article-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 15px; }
.article-table thead { background: #07062B; color: #fff; }
.article-table th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: 14px; }
.article-table td { padding: 12px 16px; border-bottom: 1px solid #e5e7eb; color: #333; line-height: 1.6; }
.article-table tbody tr:hover { background: #f8f9fb; }
.section--dark .article-table tbody tr:hover { background: #f8f9fb; }
.section--dark .article-table tbody tr:hover td { color: #0a0e27 !important; }
.article-table tbody tr:last-child td { border-bottom: none; }

/* --- Article Highlight --- */
.article-highlight { margin: 24px 0; padding: 20px 24px; background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%); border-left: 4px solid #1F5BFF; border-radius: 0 12px 12px 0; }
.article-highlight p { font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 0; }
.article-highlight p + p { margin-top: 12px; }
.article-highlight strong { color: #07062B; }

/* --- Number Highlights --- */
.number-highlights { display: flex; justify-content: center; gap: 64px; margin-top: 40px; }
.number-highlight { text-align: center; }
.number-highlight__value { font-size: 42px; font-weight: 800; color: #fff; line-height: 1; }
.number-highlight__label { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 8px; }

/* --- Section Gray --- */
.section--gray { background: #f8f9fb; }

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(7,6,43,.95); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: center; gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner p { font-size: 13px; color: rgba(255,255,255,.6); margin: 0; max-width: 600px; }
.cookie-banner a { color: rgba(255,255,255,.8); text-decoration: underline; }
.cookie-banner__btn {
    padding: 8px 24px; border: none; border-radius: 8px;
    background: #1F5BFF; color: #fff; font-size: 14px; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: background .2s;
}
.cookie-banner__btn:hover { background: #1849d6; }

/* --- Responsive (why page + new components) --- */
@media (max-width: 1024px) {
    .why-stats { grid-template-columns: repeat(2, 1fr); }
    .criminal-cards, .risk-scenarios, .accountant-risks { grid-template-columns: 1fr; }
    .audit-scenario__grid, .story-block__scenario { grid-template-columns: 1fr; }
    .threat-cards { grid-template-columns: repeat(2, 1fr); }
    .article-cards { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 32px; flex-wrap: wrap; }
    .number-highlights { gap: 40px; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .law-requirements, .tax-grid, .solution-grid, .audit-types { grid-template-columns: 1fr; }
    .why-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-stat__number { font-size: 36px; }
    .doc-timeline__item { flex-direction: column; gap: 12px; }
    .threat-cards, .product-cards, .related-articles, .article-cards { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
    .number-highlights { flex-direction: column; gap: 24px; }
    .nav-dropdown__menu { position: static; transform: none; min-width: 100%; background: transparent; backdrop-filter: none; border: none; box-shadow: none; padding: 0 0 0 16px; margin-top: 4px; }
    .nav-dropdown__menu a { color: rgba(255,255,255,.6); padding: 8px 0; }
    .article-table { font-size: 13px; }
    .article-table th, .article-table td { padding: 10px 12px; }
    .article-content { padding: 0 16px; }
}

/* --- Term Tooltips --- */
.term {
    position: relative;
    border-bottom: 1.5px dotted currentColor;
    cursor: help;
    white-space: nowrap;
}
.section--dark .term, .hero .term { border-bottom-color: rgba(255,255,255,.4); }
.section--light .term, .section--gray .term { border-bottom-color: rgba(31,91,255,.4); }

.term::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 14px;
    background: #07062B;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    white-space: normal;
    width: max-content;
    max-width: 280px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
    z-index: 200;
    pointer-events: none;
    text-align: left;
    letter-spacing: 0;
    text-transform: none;
}
.term::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #07062B;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
    z-index: 201;
    pointer-events: none;
}
.term:hover::after, .term:hover::before,
.term.active::after, .term.active::before {
    opacity: 1;
    visibility: visible;
}
/* Flip tooltip below when near top */
.term--below::after {
    bottom: auto;
    top: calc(100% + 8px);
}
.term--below::before {
    bottom: auto;
    top: calc(100% + 2px);
    border-top-color: transparent;
    border-bottom-color: #07062B;
}
@media (max-width: 768px) {
    .term::after { max-width: 220px; font-size: 12px; }
    .term { white-space: normal; }
}

/* --- Image Banner (разделитель между секциями) --- */
.img-banner {
    position: relative;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.35);
}
.img-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 680px;
    padding: 0 24px;
}
.img-banner__content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}
.img-banner__content p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,.8);
}
@media (max-width: 768px) {
    .img-banner { height: 280px; }
    .img-banner__content h3 { font-size: 22px; }
    .img-banner__content p { font-size: 15px; }
}

/* --- Split Image+Text Block --- */
.split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    overflow: hidden;
}
.split-block--reverse { direction: rtl; }
.split-block--reverse > * { direction: ltr; }
.split-block__img {
    background-size: cover;
    background-position: center;
    min-height: 300px;
}
.split-block__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 56px;
}
.split-block__text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0a0a0a;
}
.split-block__text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 12px;
}
.split-block__text .btn { align-self: flex-start; margin-top: 8px; }
@media (max-width: 768px) {
    .split-block { grid-template-columns: 1fr; }
    .split-block--reverse { direction: ltr; }
    .split-block__img { min-height: 220px; }
    .split-block__text { padding: 32px 20px; }
    .split-block__text h3 { font-size: 22px; }
}
