/* ========================= Шрифты =============================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  src:  url('fonts/Inter-Regular-Variable-Latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  src:  url('fonts/Inter-Regular-Variable-Cyrillic.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  src:  url('fonts/Inter-Italic-Variable-Latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  src:  url('fonts/Inter-Italic-Variable-Cyrillic.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* ========================= Общие константы (Цвета, скругления) =============================== */

:root {
    --primary-blue: #1F72E1;
    --secondary-blue: #018CFF;
    --bg-light: #F2F3F7;
    --text-dark: #1a1d25;
    --text-gray: #6b7280;
    --card-white: #ffffff;
    --radius-lg: 30px;
}

/* ========================= Общие настройки =============================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.for-who-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hiw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.income-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================= HEADER =============================== */

header {
    background: var(--card-white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-right: 40px;
}

.logo span {
    color: #000000;
}

.nav-links-left {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-grow: 1;
}

.nav-links-left a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-links-left a:hover { color: var(--primary-blue); }

.nav-links-right {
    display: flex;
    gap: 30px;
    justify-content: right;
    align-items: center;
    flex-grow: 1;
    padding-right: 32px;
}

.nav-links-right a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-links-right a:hover { color: var(--primary-blue); }

.nav-auth { margin-left: auto; }

.btn-login {
    padding: 8px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: 0s;
}

.btn-login:hover {
    background: var(--secondary-blue);
    color: #ffffff;
    border: none;
    padding: 8px 21px;
}

@media (max-width: 992px) {
    
    .nav-links-left { display: none; } 

    .btn-login {
        display: none;
    }

}

/* ========================= HERO SECTION =============================== */

.hero {
    padding: 20px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    padding: 20px 48px;
    border-radius: 12px;
    border: none;
    font-size: 1.5rem;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #018CFF;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.static-bg {
    position: absolute;
    width: 1200px;
    height: 800px;
    background: radial-gradient(circle, rgba(1,140,255,0.3) 0%, rgba(255,255,255,0) 50%);
    z-index: 0;
    top: 50%; left: 40%;
    transform: translate(-50%, -50%);
}

.phone-slider-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.phone-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.phone-slide.active { opacity: 1; pointer-events: auto; }

.phone-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /*filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));*/
}

@media (max-width: 850px) {
    
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
}

    .hero-content h2 {
        font-size: 1.2rem;
}

    .btn-primary {
        width: 100%;
        font-size: 1.2rem;
        text-align: center;
    }

    .hero-visual { height: 700px; margin-top: 10px; }
}

/* ========================= MASONRY FEATURES (карточки под hero секцией) =============================== */

.features {
    padding-top: 40px;
    padding-bottom: 40px;
}

.features-masonry {
    column-count: 2; 
    column-gap: 40px;
}

.feature-card {
    background: var(--card-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform 0.2s;
    break-inside: avoid;
    margin-bottom: 40px; 
    width: 100%;
    
    /* Flexbox для расположения иконки слева */
    display: flex; 
    align-items: flex-start; /* Иконка прижата к верху */
    gap: 20px; /* Отступ между иконкой и текстом */
}

.feature-card:hover { transform: translateY(-5px); }

.feature-icon {
    flex-shrink: 0;
    width: 64px; 
    height: 64px;
    object-fit: contain; 
    object-position: center;
    margin-top: -4px; /* Небольшая коррекция, чтобы оптически выровнять с первой строкой текста */
}


/* Обертка для текста */
.feature-content-wrapper {
    display: flex;
    flex-direction: column;
}

/* Заголовок и текст */
.feature-card h3 { 
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px; 
    line-height: 1.3;
}

.feature-card p { 
    color: var(--text-gray); 
    font-size: 1.3rem; 
    line-height: 1.6;
}

.feature-card ul { 
    color: var(--text-gray); 
    font-size: 1.3rem; 
    line-height: 1.3;
    padding-left: 15px;
    margin-top: 0px;
}

.feature-card li { 
    margin-top: 15px;
    padding-left: 7px;
}

/* Адаптив для мобильных */

@media (max-width: 992px) {
    .features-masonry { column-count: 1; } 
}

@media (max-width: 576px) {

    .features {
        padding-top: 30px;
        padding-bottom: 0px;
    }

    .feature-card {
        padding: 24px;
        gap: 10px;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .feature-card p {
        font-size: 1.2rem;
    }

    .feature-icon {
        margin-top: 0;
    }

}

/* ========================= SCENARIOS (сценарии использования) =============================== */

.scenarios {
    padding: 40px 0;
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.scenario-block {
    background: var(--card-white);
    border-radius: var(--radius-lg);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 60px;
    padding-right: 50px;
    display: grid;
    grid-template-columns: 1.7fr 0.8fr;
    gap: 60px;
    align-items: stretch; 
}

.scenario-left { 
    text-align: center; 
    position: relative;
}

.scenario-visual {
    position: relative;
    width: 100%; 
    height: 500px; 
    margin-bottom: 20px;
}

.scenario-img-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scenario-img-slide.active { opacity: 1; }

.scen-dots-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* DOTS (Common) НАСТРОЙКИ ТОЧЕК ОБЩИЕ */
.dot {
    width: 20px; height: 20px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
    margin-top: 0px;
    margin-bottom: 10px;
}
.dot:hover { transform: scale(1.2); }
.dot.active { background: #1a1d25; transform: scale(1.1); }

/* Hero specific dots НАСТРОЙКИ ТОЧЕК В СЕКЦИИ HERO*/
.hero-dots-container .dot { background: rgba(255,255,255,0.4); }
.hero-dots-container .dot.active { background: #fff; }
.hero-dots-container {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
     z-index: 10;
}

.scenario-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    height: 100%; 
}

.scenario-content h3 { 
    font-size: 1.7rem;
    margin-top: 35px;
    margin-bottom: 20px; 
}
.scenario-content p { 
    font-size: 1.05rem; 
    margin-bottom: 10px; 
}

.scenario-nav {
    margin-top: auto; 
    margin-bottom: 85px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-arrow {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 40px;
    transition: 0.2s;
    user-select: none;
    font-weight: bold;
}

.nav-arrow:hover { background: #d1d5db; }

@media (max-width: 992px) {
    
    .scenarios { margin-bottom: 20px; }

    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .scenario-block {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 20px;
    }

    .scen-dots-wrapper {
        margin-top: 20px;
    }

    .scenario-visual {
        margin-top: 0px;
        margin-bottom: 0px; 
        width: 100%;
        height: 200px;
    }

    .scenario-content h3 {
        margin-top: 0px;
    }

    .scenario-content p {
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .scenario-nav {
        justify-content: center;
        margin-top: 20px; 
        margin-bottom: 0px;
    }

}

/* ========================= FOR WHO BANNER =============================== */

.for-who-container {
    margin-bottom: 100px;
}

.for-who-card {
    width: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    display: flex; 
    flex-direction: row; /* В ряд */
    padding: 60px;
    color: white;
    box-sizing: border-box;
    background: linear-gradient(135deg, #1A61C0 50%, #00ADFF 90%);
}

.for-who-bg {
    position: absolute;
    bottom: 40px; right: 40px;
    width: 70%;
    height: 80%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
}

.for-who-col-left {
    position: relative;
    z-index: 2;
    flex: 1.3; /* левая колонка с текстом занимает чуть больше места*/
}
.for-who-col-right {
    position: relative;
    z-index: 2;
    flex: 0.7; /* правая колонка меньше */
}

/* Контент внутри левой колонки */
.for-who-col-left h3 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    max-width: 90%; 
}

.for-who-col-left p {
    font-size: 1.7rem;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 90%;
    font-weight: 400;
}

.for-who-col-left ul {
    font-size: 1.7rem;
    margin-bottom: 40px;
    margin-left: 32px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 90%;
    font-weight: 400;
}

.btn-for-who {
    display: inline-block;
    padding: 18px 40px;
    background-color: white;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-for-who:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Адаптив */
@media (max-width: 850px) {

    .for-who-container {
        margin-bottom: 40px;
    }

    .for-who-card {
        flex-direction: column; /* На мобильных колонки одна под другой */
        padding: 40px 40px;
        text-align: center;
        justify-content: center;
    }
    
    .for-who-col-right {
        display: none; 
    }
    
    .for-who-col-left h3 {
        max-width: 100%;
        font-size: 2rem;
    }
 
    .for-who-col-left p {
        max-width: 100%;
        font-size: 1.3rem;
        text-align: left;
    }

    .for-who-col-left ul {
        font-size: 1.3rem;
        margin-bottom: 40px;
        margin-left: 20px;
        opacity: 0.9;
        line-height: 1.5;
        max-width: 90%;
        font-weight: 400;
        text-align: left;
    }

    .btn-for-who {
        width: 100%;
        text-align: center;
    }

    .for-who-bg {
        display: none;
    }
}


/* ========================= HOW IT WORKS SECTION =============================== */

.hiw-container {
    margin-bottom: 100px;
}

.hiw-section-title {
    text-align: left;
    margin-left: 60px;
    font-size: 2.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hiw-block {
    padding-left: 0px;
    padding-bottom: 0px;
    display: grid;
    grid-template-columns: 6fr 4fr; 
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hiw-text-col h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hiw-text-col p {
    font-size: 1.7rem;
    line-height: 1.4;
    color: var(--text-gray);
    max-width: 700px;
}

.hiw-text-col ul {
    list-style-type: none;
    padding-left: 10px;
    font-size: 1.7rem;
    line-height: 1.4;
    color: var(--text-gray);
    max-width: 700px;
}

.hiw-text-col li {
    position: relative;
    margin-bottom: 25px;
    padding-left: 50px;   /* Отступ текста от маркера */
}

/* Рисуем свой кружок */
.hiw-text-col li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px; /* Подгоняем по высоте строки */
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--secondary-blue);
    box-shadow: 0 0 15px rgba(1, 140, 255, 0.7);
}

.hiw-image-col {
    display: flex;
    justify-content: flex-end; /* Прижали вправо */
    position: relative;
}

.hiw-image-col img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(30, 90, 246, 0.05);
}

/* Адаптив */
@media (max-width: 850px) {

    .hiw-section-title {
        text-align: center;
        margin-left: 0px;
        font-size: 2rem;
    }

    .hiw-container {
        margin-bottom: 40px;
    }

    .hiw-block {
        grid-template-columns: 1fr; /* Одна колонка */
        gap: 40px;
        text-align: left;
    }
    
    .hiw-text-col ul {
        font-size: 1.3rem;
    }

    .hiw-image-col {
        order: -1;
    }

}



/* ========================= INCOME SECTION (4 карточки под сценариями использования) =============================== */

.income-container {
    margin-bottom: 120px;
}

.income-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    gap: 40px;
    margin-bottom: 40px;
}

.income-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    color: white;
    height: 300px; /* Фиксированная высота */
    position: relative;
    overflow: hidden; /* обрезает картинку по краям скругления */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s;
}

.income-card:hover { transform: translateY(-5px); }

/* Колонки */
.col-wide { grid-column: span 7; }
.col-narrow { grid-column: span 5; }

.card-1 { background: linear-gradient(135deg, #1A61C0 0%, #00ADFF 100%); }
.card-2 { background: linear-gradient(150deg, #701A88 0%, #DA98EC 100%); }
.card-3 { background-color: #fff; color: var(--text-dark); border: 1px solid #e5e7eb; }
.card-4 { background-color: #fff; color: var(--text-dark); border: 1px solid #e5e7eb; }

.income-card h3 { 
    font-size: 1.5rem; 
    line-height: 1.2;
    max-width: 100%;
    z-index: 2; 
    position: relative;
    margin-bottom: 12px;
}

.income-card p {
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 400;
    max-width: 80%;
    z-index: 2;
    position: relative;
    opacity: 0.9;
}

/* Фоновая картинка в углу */
.card-bg-image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1; /* Под текстом */
    max-height: 60%; 
    max-width: 60%;
    object-fit: contain;
    object-position: bottom right;
    /* Декоративное свойство: запрет на выделение картинки */
    user-select: none; 
    pointer-events: none;
}

/* Адаптив на мобилках */
@media (max-width: 992px) {
    
    .income-container {
        margin-bottom: 60px;
    }
    
    .income-grid {
        /* Переключаем с 12 колонок на 1 колонку */
        grid-template-columns: 1fr; 
        gap: 20px;
        margin-bottom: 20px;
    }

    /* Сбрасываем span для всех карточек */
    .col-wide, .col-narrow {
        grid-column: span 1;
    }
    
    .income-card {
        height: auto;
        min-height: 300px;
    }

    .income-card h3, .income-card p { max-width: 100%; }

    .card-bg-image {
        max-height: 35%;
    }
}

/* ========================= DEMO BANNER (большой нижний баннер) =============================== */

.demo-container {
    margin-bottom: 120px;
}

.demo-card {
    width: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    display: flex; 
    flex-direction: row;
    padding: 60px;
    color: white;
    box-sizing: border-box;
    background: linear-gradient(135deg, #701A88 50%, #DA98EC 90%);
}

.demo-bg {
    position: absolute;
    bottom: 0px; right: 40px;
    width: 70%;
    height: 90%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
}

.demo-col-left {
    position: relative;
    z-index: 2;
    flex: 1.2; /* левая колонка с текстом занимает чуть больше места*/
}
.demo-col-right {
    position: relative;
    z-index: 2;
    flex: 0.8; /* правая колонка меньше */
}

/* Контент внутри левой колонки */
.demo-col-left h3 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 90%; 
}

.demo-col-left p {
    font-size: 1.3rem;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 85%;
}

.demo-col-left li {
    font-size: 2rem;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 85%;
}

.btn-demo {
    display: inline-block;
    padding: 18px 40px;
    background-color: white;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-demo:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Адаптив */
@media (max-width: 850px) {

    .demo-container {
        margin-bottom: 60px;
    }

    .demo-card {
        flex-direction: column; /* На мобильных колонки одна под другой */
        padding: 40px 40px;
        text-align: left;
        justify-content: left;
    }
    
    .demo-col-right {
        display: none; 
    }
    
    .demo-col-left h3 {
        max-width: 100%;
        font-size: 2rem;
    }
     
    .demo-col-left p {
        max-width: 100%;
        font-size: 1.3rem;
    }
    
    .btn-demo {
        width: 100%;
        text-align: center;
    }

    .demo-bg {
        display: none;
    }
}


/* --- CONTACT SECTION --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Две равные колонки */
    gap: 80px;
    align-items: start;
}

/* Левая часть (Инфо) */

.contact-info {
    padding-left: 60px;
}

.contact-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-item a:hover { color: var(--primary-blue); }


/* Правая часть (Карточка формы) */
.contact-form-card {
    background: var(--card-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Легкая тень для объема */
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #fff;
}

/* Кнопка */
.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-submit:hover { background: var(--secondary-blue); }
.btn-submit:disabled { background-color: #ccc; cursor: not-allowed; }

/* Статус отправки */
.form-status {
    margin-top: 15px;
    text-align: center;
    font-size: 0.95rem;
    min-height: 20px;
}
.status-success { color: #10b981; }
.status-error { color: #ef4444; }

/* Адаптив */
@media (max-width: 992px) {

    .contact-info {
        padding-left: 0px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr; /* Одна колонка */
        gap: 40px;
    }
    
    .contact-info {
        text-align: center;
    }

    .section-title { text-align: center !important; } /* Перебиваем инлайн стиль для мобилок */
    .contact-desc { margin: 0 auto 30px auto; }
    .contact-methods { align-items: center; }
    
    .contact-form-card {
        padding: 30px 20px;
    }
}



/* ========================= FOOTER =============================== */

.footer {
    margin-top: auto;
    background: var(--card-white);
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 14px;
}
