/* ============================================
   АНТИМАТ — Стили (Apple минимализм)
   ============================================ */

/* --- Сброс и база --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #09090b;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: #a855f7;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #c084fc;
}

/* ============================================
   НАВИГАЦИЯ
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: box-shadow 0.3s;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.02em;
}

.logo-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #71717a;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.btn-nav {
    background: #7c3aed !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.btn-nav:hover {
    background: #9333ea !important;
    transform: translateY(-1px);
}

/* Бургер */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    background: rgba(9, 9, 11, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #a1a1aa;
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #a855f7;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #fafafa;
}

.gradient-text {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: #71717a;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #a1a1aa;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 1px solid #27272a;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #7c3aed;
    color: #fff;
}

/* ============================================
   ЦИФРЫ
   ============================================ */
.stats-section {
    padding: 40px 0 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 32px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #18181b;
    border-radius: 16px;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: #27272a;
    background: rgba(255,255,255,0.04);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fafafa;
    letter-spacing: -0.02em;
}

.stat-desc {
    font-size: 0.85rem;
    color: #52525b;
    margin-top: 4px;
}

/* ============================================
   ДЕМО ТЕРМИНАЛ
   ============================================ */
.demo-section {
    padding: 0 0 100px;
}

.demo-card {
    background: #111113;
    border-radius: 16px;
    border: 1px solid #1c1c1f;
    overflow: hidden;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.demo-header {
    background: #18181b;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-dots {
    display: flex;
    gap: 7px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.demo-title {
    color: #52525b;
    font-size: 0.8rem;
    font-weight: 500;
}

.demo-body {
    padding: 24px;
    font-family: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
    font-size: 0.85rem;
    line-height: 2;
    min-height: 240px;
}

.demo-line {
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s ease;
}

.demo-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.demo-line .dim { color: #52525b; }
.demo-line .green { color: #22c55e; }
.demo-line .red { color: #ef4444; }
.demo-line .purple { color: #a855f7; }

.demo-line.result {
    color: #22c55e;
    font-weight: 700;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #1c1c1f;
}

/* ============================================
   КАК РАБОТАЕТ
   ============================================ */
.how-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #fafafa;
}

.section-sub {
    color: #52525b;
    font-size: 1.1rem;
}

.steps {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #18181b;
    border-radius: 20px;
    transition: all 0.4s;
}

.step-card:hover {
    border-color: #7c3aed;
    transform: translateY(-4px);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(124, 58, 237, 0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon-wrap {
    margin-bottom: 16px;
}

.step-icon {
    font-size: 2.4rem;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fafafa;
}

.step-card p {
    color: #71717a;
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-arrow {
    color: #27272a;
    font-size: 2rem;
    margin-top: 80px;
    font-weight: 300;
}

/* ============================================
   ВОЗМОЖНОСТИ
   ============================================ */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid #18181b;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s;
    position: relative;
}

.feature-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-3px);
}

.feature-card.large {
    grid-column: span 3;
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(180deg, rgba(124,58,237,0.06) 0%, rgba(9,9,11,0) 100%);
    border-color: rgba(124, 58, 237, 0.15);
}

.feature-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.15);
    color: #a855f7;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fafafa;
}

.feature-card.large h3 {
    font-size: 1.4rem;
}

.feature-card p {
    color: #71717a;
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-card.large p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* ============================================
   СРАВНЕНИЕ
   ============================================ */
.compare-section {
    padding: 100px 0;
}

.compare-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.compare-card {
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #18181b;
}

.compare-card.old {
    background: rgba(239, 68, 68, 0.03);
    border-color: rgba(239, 68, 68, 0.15);
}

.compare-card.new {
    background: rgba(34, 197, 94, 0.03);
    border-color: rgba(34, 197, 94, 0.15);
}

.compare-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fafafa;
}

.compare-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compare-item {
    font-size: 0.9rem;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.compare-item.bad {
    color: #a1a1aa;
}

.compare-item.bad::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.compare-item.good {
    color: #d4d4d8;
}

.compare-item.good::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

/* ============================================
   ЦЕНЫ
   ============================================ */
.pricing-section {
    padding: 100px 0;
}

/* Объяснение зарядов */
.charges-explain {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 24px 28px;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 16px;
}

.charge-icon-big {
    flex-shrink: 0;
}

.charge-text {
    font-size: 0.9rem;
    color: #a1a1aa;
    line-height: 1.6;
}

.charge-text b {
    color: #e2e8f0;
}

/* Карточки пакетов */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.price-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid #18181b;
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: #27272a;
}

.price-card.popular {
    border-color: #7c3aed;
    background: linear-gradient(180deg, rgba(124,58,237,0.08) 0%, rgba(9,9,11,0) 100%);
}

.price-card.best {
    border-color: #ec4899;
    background: linear-gradient(180deg, rgba(236,72,153,0.06) 0%, rgba(9,9,11,0) 100%);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-badge.best {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.price-charges {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fafafa;
    margin-top: 8px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fafafa;
    margin-bottom: 4px;
}

.btn-price {
    display: block;
    padding: 12px;
    border-radius: 10px;
    background: #18181b;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 1px solid #27272a;
}

.btn-price:hover {
    background: #27272a;
    color: #fff;
    transform: translateY(-1px);
}

.btn-price.popular {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    border: none;
    color: #fff;
}

.btn-price.popular:hover {
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3);
}

/* Тарифы */
.tariffs {
    margin-bottom: 60px;
}

.tariffs h3 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fafafa;
}

.tariff-table {
    background: rgba(255,255,255,0.02);
    border: 1px solid #18181b;
    border-radius: 16px;
    overflow: hidden;
}

.tariff-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.7fr 0.9fr 0.9fr 0.9fr;
    border-bottom: 1px solid #18181b;
}

.tariff-row:last-child {
    border-bottom: none;
}

.tariff-row.header {
    background: #18181b;
}

.tariff-row.header .tariff-cell {
    font-weight: 600;
    color: #71717a;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tariff-row.popular {
    background: rgba(124, 58, 237, 0.05);
}

.tariff-cell {
    padding: 16px 18px;
    font-size: 0.9rem;
    color: #a1a1aa;
}

.tariff-cell.name {
    color: #fafafa;
    font-weight: 600;
}

.tariff-cell.highlight {
    color: #a855f7;
    font-weight: 700;
}

.rec {
    background: #7c3aed;
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 6px;
    vertical-align: middle;
}

.tariff-note {
    text-align: center;
    margin-top: 16px;
    color: #52525b;
    font-size: 0.85rem;
}

/* Калькулятор */
.calculator {
    background: rgba(255,255,255,0.02);
    border: 1px solid #18181b;
    border-radius: 20px;
    padding: 40px;
}

.calculator h3 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #fafafa;
}

.calc-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.calc-field label {
    display: block;
    font-size: 0.8rem;
    color: #71717a;
    margin-bottom: 8px;
    font-weight: 500;
}

.calc-field input,
.calc-field select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #27272a;
    background: #09090b;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
    appearance: auto;
}

.calc-field input:focus,
.calc-field select:focus {
    border-color: #7c3aed;
}

.calc-result {
    text-align: center;
    padding: 24px;
    background: rgba(124, 58, 237, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.calc-charges {
    font-size: 2rem;
    font-weight: 900;
    color: #a855f7;
    margin-bottom: 4px;
}

.calc-time {
    color: #a1a1aa;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.calc-price {
    color: #52525b;
    font-size: 0.85rem;
}

/* ============================================
   НАЧАТЬ (загрузка)
   ============================================ */
.start-section {
    padding: 100px 0;
}

.upload-card {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    border: 1px solid #18181b;
    border-radius: 24px;
    padding: 40px;
}

.upload-area {
    border: 2px dashed #27272a;
    border-radius: 16px;
    padding: 56px 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.03);
}

.upload-area.dragover {
    border-color: #a855f7;
    background: rgba(124, 58, 237, 0.08);
}

.upload-icon {
    margin-bottom: 16px;
}

.upload-area h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fafafa;
}

.upload-area p {
    color: #52525b;
    font-size: 0.9rem;
}

.upload-formats {
    margin-top: 8px;
    font-size: 0.78rem !important;
    color: #3f3f46 !important;
}

/* Настройки после выбора файла */
.upload-settings {
    margin-top: 24px;
}

.file-info {
    padding: 16px 20px;
    background: #18181b;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.setting-group label {
    display: block;
    font-size: 0.8rem;
    color: #71717a;
    margin-bottom: 6px;
    font-weight: 500;
}

.setting-group select {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid #27272a;
    background: #09090b;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.setting-group select:focus {
    border-color: #7c3aed;
}

/* Чекбоксы */
.settings-checks {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #a1a1aa;
    user-select: none;
}

.checkbox-wrap input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #27272a;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.checkbox-wrap input:checked + .checkmark {
    background: #7c3aed;
    border-color: #7c3aed;
}

.checkbox-wrap input:checked + .checkmark::after {
    content: "✓";
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Итого */
.upload-summary {
    padding: 20px;
    background: #18181b;
    border-radius: 12px;
    margin-bottom: 20px;
}

.summary-line {
    font-size: 0.9rem;
    color: #a1a1aa;
    padding: 4px 0;
}

.summary-line b {
    color: #e2e8f0;
}

.summary-line.dim {
    color: #52525b;
    font-size: 0.85rem;
}

.btn-process {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
    padding: 18px;
    font-size: 1.1rem;
}

.upload-warning {
    text-align: center;
    color: #eab308;
    font-size: 0.85rem;
    padding: 10px;
    background: rgba(234, 179, 8, 0.06);
    border-radius: 8px;
}

/* Прогресс */
.upload-progress {
    text-align: center;
    padding: 40px 0;
}

.progress-status {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #e2e8f0;
}

.progress-bar-wrap {
    background: #18181b;
    border-radius: 8px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    border-radius: 8px;
    width: 0%;
    transition: width 0.3s;
}

.progress-percent {
    color: #71717a;
    font-size: 0.9rem;
}

/* Авторизация */
.auth-block {
    text-align: center;
    padding: 32px 0;
}

.auth-block p {
    color: #71717a;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #1f1f1f;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #18181b;
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #27272a;
}

.faq-item.open {
    border-color: rgba(124, 58, 237, 0.3);
}

.faq-q {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e2e8f0;
}

.faq-q span {
    font-size: 1.4rem;
    color: #7c3aed;
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.open .faq-q span {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    color: #71717a;
    font-size: 0.9rem;
    line-height: 1.7;
    transition: all 0.4s ease;
}

.faq-item.open .faq-a {
    padding: 0 24px 20px;
    max-height: 400px;
}

/* ============================================
   КОНТАКТЫ
   ============================================ */
.contact-section {
    padding: 60px 0 100px;
}

.contact-card {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(180deg, rgba(124,58,237,0.06) 0%, rgba(9,9,11,0) 100%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 24px;
}

.contact-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fafafa;
}

.contact-card p {
    color: #71717a;
    margin-bottom: 32px;
    font-size: 1rem;
}

.contact-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid #27272a;
    border-radius: 12px;
    color: #e2e8f0 !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.contact-link:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.06);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.3rem;
}

/* ============================================
   ФУТЕР
   ============================================ */
footer {
    border-top: 1px solid #18181b;
    padding: 48px 0 24px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 40px;
}

.footer-left .logo {
    margin-bottom: 8px;
}

.footer-left p {
    color: #52525b;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #52525b;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #a855f7;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contacts a {
    color: #52525b;
    font-size: 0.85rem;
}

.footer-contacts a:hover {
    color: #a855f7;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #18181b;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    color: #3f3f46;
    font-size: 0.8rem;
}

.footer-legal {
    color: #3f3f46;
    font-size: 0.8rem;
}

/* ============================================
   АДАПТИВ (мобильные)
   ============================================ */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .tariff-row {
        grid-template-columns: 1.4fr 0.8fr 0.6fr 0.8fr 0.8fr 0.8fr;
    }

    .calc-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .step-card {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.large {
        grid-column: span 1;
    }

    .compare-cards {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr 1fr;
    }

    .tariff-table {
        overflow-x: auto;
    }

    .tariff-row {
        min-width: 600px;
    }

    .settings-grid {
        grid-template-columns: 1fr;
    }

    .settings-checks {
        flex-direction: column;
        gap: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-contacts {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }

    .charges-explain {
        flex-direction: column;
        text-align: center;
    }

    .upload-card {
        padding: 24px;
    }

    .calculator {
        padding: 24px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* ============================================
   НОВЫЕ СТИЛИ — добавлено
   ============================================ */

/* Карточка "Ещё выгоднее" */
.price-card.popular2 {
    border-color: #22c55e;
    background: linear-gradient(180deg, rgba(34,197,94,0.06) 0%, rgba(9,9,11,0) 100%);
}

.price-badge.pop2 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.btn-price.pop2 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    color: #fff;
}

.btn-price.pop2:hover {
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.3);
}

/* Множители ярко */
.tariff-note.bright {
    text-align: center;
    margin-top: 16px;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 20px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 10px;
}

/* Перечёркнутая цена */
.price-old {
    font-size: 1.05rem;
    color: #52525b;
    text-decoration: line-through;
    margin-bottom: 4px;
}

/* Розовая кнопка для "Лучшая цена" */
.btn-price.best {
    background: linear-gradient(135deg, #ec4899, #db2777);
    border: none;
    color: #fff;
}

.btn-price.best:hover {
    box-shadow: 0 6px 24px rgba(236, 72, 153, 0.3);

}

/* Фикс контактов */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.06);
    color: #a78bfa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.5);
}
