/**
 * Стили для главной страницы (landing)
 * Дизайн на основе макета Figma
 */

body {
    background: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-main {
    flex: 1;
    padding: 0;
}

/* ============================
   Hero секция
   ============================ */

.hero-section {
    background: var(--background);
    padding: 77px 0 100px;
    min-height: 640px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
}

.hero-text-block {
    flex: 0 0 500px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1em;
    color: var(--black);
    margin: 0;
    max-width: 600px;
}

.hero-title .text-primary {
    color: var(--primary-color);
}

.hero-subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    margin: 0;
    max-width: 500px;
}

.hero-subtitle strong {
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hero-primary-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 250px;
}

.hero-btn-primary {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 13px 20px 15px;
    border-radius: 10px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2em;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.hero-btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 171, 130, 0.2);
    color: var(--white);
}

.hero-savings {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3em;
    text-align: center;
    color: var(--text-secondary);
    max-width: 220px;
}

.hero-savings .savings-highlight {
    font-weight: 500;
    color: var(--primary-color);
}

.hero-btn-demo {
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: transparent !important;
    padding: 13px 15px 15px;
    border-radius: 10px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.178em;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.hero-btn-demo:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.hero-btn-demo:active,
.hero-btn-demo:focus {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

.hero-features {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: 30px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-feature-label {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2em;
    color: var(--text-secondary);
    margin: 0;
    white-space: pre-line;
    max-width: 200px;
}

.bank-icons {
    display: flex;
    align-items: center;
    gap: 0;
}

.bank-icon {
    flex-shrink: 0;
    position: relative;
}

.bank-icon:not(:first-child) {
    margin: -10px;
}

.bank-icon-img {
    width: auto;
    height: 58px;
    border: 2px solid var(--background);
    border-radius: 10px;
}

.bank-icon-info {
    position: relative;
}

.bank-icon-info-btn {
    width: 58px;
    height: 58px;
    border: 2px solid var(--background);
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 20px;
    padding: 0;
}

.bank-icon-info-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.bank-icon-info-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 12px 16px;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.bank-icon-info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--black);
}

.bank-icon-info-btn:hover + .bank-icon-info-tooltip,
.bank-icon-info-tooltip:hover {
    opacity: 1;
    visibility: visible;
}

.hero-security-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border-radius: 10px;
    padding: 8px;
}

.security-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
    font-size: 20px;
    color: var(--primary-color);
}

.security-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2em;
    color: var(--black);
    margin: 0;
    white-space: pre-line;
    min-width: 200px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

/* ============================
   Секция проблем Excel
   ============================ */

.problems-section {
    background: var(--background);
    padding: 93px 0 100px;
    min-height: 422px;
}

.problems-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.problems-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: 40px;
}

.problems-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1em;
    color: var(--black);
    margin: 0;
    flex: 0 0 590px;
}

.problems-subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    margin: 0;
    flex: 0 0 400px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.problem-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.problem-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--black);
    margin: 0 0 14px 0;
}

.problem-description {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.178em;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================
   Секция преимуществ
   ============================ */

.advantages-section {
    background: var(--background);
    padding-bottom: 100px;
    overflow-x: hidden;
}

.advantages-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.advantages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing);
    margin-bottom: 40px;
}

.advantages-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1em;
    color: var(--black);
    margin: 0;
    flex: 0 0 590px;
}

.advantages-subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    margin: 0;
    flex: 0 0 400px;
}

.advantages-slider-wrapper {
    position: relative;
    overflow: visible;
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.advantages-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.advantages-slide {
    flex: 0 0 390px;
    min-width: 0;
}

.advantages-slide:last-child {
    padding-right: var(--spacing-2xl);
}


.advantage-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.advantage-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantage-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.advantage-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.advantage-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--black);
    margin: 0;
}

.advantage-description {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    margin: 0;
}

.advantage-image {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Навигация слайдера */
.advantages-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 20px;
    color: var(--primary-color);
}

.advantages-nav:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.advantages-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.advantages-nav-prev {
    left: 0;
}

.advantages-nav-next {
    right: 0;
}

/* ============================
   Секция безопасности
   ============================ */

.security-section {
    background: var(--white);
    padding: 140px 0 100px;
}

.security-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.security-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 56px;
}

.security-text-block {
    flex: 0 0 450px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.security-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1em;
    color: var(--black);
    margin: 0;
}

.security-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    max-width: 370px;
}

.security-btn {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 13px 20px 15px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2em;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
}

.security-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 171, 130, 0.2);
    color: var(--white);
}

.security-table-wrapper {
    position: relative;
    flex: 1;
    max-width: 700px;
    display: inline-block;
    width: 100%;
}

.security-table {
    background: var(--white);
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    display: inline-block;
}

.security-table-header {
    display: grid;
    grid-template-columns: 230px 230px 1fr;
    gap: 0;
    border-bottom: 1px solid #DADADA;
    width: 100%;
}

.security-table-row {
    display: grid;
    grid-template-columns: 230px 230px 1fr;
    gap: 0;
    border-bottom: 1px solid #DADADA;
    width: 100%;
}

.security-table-row:last-child {
    border-bottom: none;
}

.security-table-cell {
    padding: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1em;
    color: var(--black);
    border-right: 1px solid #DADADA;
    min-height: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.security-table-cell:last-child {
    border-right: none;
}

.security-table-header .security-table-cell {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.178em;
    color: var(--black);
    background: transparent;
}

.security-table-cell.encrypted {
    font-family: var(--font-mono);
}

.security-table-cell.encrypted span {
    display: inline-block;
    padding: 8px 12px;
    background-color: var(--background);
    border-radius: var(--radius-full);
    color: var(--black);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
}

.security-table-cell.encrypted span::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.95) 50%);
    pointer-events: none;
}

.security-table-info {
    position: absolute;
    bottom: -8px;
    right: -8px;
}

.security-info-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 16px;
    padding: 0;
}

@media (min-width: 993px) {
    .security-info-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

.security-info-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.security-info-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    padding: 12px 16px;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.security-info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--black);
}

.security-info-btn:hover + .security-info-tooltip,
.security-info-tooltip:hover {
    opacity: 1;
    visibility: visible;
}

/* ============================
   Секция кейсов
   ============================ */

.cases-section {
    background: var(--background);
    padding: 71px 0 100px;
    overflow-x: hidden;
}

.cases-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing);
    margin-bottom: 40px;
}

.cases-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1em;
    color: var(--black);
    margin: 0;
    flex: 0 0 590px;
}

.cases-subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    margin: 0;
    flex: 0 0 400px;
}

.cases-slider-wrapper {
    position: relative;
    overflow: visible;
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.cases-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.cases-slide {
    flex: 0 0 590px;
    min-width: 0;
    scroll-snap-align: start;
}

.cases-slide:last-child {
    padding-right: var(--spacing-2xl);
}


.case-card {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.case-header {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    gap: 15px;
}

.case-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.178em;
    color: var(--black);
    margin: 0;
    flex: 0 0 calc(50% - 7.5px);
    width: calc(50% - 7.5px);
}

.case-image {
    flex: 0 0 calc(50% - 7.5px);
    width: calc(50% - 7.5px);
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.case-problem,
.case-result {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    flex: 0 0 calc(50% - 7.5px);
    width: calc(50% - 7.5px);
}

.case-problem {
    background: var(--background);
}

.case-result {
    background: var(--primary-light);
}

.case-label {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.178em;
    color: var(--text-secondary);
}

.case-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3em;
    color: var(--black);
    margin: 0;
}

/* Навигация слайдера кейсов */
.cases-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 20px;
    color: var(--primary-color);
}

.cases-nav:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.cases-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cases-nav-prev {
    left: 0;
}

.cases-nav-next {
    right: 0;
}

/* ============================
   Секция шагов
   ============================ */

.steps-section {
    background: var(--background);
    padding: 71px 0 100px;
    overflow-x: hidden;
}

.steps-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.steps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing);
    margin-bottom: 40px;
}

.steps-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1em;
    color: var(--black);
    margin: 0;
    flex: 0 0 590px;
}

.steps-subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    margin: 0;
    flex: 0 0 400px;
}

.steps-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.steps-image-wrapper {
    flex: 0 0 calc(50% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.steps-list-wrapper {
    flex: 0 0 calc(50% - 20px);
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.steps-line {
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--primary-color) 5%, 
        var(--primary-color) 95%, 
        transparent 100%);
    z-index: 0;
}

.step-item {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step-dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    margin-top: 4px;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--black);
    margin: 0;
}

.step-description {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================
   Секция сравнения
   ============================ */

.comparison-section {
    background: var(--white);
    padding: 71px 0 100px;
    overflow-x: hidden;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.comparison-content {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.comparison-text-block {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comparison-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1em;
    color: var(--black);
    margin: 0;
}

.comparison-description {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    margin: 0;
}

.comparison-btn {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 13px 20px 15px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2em;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.comparison-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 171, 130, 0.2);
    color: var(--white);
}

.comparison-table-wrapper {
    flex: 1;
    overflow-x: auto;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    min-width: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table-header {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 15px;
}

.comparison-table-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 15px;
}

.comparison-category-col {
    padding: 20px;
    background: var(--white);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--black);
}

.comparison-staff-col {
    padding: 20px;
    background: var(--background);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--black);
}

.comparison-staff-text {
    display: block;
}

.comparison-service-col {
    padding: 20px;
    background: var(--primary-color);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--white);
}

.comparison-table-header .comparison-category-col {
    font-weight: 500;
    border-radius: 10px 0 0 0;
}

.comparison-table-header .comparison-service-col {
    font-weight: 500;
    border-radius: 15px 15px 0 0;
}

.comparison-table-header .comparison-staff-col {
    background: var(--background);
    font-weight: 500;
    border-radius: 15px 15px 0 0;
}

.comparison-table-row:last-child .comparison-service-col {
    border-radius: 0 0 15px 15px;
}

.comparison-table-row:last-child .comparison-staff-col {
    border-radius: 0 0 15px 15px;
}

/* ============================
   Секция скриншотов (демо)
   ============================ */

.demo-section {
    background: var(--white);
    padding: 71px 0 90px;
    /* visible: иначе full-bleed + скролл демо на мобилке обрезается по краям */
    overflow-x: visible;
}

.demo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.demo-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1em;
    color: var(--black);
    margin: 0;
    flex: 0 0 590px;
    max-width: 100%;
}

.demo-subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    margin: 0;
    flex: 0 0 400px;
    max-width: 100%;
}

.demo-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    box-shadow: none;
}

.demo-slider {
    display: flex;
    gap: 0;
    transition: transform 0.35s ease;
    will-change: transform;
}

.demo-slide {
    flex: 0 0 100%;
    min-width: 0;
    box-sizing: border-box;
    scroll-snap-align: start;
}

.demo-slide-figure {
    margin: 0;
    background: var(--background);
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}

.demo-slide img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.demo-hint {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-secondary);
    text-align: center;
    margin: var(--spacing-xl) 0 0;
}

/* Навигация демо-слайдера (как у кейсов) */
.demo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 20px;
    color: var(--primary-color);
}

.demo-nav:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.demo-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.demo-nav-prev {
    left: 12px;
}

.demo-nav-next {
    right: 12px;
}

/* ============================
   FAQ секция
   ============================ */

.faq-section {
    background: var(--background);
    padding: 71px 0 100px;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.faq-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1em;
    color: var(--black);
    margin: 0 0 40px 0;
}

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--black);
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 400;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-left: 20px;
}

.faq-question:hover .faq-icon {
    background: var(--primary-color);
    color: var(--white);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 20px;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    padding-top: 10px;
    padding-bottom: 20px;
}

.faq-answer > * {
    min-height: 0;
    overflow: hidden;
}

.faq-answer p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================
   Плавная прокрутка
   ============================ */

html {
    scroll-behavior: smooth;
}

/* ============================
   Анимации
   ============================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section,
.problems-section,
.advantages-section,
.security-section,
.cases-section,
.steps-section,
.comparison-section,
.demo-section,
.faq-section {
    animation: fadeIn 0.6s ease-out;
}

/* ============================
   Адаптивность
   ============================ */

@media (max-width: 1200px) {
    .hero-content {
        gap: 50px;
    }
    
    .hero-text-block {
        flex: 0 0 400px;
    }

    .comparison-content {
        flex-direction: column;
        gap: var(--spacing-2xl);
    }

    .comparison-text-block {
        flex: none;
    }
}

@media (max-width: 992px) {
    body {
        overflow-x: hidden;
    }
    
    .hero-section {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .hero-text-block {
        flex: 1;
        width: 100%;
    }
    
    .hero-actions {
        flex-wrap: wrap;
    }
    
    .hero-feature-item {
        width: 100%;
    }
    
    .hero-image {
        width: 100%;
        justify-content: center;
    }
    
    .hero-img {
        max-width: 100%;
    }
    
    .problems-section {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .problems-header {
        flex-direction: column;
    }
    
    .problems-title {
        flex: 1;
        width: 100%;
    }
    
    .problems-subtitle {
        flex: 1;
        width: 100%;
        padding-top: 0;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .advantages-section {
        padding: var(--spacing-xl) 0;
    }
    
    .advantages-header {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .advantages-title {
        flex: 1;
        width: 100%;
    }
    
    .advantages-subtitle {
        flex: 1;
        width: 100%;
        padding-top: 0;
    }
    
    .advantages-slider-wrapper {
        margin-left: calc(-1 * var(--spacing-lg));
        margin-right: calc(-1 * var(--spacing-lg));
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .advantages-slider-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .advantages-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-padding-left: var(--spacing-lg);
        scroll-padding-right: var(--spacing-lg);
        -webkit-overflow-scrolling: touch;
        padding-right: 0;
        gap: 10px;
    }
    
    .advantages-slider::-webkit-scrollbar {
        display: none;
    }
    
    .advantages-slide {
        flex: 0 0 calc(100% - 40px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    .advantages-slide:last-child {
        padding-right: var(--spacing);
    }
    
    .advantage-card {
        padding: var(--spacing-xl);
    }
    
    .advantages-nav {
        display: none;
    }
    
    .cases-section {
        padding: var(--spacing-xl) 0;
    }
    
    .cases-header {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .cases-title {
        flex: 1;
        width: 100%;
    }
    
    .cases-subtitle {
        flex: 1;
        width: 100%;
        padding-top: 0;
    }
    
    .cases-slider-wrapper {
        margin-left: calc(-1 * var(--spacing-lg));
        margin-right: calc(-1 * var(--spacing-lg));
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .cases-slider-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .cases-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-padding-left: var(--spacing-lg);
        scroll-padding-right: var(--spacing-lg);
        -webkit-overflow-scrolling: touch;
        padding-right: 0;
        gap: 10px;
    }
    
    .cases-slider::-webkit-scrollbar {
        display: none;
    }
    
    .cases-slide {
        flex: 0 0 calc(100% - 40px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    .cases-slide:last-child {
        padding-right: var(--spacing);
    }
    
    .case-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .case-title {
        flex: none;
        width: 100%;
    }
    
    .case-image {
        flex: none;
        width: 100%;
        height: auto;
    }
    
    .case-image img {
        height: auto;
        object-fit: contain;
    }
    
    .case-content {
        flex-direction: column;
    }
    
    .case-problem,
    .case-result {
        flex: none;
        width: 100%;
    }
    
    .case-card {
        padding: var(--spacing-xl);
    }
    
    .cases-nav {
        display: none;
    }
    
    .demo-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .demo-header {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .demo-title {
        flex: 1;
        width: 100%;
        font-size: 32px;
    }
    
    .demo-subtitle {
        flex: 1;
        width: 100%;
        padding-top: 0;
    }
    
    .demo-slider-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: visible;
        border-radius: 16px;
        box-shadow: none;
    }
    
    .demo-slider {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        scroll-padding-inline: 0;
        padding-left: 0;
        padding-right: 0;
        gap: 0;
    }
    
    .demo-slider::-webkit-scrollbar {
        display: none;
    }
    
    .demo-slide {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    .demo-nav {
        display: none;
    }
    
    .demo-hint {
        font-size: 13px;
        margin-top: var(--spacing-lg);
    }
    
    .steps-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .steps-header {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .steps-title {
        flex: 1;
        width: 100%;
        font-size: 32px;
    }
    
    .steps-subtitle {
        flex: 1;
        width: 100%;
        padding-top: 0;
    }
    
    .steps-content {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .steps-image-wrapper {
        flex: 1;
        width: 100%;
    }
    
    .steps-list-wrapper {
        flex: 1;
        width: 100%;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .comparison-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .comparison-text-block {
        flex: 1;
        width: 100%;
    }
    
    .comparison-title {
        font-size: 32px;
    }
    
    .comparison-table-wrapper {
        width: 100%;
        overflow: visible;
    }
    
    .comparison-table {
        min-width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .comparison-table-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing);
    }
    
    .comparison-table-header .comparison-category-col {
        display: none;
    }
    
    .comparison-table-header .comparison-service-col {
        font-weight: 500;
        border-radius: 15px 15px 0 0;
    }
    
    .comparison-table-header .comparison-staff-col {
        background: none;
        font-weight: 500;
        border-radius: 15px 15px 0 0;
    }
    
    .comparison-table-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing);
    }
    
    .comparison-category-col {
        display: none;
    }
    
    .comparison-staff-col {
        padding: var(--spacing);
        font-size: 14px;
        background: transparent;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .comparison-staff-col::before {
        content: attr(data-category);
        font-weight: 500;
        font-size: 16px;
        color: var(--black);
        margin-bottom: var(--spacing-xs);
    }
    
    .comparison-staff-text {
        font-size: 14px;
    }
    
    .comparison-service-col {
        padding: var(--spacing);
        font-size: 14px;
        background: var(--primary-light);
        color: var(--primary-color);
    }
    
    .comparison-table-row:last-child .comparison-staff-col {
        border-radius: 0 0 15px 15px;
    }
    
    .comparison-table-row:last-child .comparison-service-col {
        border-radius: 0 0 15px 15px;
    }

    .security-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .security-content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xl);
    }
    
    .security-text-block {
        flex: 1;
        width: 100%;
    }
    
    .security-description {
        width: 100%;
    }
    
    .security-table-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .security-table-header,
    .security-table-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .security-table-cell {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .security-table-header .security-table-cell {
        font-size: 18px;
    }
    
    .security-info-tooltip {
        width: 240px;
        right: auto;
        left: 0;
    }
    
    .security-info-tooltip::after {
        right: auto;
        left: 20px;
    }
    
    .faq-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question-text {
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    
    .hero-primary-action {
        width: 100%;
    }
    
    .hero-btn-demo {
        /* display: none !important; */
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        margin-top: var(--spacing-lg);
        gap: var(--spacing);
    }
    
    .hero-security-badge {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-feature-item {
        flex-direction: row;
        align-items: center;
    }
    
    .problems-section {
        padding: var(--spacing-lg) 0;
    }
    
    .problems-header {
        flex-direction: column;
        gap: var(--spacing);
    }
    
    .problems-title {
        font-size: 32px;
        width: 100%;
    }
    
    .problems-subtitle {
        width: 100%;
        padding-top: 0;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing);
    }
    
    .security-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .security-table-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .security-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }
    
    .security-table-header,
    .security-table-row {
        grid-template-columns: 200px 200px 150px;
    }
    
    .security-table-cell {
        font-size: 13px;
        padding: 8px 10px;
        white-space: nowrap;
    }
    
    .security-table-header .security-table-cell {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding: 0 var(--spacing);
    }

    .hero-title {
        font-size: 28px;
    }
    
    .bank-icons {
        flex-direction: row;
        gap: var(--spacing-xs);
    }
    
    .bank-icon-info-tooltip {
        left: auto;
        right: 0;
        transform: none;
    }
    
    .bank-icon-info-tooltip::after {
        left: auto;
        right: 20px;
        transform: none;
    }

    .bank-icon-img {
        height: 48px;
    }

    .bank-icon-info-btn {
        width: 48px;
        height: 48px;
    }
    
    .problems-section {
        padding: var(--spacing-xl) 0;
    }
    
    .problems-container {
        padding: 0 var(--spacing);
    }
    
    .problems-title {
        font-size: 28px;
    }
    
    .problems-subtitle {
        font-size: 14px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing);
    }
    
    .problem-card {
        height: auto;
    }
    
    .problem-title {
        font-size: 18px;
    }
    
    .problem-description {
        font-size: 14px;
    }
    
    .advantages-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .advantages-container {
        padding: 0 var(--spacing);
    }
    
    .advantages-title {
        font-size: 28px;
    }
    
    .advantages-subtitle {
        font-size: 14px;
    }
    
    .advantages-slider-wrapper {
        margin: 0 calc(-1 * var(--spacing));
        padding: 0;
    }

    .advantages-slider {
        padding: 0 var(--spacing);
    }
    
    .advantages-slide {
        flex: 0 0 calc(100% - 20px);
    }
    
    .advantage-card {
        padding: var(--spacing);
    }
    
    .advantage-title {
        font-size: 18px;
    }
    
    .advantage-description {
        font-size: 14px;
    }
    
    .cases-section {
        padding: var(--spacing-xl) 0;
    }
    
    .cases-container {
        padding: 0 var(--spacing);
    }
    
    .cases-title {
        font-size: 28px;
    }
    
    .cases-subtitle {
        font-size: 14px;
    }
    
    .cases-slider-wrapper {
        margin: 0 calc(-1 * var(--spacing));
        padding: 0;
    }
    
    .cases-slider {
        scroll-padding-left: var(--spacing);
        scroll-padding-right: var(--spacing);
        padding: 0 var(--spacing);
        padding-right: 0;
        gap: 10px;
    }
    
    .cases-slide {
        flex: 0 0 calc(100% - 20px);
    }
    
    .demo-container {
        padding: 0 var(--spacing);
    }
    
    .demo-title {
        font-size: 28px;
    }
    
    .demo-subtitle {
        font-size: 14px;
    }
    
    .demo-slider-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
    }
    
    .demo-slider {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        scroll-padding-inline: 0;
        padding-left: 0;
        padding-right: 0;
        gap: 10px;
    }
    
    .demo-slider::-webkit-scrollbar {
        display: none;
    }
    
    .demo-slide {
        flex: 0 0 100%;
        min-width: 100%;
        box-sizing: border-box;
    }

    .demo-slide-figure {
        border-radius: 10px;
    }
    
    .case-card {
        padding: var(--spacing);
    }
    
    .case-title {
        font-size: 18px;
        flex: none;
    }
    
    .case-label,
    .case-text {
        font-size: 14px;
    }
    
    .case-image {
        height: auto;
    }
    
    .case-image img {
        height: auto;
        object-fit: contain;
    }
    
    .case-content {
        flex-direction: column;
    }
    
    .case-problem,
    .case-result {
        flex: none;
        width: 100%;
    }

    .steps-title {
        font-size: 28px;
    }
    
    .steps-content {
        gap: var(--spacing-lg);
    }
    
    .steps-list-wrapper {
        padding: var(--spacing);
    }
    
    .steps-list {
        gap: var(--spacing-lg);
    }
    
    .steps-line {
        left: 5px;
    }
    
    .step-dot {
        width: 12px;
        height: 12px;
    }
    
    .step-item {
        gap: var(--spacing);
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .comparison-section {
        padding: var(--spacing-xl) 0;
    }
    
    .comparison-container {
        padding: 0 var(--spacing);
    }
    
    .comparison-title {
        font-size: 28px;
    }
    
    .comparison-description {
        font-size: 14px;
    }
    
    .comparison-btn {
        width: 100%;
    }
    
    .comparison-table-wrapper {
        width: 100%;
        overflow: visible;
    }
    
    .comparison-table {
        min-width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .comparison-table-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing);
    }
    
    .comparison-table-header .comparison-category-col {
        display: none;
    }
    
    .comparison-table-header .comparison-service-col {
        font-weight: 500;
        border-radius: 15px 15px 0 0;
    }
    
    .comparison-table-header .comparison-staff-col {
        font-weight: 500;
        border-radius: 15px 15px 0 0;
    }
    
    .comparison-table-row {
        display: flex;
        flex-direction: column;
        gap: var(--spacing);
    }
    
    .comparison-table-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing);
    }
    
    .comparison-category-col {
        display: none;
    }
    
    .comparison-staff-col {
        padding: var(--spacing);
        font-size: 12px;
        background: transparent;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .comparison-staff-col::before {
        content: attr(data-category);
        font-weight: 500;
        font-size: 14px;
        color: var(--black);
        margin-bottom: var(--spacing-xs);
    }
    
    .comparison-staff-text {
        font-size: 12px;
    }
    
    .comparison-service-col {
        padding: var(--spacing);
        font-size: 12px;
        background: var(--primary-light);
        color: var(--primary-color);
    }
    
    .comparison-table-row:last-child .comparison-staff-col {
        border-radius: 0 0 15px 15px;
    }
    
    .comparison-table-row:last-child .comparison-service-col {
        border-radius: 0 0 15px 15px;
    }
    
    .security-container {
        padding: 0 var(--spacing);
    }
    
    .security-title {
        font-size: 28px;
    }
    
    .security-description {
        font-size: 14px;
    }
    
    .security-btn {
        width: 100%;
    }
    
    .security-table-header,
    .security-table-row {
        grid-template-columns: 150px 150px 100px;
        gap: 0;
    }
    
    .security-table-cell {
        font-size: 12px;
        padding: 8px 6px;
        white-space: nowrap;
    }
    
    .security-table-header .security-table-cell {
        font-size: 14px;
    }
    
    .security-info-tooltip {
        width: calc(100vw - 32px);
        max-width: 280px;
        right: 0;
        left: auto;
        transform: none;
    }
    
    .security-info-tooltip::after {
        right: 10px;
        left: auto;
        transform: none;
    }
    
    .faq-section {
        padding: var(--spacing-xl) 0;
    }
    
    .faq-container {
        padding: 0 var(--spacing);
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: var(--spacing-lg);
    }
    
    .faq-list {
        gap: var(--spacing);
    }
    
    .faq-question {
        padding: var(--spacing);
    }
    
    .faq-question-text {
        font-size: 18px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
        margin-left: var(--spacing);
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--spacing) var(--spacing) var(--spacing);
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}
