/* ========================================
   Базовые стили и переменные
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Кнопки (стиль Lava.ru)
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span, .btn svg {
    position: relative;
    z-index: 1;
}

/* Основная кнопка */
.btn-primary {
    background: #FF5640;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 86, 64, 0.3);
}

.btn-primary:hover {
    background: #E63D28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 86, 64, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Вторичная кнопка */
.btn-secondary {
    background: transparent;
    color: var(--text);
    backdrop-filter: blur(10px);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text);
    transform: translateY(-2px);
}

/* Белая вторичная кнопка */
.btn-secondary-white {
    background: white;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary-white:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Outline кнопка */
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Кнопка в header */
.btn-header {
    padding: 10px 20px;
    font-size: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
}

.btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

/* Кнопка "Вход" (outline) в header */
.btn-outline-header {
    padding: 10px 20px;
    font-size: 14px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-header:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

/* Кнопка "Подключить" в hero */
.btn-hero-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
}

/* Большая кнопка */
.btn-large {
    padding: 18px 36px;
    font-size: 17px;
    border-radius: 14px;
}

/* Полная ширина */
.btn-full {
    width: 100%;
}

/* ========================================
   Header
   ======================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-svg {
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 16px rgba(99, 102, 241, 0.4));
    transition: transform 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(99, 102, 241, 0.6));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: #ffffff;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* ========================================
   iPhone 15 Pro Mockup  
   ======================================== */
.hero-image {
    animation: fadeInRight 0.8s ease 0.2s backwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Корпус iPhone */
.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #e8e8ed 0%, #d2d2d7 20%, #b0b0b8 100%);
    border-radius: 46px;
    padding: 8px;
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.6),
        inset 0 -1px 0 rgba(0,0,0,0.15),
        0 25px 50px -12px rgba(0, 0, 0, 0.35),
        0 12px 24px -8px rgba(0, 0, 0, 0.2),
        0 0 0 0.5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    animation: phoneFloat 4s ease-in-out infinite;
}

/* Боковые кнопки */
.phone-btn {
    position: absolute;
    background: linear-gradient(to bottom, #c8c8cc, #a8a8ac);
    border-radius: 2px;
    z-index: 5;
}

.phone-btn-mute {
    left: -2px;
    top: 100px;
    width: 2px;
    height: 26px;
}

.phone-btn-vol-up {
    left: -2px;
    top: 142px;
    width: 2px;
    height: 46px;
}

.phone-btn-vol-down {
    left: -2px;
    top: 198px;
    width: 2px;
    height: 46px;
}

.phone-btn-power {
    right: -2px;
    top: 160px;
    width: 2px;
    height: 62px;
}

/* Блик на титановой рамке */
.phone-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 46px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.3) 0%,
        transparent 40%,
        transparent 60%,
        rgba(255,255,255,0.1) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Блик справа */
.phone-mockup::after {
    content: '';
    position: absolute;
    right: 1px;
    top: 70px;
    bottom: 70px;
    width: 1.5px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.5) 30%,
        rgba(255,255,255,0.7) 50%,
        rgba(255,255,255,0.5) 70%,
        transparent
    );
    z-index: 3;
    border-radius: 1px;
}

/* Экран */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #f2f2f7;
    border-radius: 40px;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
    border: 0.5px solid rgba(0,0,0,0.15);
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000000;
    border-radius: 18px;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

/* Камера */
.di-camera {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 35% 35%, #1a2040 0%, #080810 70%);
    border-radius: 50%;
    border: 1px solid #1c1c2e;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 2px rgba(50, 50, 100, 0.4);
}

.di-camera::after {
    content: '';
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(80, 120, 200, 0.4), transparent);
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1.5px;
}

/* Статус-бар */
.phone-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 24px 8px;
    position: relative;
    z-index: 50;
}

.phone-time {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: 0.2px;
    font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif;
}

.phone-status-icons {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Контент приложения */
.phone-app {
    padding: 4px 16px 10px;
    background: #f2f2f7;
}

/* Шапка приложения */
.app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.app-header svg {
    flex-shrink: 0;
}

.app-title {
    font-size: 17px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.3px;
    font-family: -apple-system, 'SF Pro Display', system-ui, sans-serif;
}

/* Карточка баланса */
.balance-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    padding: 18px 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.balance-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -10px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.balance-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

.balance-amount {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    font-family: -apple-system, 'SF Pro Display', system-ui, sans-serif;
}

/* Быстрые действия — 3 в ряд */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #3c3c43;
    font-weight: 500;
    cursor: pointer;
}

.action-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.action-icon svg {
    width: 20px;
    height: 20px;
}

/* Транзакции */
.transactions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.transaction-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #f2f2f7;
    flex-shrink: 0;
    font-weight: 600;
}

.transaction-info {
    flex: 1;
    min-width: 0;
}

.transaction-title {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif;
}

.transaction-date {
    font-size: 11px;
    color: #8e8e93;
}

.transaction-amount {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    white-space: nowrap;
    font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif;
}

.transaction-amount.positive {
    color: #34c759;
}

/* Home Indicator */
.phone-home-bar {
    width: 120px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    margin: 14px auto 6px;
}

/* ========================================
   Features Section — Premium Design
   ======================================== */

.features {
    padding: 120px 0;
    background: #fafafe;
    position: relative;
    overflow: hidden;
}

/* Анимированные blob-фигуры на фоне */
.features-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.features-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blobFloat 20s ease-in-out infinite;
}

.features-blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.12);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.features-blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(139, 92, 246, 0.10);
    bottom: -50px;
    left: -80px;
    animation-delay: -7s;
}

.features-blob-3 {
    width: 250px;
    height: 250px;
    background: rgba(236, 72, 153, 0.08);
    top: 40%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.05); }
}

/* Бейдж "Преимущества" */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Карточки с glassmorphism */
.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 36px 32px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    transform-style: preserve-3d;
    perspective: 800px;
}

.feature-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.12),
        0 12px 24px -8px rgba(99, 102, 241, 0.1),
        0 0 0 1px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

/* Glow-эффект при наведении */
.feature-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: var(--glow-color);
    opacity: 0;
    border-radius: 50%;
    filter: blur(60px);
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover .feature-glow {
    opacity: 0.2;
    animation: glowPulse 2s ease-in-out infinite;
}

/* Шиммер анимация */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.5) 45%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.5) 55%, transparent 80%);
    transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.feature-card:hover::before {
    left: 100%;
}

/* Нижняя подсветка карточки */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--glow-color, linear-gradient(90deg, #6366f1, #8b5cf6));
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Иконка с кольцом */
.feature-icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.feature-icon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    border: 2px solid;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.18) rotate(-8deg);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px var(--glow-color, rgba(99, 102, 241, 0.3));
    animation: iconBounce 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-icon-ring {
    opacity: 1;
    inset: -10px;
    animation: ringPulse 1.8s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.12); opacity: 0.2; }
}

@keyframes iconBounce {
    0% { transform: scale(1) rotate(0deg); }
    40% { transform: scale(1.22) rotate(-10deg); }
    70% { transform: scale(1.14) rotate(-6deg); }
    100% { transform: scale(1.18) rotate(-8deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Тег-бейдж внизу карточки */
.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    letter-spacing: 0.4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.feature-card:hover .feature-tag {
    transform: translateX(6px) scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.pricing-card:hover {
    transform: scale(1.04);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-desc {
    color: var(--text-light);
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ========================================
   Contacts Section
   ======================================== */

.contacts {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.contacts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contacts-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.contacts-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.contacts-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.contact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.contact-value:hover {
    text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-company {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.6;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ========================================
   Modal
   ======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 48px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlide 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--border);
    color: var(--text);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.modal-description {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 32px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.form-input {
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ========================================
   Scroll Reveal Animations
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

/* Hero floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Glow effect for hero */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* Phone float animation */
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}



/* Contact items entrance */
.contact-item {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contacts.visible .contact-item:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.1s; }
.contacts.visible .contact-item:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
.contacts.visible .contact-item:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }

/* Section title line */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 20px auto 0;
    transition: width 0.5s ease;
}

.section-header:hover .section-title::after {
    width: 120px;
}

/* ========================================
   Burger Menu
   ======================================== */

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Мобильное меню — overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        max-width: 360px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    /* Burger показываем */
    .burger {
        display: flex;
    }

    /* Навигация — мобильное выпадающее меню */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 40px;
        gap: 0;
        z-index: 1000;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 16px 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-link::after {
        display: none;
    }

    .nav .btn-header {
        margin-top: 24px;
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    /* Hero */
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Hero iPhone */
    .hero-image {
        max-width: 260px;
    }
    
    .phone-mockup {
        width: 240px;
        height: auto;
        border-radius: 38px;
        padding: 6px;
    }
    
    .phone-screen {
        border-radius: 34px;
        overflow: hidden;
        overflow-y: visible;
    }
    
    .dynamic-island {
        width: 80px;
        height: 22px;
    }
    
    .phone-statusbar {
        padding: 36px 16px 4px;
    }

    .phone-time {
        font-size: 13px;
    }
    
    .phone-app {
        padding: 2px 12px 8px;
    }

    .app-header {
        margin-bottom: 10px;
    }

    .app-header svg {
        width: 24px;
        height: 24px;
    }

    .app-title {
        font-size: 15px;
    }
    
    .balance-card {
        padding: 12px 12px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .balance-label {
        font-size: 10px;
    }
    
    .balance-amount {
        font-size: 20px;
    }

    .quick-actions {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .action-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

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

    .action-btn {
        font-size: 9px;
        gap: 4px;
    }

    .transactions {
        gap: 4px;
    }

    .transaction-item {
        padding: 7px 10px;
        border-radius: 10px;
        gap: 8px;
    }

    .transaction-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .transaction-icon svg {
        width: 13px;
        height: 13px;
    }

    .transaction-title {
        font-size: 11px;
    }

    .transaction-date {
        font-size: 9px;
    }

    .transaction-amount {
        font-size: 11px;
    }

    .phone-home-bar {
        width: 90px;
        height: 3px;
        margin: 8px auto 4px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Features */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 28px 24px 24px;
    }
    
    /* Pricing */
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 28px;
    }
    
    .price {
        font-size: 40px;
    }
    
    /* Contacts */
    .contacts {
        padding: 60px 0;
    }
    
    .contacts-title {
        font-size: 32px;
    }
    
    .contacts-description {
        font-size: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
    
    /* Modal */
    .modal {
        padding: 16px;
        align-items: flex-end;
    }
    
    .modal-content {
        padding: 28px 20px;
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    /* Scroll animations — reduce motion */
    .feature-card:hover {
        transform: translateY(-6px) scale(1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-image {
        max-width: 220px;
    }
    
    .phone-mockup {
        width: 210px;
        height: auto;
        border-radius: 32px;
        padding: 5px;
    }

    .phone-screen {
        border-radius: 28px;
    }

    .phone-statusbar {
        padding: 32px 12px 4px;
    }

    .balance-amount {
        font-size: 18px;
    }

    .balance-card {
        padding: 10px;
        margin-bottom: 8px;
    }

    .action-icon {
        width: 30px;
        height: 30px;
    }

    .action-icon svg {
        width: 14px;
        height: 14px;
    }

    .action-btn {
        font-size: 8px;
    }

    .transaction-item {
        padding: 6px 8px;
    }

    .transaction-icon {
        width: 26px;
        height: 26px;
    }

    .transaction-title {
        font-size: 10px;
    }

    .transaction-amount {
        font-size: 10px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .contacts-title {
        font-size: 26px;
    }
    
    .about-cta h2 {
        font-size: 24px;
    }
    
    .about-cta p {
        font-size: 15px;
    }
    
    .about-cta {
        padding: 40px 24px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ========================================
   AUTH PAGES (Login/Register)
   ======================================== */

/* ========================================
   AUTH PAGES — НОВЫЙ ДИЗАЙН
   ======================================== */

.auth-page {
    min-height: 100vh;
    padding: 100px 0 60px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Фоновые декорации */
.auth-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.auth-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.auth-blob-1 {
    width: 500px; height: 500px;
    background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(139,92,246,0.15));
    top: -150px; right: -100px;
    animation: authFloat 18s ease-in-out infinite;
}
.auth-blob-2 {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, rgba(217,70,239,0.2), rgba(99,102,241,0.1));
    bottom: -100px; left: -80px;
    animation: authFloat 22s ease-in-out infinite reverse;
}
@keyframes authFloat {
    0%,100% { transform: translate(0,0); }
    33% { transform: translate(30px,-20px); }
    66% { transform: translate(-20px,30px); }
}

/* Лейаут: форма + инфо */
.auth-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Карточка формы */
.auth-card {
    background: white;
    border-radius: 24px;
    padding: 48px 44px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
    animation: authCardIn 0.5s ease-out;
}
.auth-card-wide {
    /* для регистрации — чуть шире */
}
@keyframes authCardIn {
    from { opacity:0; transform: translateY(20px); }
    to { opacity:1; transform: translateY(0); }
}

.auth-card-header {
    text-align: center;
    margin-bottom: 36px;
}
.auth-logo-icon {
    display: inline-flex;
    margin-bottom: 16px;
}
.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.auth-subtitle {
    font-size: 15px;
    color: var(--text-light);
}

/* Форма */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.auth-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-left: 2px;
}
.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.auth-input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.2s;
    z-index: 1;
}
.auth-input {
    width: 100%;
    padding: 13px 14px 13px 42px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: all 0.2s ease;
    font-family: inherit;
}
.auth-input::placeholder {
    color: var(--text-muted);
}
.auth-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.auth-input:focus ~ .auth-input-icon,
.auth-input-wrap:has(.auth-input:focus) .auth-input-icon {
    color: var(--primary);
}
.auth-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 2px;
}

/* Глазик для пароля */
.auth-eye {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    z-index: 1;
}
.auth-eye:hover { color: var(--primary); }

/* Чекбокс и опции */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.auth-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    user-select: none;
}
.auth-check input[type="checkbox"] {
    display: none;
}
.auth-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.auth-check input:checked + .auth-checkmark {
    background: var(--primary);
    border-color: var(--primary);
}
.auth-check input:checked + .auth-checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}
.auth-check-terms {
    padding: 14px 16px;
    background: rgba(99,102,241,0.03);
    border: 1px solid rgba(99,102,241,0.08);
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}
.auth-check-terms a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.auth-check-terms a:hover { text-decoration: underline; }

.auth-forgot {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}
.auth-forgot:hover { text-decoration: underline; }

/* Алерт */
.auth-alert {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    animation: authAlertIn 0.3s ease;
}
.auth-alert-success {
    background: rgba(16,185,129,0.1);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.2);
}
.auth-alert-error {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
    border: 1px solid rgba(239,68,68,0.2);
}
@keyframes authAlertIn {
    from { opacity:0; transform:translateY(-8px); }
    to { opacity:1; transform:translateY(0); }
}

/* Кнопка отправки */
.auth-submit {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(99,102,241,0.3);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.4);
}
.auth-submit:active { transform: translateY(0); }
.auth-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.auth-submit-text { transition: opacity 0.2s; }
.auth-submit-loader {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}
.auth-submit.loading .auth-submit-text { opacity: 0; }
.auth-submit.loading .auth-submit-loader { display: flex; }

/* Нижняя ссылка */
.auth-bottom-link {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
}
.auth-bottom-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}
.auth-bottom-link a:hover { text-decoration: underline; }

/* Информационная панель */
.auth-info {
    position: sticky;
    top: 100px;
}
.auth-info-inner {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    border-radius: 24px;
    padding: 40px 32px;
    color: white;
    animation: authCardIn 0.6s ease-out 0.15s both;
}
.auth-info-inner h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.auth-info-inner > p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 32px;
    line-height: 1.5;
}

.auth-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.auth-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.auth-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.auth-info-list li div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.auth-info-list li strong {
    font-size: 15px;
    font-weight: 600;
}
.auth-info-list li span {
    font-size: 13px;
    opacity: 0.8;
}

/* ========================================
   DASHBOARD — ЛИЧНЫЙ КАБИНЕТ
   ======================================== */

/* ---- Общая обёртка ---- */
.dash {
    min-height: calc(100vh - 80px);
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 50%, rgba(217, 70, 239, 0.02) 100%);
}

/* ---- Приветствие ---- */
.dash-welcome {
    margin-bottom: 2rem;
}
.dash-welcome h1 {
    font-size: 36px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dash-welcome p {
    color: #64748b;
    font-size: 17px;
}

/* ---- Статистика ---- */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 22px 24px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}
.stat-card:hover {
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}
.stat-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

/* ---- Табы ---- */
.dash-tabs {
    display: flex;
    gap: 4px;
    background: white;
    padding: 6px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    margin-bottom: 2rem;
    overflow-x: auto;
}
.dash-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}
.dash-tab:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}
.dash-tab.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* ---- Контент табов ---- */
.dash-content {
    display: none;
}
.dash-content.active {
    display: block;
    animation: fadeInDash 0.3s ease;
}
@keyframes fadeInDash {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Секции ---- */
.dash-section {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    margin-bottom: 1.5rem;
}
.dash-section-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}
.dash-section-header h2 {
    font-size: 22px;
    color: #1e293b;
    margin: 0;
}

/* ---- Формы ---- */
.dash-form .form-group {
    margin-bottom: 20px;
}
.dash-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}
.dash-form input[type="text"],
.dash-form input[type="url"],
.dash-form input[type="number"],
.dash-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1e293b;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.dash-form input:focus,
.dash-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: white;
}
.dash-form textarea {
    resize: vertical;
    min-height: 80px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ---- Методы оплаты (чекбоксы) ---- */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.method-check {
    cursor: pointer;
}
.method-check input {
    display: none;
}
.method-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    text-align: center;
}
.method-check input:checked + .method-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-color: #6366f1;
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}
.method-box:hover {
    border-color: #a5b4fc;
    background: rgba(99, 102, 241, 0.03);
}

/* ---- Методы вывода (радио) ---- */
.withdraw-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.method-radio {
    cursor: pointer;
}
.method-radio input {
    display: none;
}
.method-radio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    text-align: center;
}
.method-radio input:checked + .method-radio-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-color: #6366f1;
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}
.method-radio-box:hover {
    border-color: #a5b4fc;
}

/* ---- Инфо вывода ---- */
.withdraw-info {
    display: flex;
    gap: 2rem;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    font-size: 15px;
    color: #475569;
}
.withdraw-info b {
    color: #1e293b;
}

/* ---- Баланс герой ---- */
.balance-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    border-radius: 18px;
    margin-bottom: 28px;
    color: white;
}
.balance-hero-amount span {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 4px;
}
.balance-hero-amount b {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.balance-hero-stats {
    display: flex;
    gap: 2rem;
    font-size: 14px;
    opacity: 0.9;
}
.balance-hero-stats b {
    font-weight: 700;
}

/* ---- Тарифные карточки ---- */
.tariff-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.tariff-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}
.tariff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.tariff-card.featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(139, 92, 246, 0.04));
}
.tariff-card.current {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.tariff-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tariff-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    margin-top: 8px;
}
.tariff-price {
    font-size: 28px;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 20px;
}
.tariff-price span {
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8;
}
.tariff-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.tariff-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #475569;
}
.tariff-card ul li:last-child {
    border-bottom: none;
}
.tariff-card ul li b {
    color: #1e293b;
}

/* ---- Текущие условия ---- */
.tariff-current {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
}
.tariff-current h3 {
    font-size: 18px;
    color: #1e293b;
    margin: 0 0 20px;
}
.tariff-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.tariff-info-item {
    text-align: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.til {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 6px;
    font-weight: 500;
}
.tiv {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #6366f1;
}

/* ---- Профиль ---- */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.profile-item {
    padding: 18px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.pl {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 4px;
    font-weight: 500;
}
.pv {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

/* ---- Алерты ---- */
.dash-alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}
.dash-alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.dash-alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.dash-alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ---- Списки ---- */
.dash-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dash-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #fafbfc;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.dash-list-item:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.dash-list-item.inactive {
    opacity: 0.55;
}
.dash-list-info {
    flex: 1;
    min-width: 0;
}
.dash-list-info h4 {
    font-size: 16px;
    color: #1e293b;
    margin: 0 0 6px;
}
.dash-list-url {
    display: block;
    font-size: 13px;
    color: #6366f1;
    text-decoration: none;
    margin-bottom: 6px;
    word-break: break-all;
}
.dash-list-url:hover {
    text-decoration: underline;
}
.dash-list-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 8px;
    line-height: 1.5;
}
.dash-list-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}
.key-code {
    display: inline-block;
    background: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    color: #6366f1;
    font-family: 'Monaco', 'Courier New', monospace;
    margin-bottom: 8px;
    border: 1px solid #e2e8f0;
    word-break: break-all;
}

/* ---- Пилюли статуса и методов ---- */
.status-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.status-pill.active {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}
.status-pill.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}
.status-pill.rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}
.method-pill {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

/* ---- Пустое состояние ---- */
.dash-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
    font-size: 15px;
}

/* ---- Кнопки ---- */
.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    flex-shrink: 0;
}
.btn-danger {
    background: #ef4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* ---- Модальное окно ---- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-box {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #f1f5f9;
}
.modal-box-header h3 {
    font-size: 20px;
    margin: 0;
    color: #1e293b;
}
.modal-box-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}
.modal-box-close:hover {
    color: #ef4444;
}
.modal-box-body {
    padding: 28px;
}
.modal-box-footer {
    padding: 20px 28px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
}

/* ---- Показ ключей ---- */
.key-show {
    margin-bottom: 16px;
}
.key-show label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
}
.key-show-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.key-show-row code {
    flex: 1;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    color: #1e293b;
    word-break: break-all;
}
.copy-small {
    background: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
    flex-shrink: 0;
}
.copy-small:hover {
    background: #e2e8f0;
}

/* ========================================
   RESPONSIVE - AUTH & DASHBOARD
   ======================================== */

@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .auth-layout {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
    .auth-info {
        position: static;
    }
    
    .dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .tariff-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .tariff-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .auth-page {
        padding: 90px 0 40px;
    }
    .auth-card {
        padding: 36px 28px;
        border-radius: 20px;
    }
    .auth-title {
        font-size: 24px;
    }
    .auth-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .auth-info-inner {
        padding: 32px 24px;
    }
    
    .dash {
        padding: 90px 0 40px;
    }
    .dash-welcome h1 {
        font-size: 26px;
    }
    .dash-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .stat-card {
        padding: 16px;
    }
    .stat-value {
        font-size: 18px;
    }
    .stat-icon {
        width: 42px;
        height: 42px;
    }
    .dash-tabs {
        gap: 2px;
        padding: 4px;
    }
    .dash-tab {
        padding: 10px 14px;
        font-size: 13px;
    }
    .dash-section {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .methods-grid {
        grid-template-columns: 1fr 1fr;
    }
    .withdraw-methods {
        grid-template-columns: 1fr;
    }
    .balance-hero {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px;
    }
    .balance-hero-amount b {
        font-size: 28px;
    }
    .balance-hero-stats {
        flex-direction: column;
        gap: 4px;
    }
    .tariff-cards {
        grid-template-columns: 1fr;
    }
    .profile-grid {
        grid-template-columns: 1fr;
    }
    .withdraw-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    .dash-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }
    .modal-box {
        border-radius: 18px;
        margin: 16px;
    }
}

@media (max-width: 480px) {
    .auth-page {
        padding: 80px 0 30px;
    }
    .auth-card {
        padding: 28px 20px;
        border-radius: 18px;
    }
    .auth-title {
        font-size: 22px;
    }
    .auth-subtitle {
        font-size: 13px;
    }
    .auth-input {
        padding: 12px 12px 12px 38px;
        font-size: 14px;
    }
    .auth-submit {
        padding: 13px 20px;
        font-size: 15px;
    }
    .auth-info-inner {
        padding: 28px 20px;
    }
    .auth-info-inner h2 {
        font-size: 20px;
    }
    .auth-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .dash {
        padding: 80px 0 30px;
    }
    .dash-welcome h1 {
        font-size: 22px;
    }
    .dash-stats {
        grid-template-columns: 1fr;
    }
    .dash-tabs {
        flex-direction: column;
    }
    .dash-tab {
        text-align: center;
    }
    .methods-grid {
        grid-template-columns: 1fr;
    }
    .dash-section {
        padding: 20px 16px;
    }
    .dash-section-header h2 {
        font-size: 18px;
    }
}
