:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --trial: #8b5cf6;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --card-bg: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    border: none;
    /* остальные стили */
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    /* остальные стили */
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 5px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.lang-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-light);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.btn-subtitle {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
}
.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.trust-badge i {
    color: #10b981;
    font-size: 16px;
}
.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* PRO кнопка - оранжевый градиент */
.btn-pro {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 12px; 
}

.btn-pro:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}
.hero-visual .screenshot-carousel {
    width: 100%;
    max-width: 400px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text);
    border: 1px solid var(--border);
}

.feature-tag i {
    color: var(--primary);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    background: #1e293b;
    border-radius: 30px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.phone-screen {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    height: 600px;
    position: relative;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
}

.app-title {
    font-weight: 600;
    font-size: 18px;
}

.app-content {
    flex: 1;
    padding: 20px;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.photo-item {
    background: var(--bg-light);
    border-radius: 8px;
    height: 100px;
    border: 1px dashed var(--border);
}

.report-info {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.app-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.app-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.feature-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 2;
}

.qr-badge {
    top: -20px;
    right: -40px;
    color: var(--success);
}

.timestamp-badge {
    bottom: 40px;
    left: -60px;
    color: var(--warning);
}

/* Value Triad */
.value-triad {
    padding: 80px 0;
    background: var(--bg-light);
}
/* Privacy Section */
.privacy-section {
    padding: 80px 0;
    background: #f8fafc;
}

.privacy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.privacy-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.privacy-icon i {
    color: white;
    font-size: 24px;
}

.privacy-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.privacy-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.triad-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    font-size: 28px;
    color: white;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.card-desc {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.step-icon i {
    font-size: 32px;
    color: var(--primary);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}
.step-time {
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    margin: 8px 0;
    display: inline-block;
    padding: 4px 12px;
    background: #d1fae5;
    border-radius: 12px;
}
.step-desc {
    color: var(--text-light);
    line-height: 1.7;
}
.screenshot-carousel {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.carousel-slide {
  display: none;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.carousel-btn {
  background: #f1f5f9;
  border: none;
  padding: 8px 16px;
  border-radius: 24px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: #e2e8f0;
}
.hero-visual .carousel-controls {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 15px !important;
  position: static !important;
  width: 100% !important;
}
/* Why SnapFile */
.why-snapfile {
    padding: 80px 0;
    background: var(--bg-light);
}

.comparison-table {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-bottom: 50px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--border);
}

.table-row.header {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text);
}

.table-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-col {
    background: var(--bg-light);
    font-weight: 600;
}

.snapfile-col {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.check-icon {
    color: var(--success);
}

.x-icon {
    color: var(--danger);
}

.minus-icon {
    color: var(--text-lighter);
}
.professional-callout {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
    text-align: center;
    border-left: 4px solid #f59e0b;
}

.warning-badge {
    display: inline-block;
    background: #f59e0b;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.warning-text {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fbbf24;
}

.callout-intro {
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
}

.professional-checklist {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 30px;
}

.professional-checklist li {
    padding: 12px 0;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.professional-checklist li:last-child {
    border-bottom: none;
}

.professional-checklist i {
    color: #10b981;
    margin-right: 12px;
}

.callout-footer {
    font-size: 1.1em;
    font-weight: 600;
    color: #60a5fa;
    margin-top: 30px;
}
.callout-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #60a5fa;
    transition: all 0.3s;
    display: inline-block;
}

.callout-link:hover {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
    transform: translateX(5px);
}
.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.key-point {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
}

.point-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.point-icon i {
    font-size: 24px;
    color: var(--primary);
}

.key-point h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.key-point p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Industries */
.industries {
    padding: 80px 0;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.industry-tag {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    cursor: default;
}

.industry-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
/* Modal - Hidden by default */
.modal {
    display: none; /* ВАЖНО! */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #dc2626;
    transform: rotate(90deg);
}

.modal-actions {
    margin-top: 20px;
    text-align: center;
}

.modal-actions .btn-primary {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 14px;
}

.modal-actions .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}
/* Industry Cards - Desktop Fix */
@media (min-width: 768px) {
    .industry-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .industry-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .industry-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .industry-name {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #1e293b;
    }

    .industry-desc {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 20px;
        min-height: 40px;
    }

    .btn-view-sample {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
        font-size: 14px;
    }

    .btn-view-sample:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

    .modal-content {
        position: relative;
        background: white;
        margin: 5% auto;
        padding: 40px;
        width: 90%;
        max-width: 1000px;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
}
/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-table {
    display: grid;
    grid-template-columns: 200px repeat(4, 1fr);
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border: 1px solid var(--border);
}

.table-header {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: subgrid;
    border-bottom: 2px solid var(--border);
}

.header-cell {
    padding: 30px 20px;
    text-align: center;
}

.header-cell:first-child {
    background: var(--bg-light);
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    border-right: 1px solid var(--border);
}

.free-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.trial-header {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    position: relative;
}

.pro-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    position: relative;
}

.enterprise-header {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.popular-badge, .trial-badge {
    background: transparent;
    color: var(--primary);
    padding: 6px 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.trial-badge {
    color: var(--trial);
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-price {
    margin-top: 10px;
}

.price-main {
    font-size: 32px;
    font-weight: 800;
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.price-savings {
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
}

.feature-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: subgrid;
    border-bottom: 1px solid var(--border);
}

.feature-row:last-of-type {
    border-bottom: none;
}

.feature-label {
    background: var(--bg-light);
    padding: 18px 20px;
    border-right: 1px solid var(--border);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature-value {
    padding: 18px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    gap: 8px;
}
/* Before/After Section */
.before-after-section {
    padding: 80px 0;
    background: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.comparison-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e2e8f0;
}

.before-card {
    border-color: #ef4444;
}

.after-card {
    border-color: #10b981;
    background: #f0fdf4;
}

.card-header {
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.time-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.time-badge.before {
    background: #fee2e2;
    color: #dc2626;
}

.time-badge.after {
    background: #d1fae5;
    color: #059669;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.steps-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #94a3b8;
    font-weight: bold;
}

.after-card .steps-list li:before {
    content: "✓";
    color: #10b981;
}

.result-badge {
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.result-badge.negative {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.result-badge.positive {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #86efac;
}

.savings-summary {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    color: white;
}

.savings-box {
    font-size: 18px;
    margin-bottom: 10px;
}

.savings-highlight {
    display: inline-block;
    margin-left: 10px;
    font-size: 32px;
    font-weight: 800;
}

.savings-weekly {
    font-size: 14px;
    opacity: 0.9;
}
.free-column { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); }
.trial-column { background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%); }
.pro-column { 
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}
.enterprise-column { background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%); }

.table-footer {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: subgrid;
    border-top: 2px solid var(--border);
}

.footer-cell {
    padding: 25px 20px;
    text-align: center;
}

.footer-cell:first-child {
    background: var(--bg-light);
    border-right: 1px solid var(--border);
}

.choose-plan-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.choose-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.trial-column .choose-plan-btn { background: var(--trial); }
.trial-column .choose-plan-btn:hover { background: #7c3aed; }

.pro-column .choose-plan-btn { background: var(--primary); }
.pro-column .choose-plan-btn:hover { background: var(--primary-light); }

.enterprise-column .choose-plan-btn { background: #7c3aed; }
.enterprise-column .choose-plan-btn:hover { background: #6d28d9; }

.free-column .choose-plan-btn {
    background: #94a3b8;
}

.free-column .choose-plan-btn:hover {
    background: #94a3b8;
    transform: none;
    box-shadow: none;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.user-info p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-text {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.rating {
    color: #fbbf24;
}


/* Testimonial Form */
.testimonial-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 600px;
}

.testimonial-form h3 {
    margin-bottom: 20px;
    color: var(--text);
}

.testimonial-form input,
.testimonial-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.testimonial-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* No Testimonials placeholder */
.no-testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-testimonials i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-testimonials p {
    font-size: 16px;
}

/* Avatar with letter */
.testimonial-card .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

/* Remove old avatar img styles if exist */
.testimonial-card .avatar img {
    display: none;
}
/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-light);
    border-top: 1px solid var(--border);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #1e293b;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.tagline {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.link-group a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 14px;
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #94a3b8;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-wrapper {
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        font-size: 14px;
        padding: 12px 16px;
        white-space: normal;
        text-align: center;
    }
    
    .btn-subtitle {
        font-size: 11px;
    }
}
@media (min-width: 769px) {
    .hero-buttons {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        justify-content: flex-start;
    }
    
    .btn-wrapper {
        flex: 0 0 280px;
        width: 280px;
        min-width: 280px;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* МОБИЛЬНЫЕ (оставляем как есть ниже) */
/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .phone-mockup {
        order: -1;
    }
    
    .feature-badge {
        display: none;
    }
    
    /* Скрываем только если используешь отдельную таблицу цен, 
       но обычно в PWA-лендингах её оставляют. Если мешает — оставь display: none */
    .pricing-table {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .steps, .triad-cards, .testimonial-cards {
        grid-template-columns: 1fr;
    }

    /* --- ИСПРАВЛЕННЫЙ БЛОК ТАБЛИЦЫ --- */
    .comparison-table {
        overflow-x: auto; /* Включаем скролл */
        -webkit-overflow-scrolling: touch;
        display: block;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
    }
    
    .comparison-table .table-row {
        display: grid;
        /* Фиксируем ширину колонок: Название (160px), SnapFile (120px), Остальные по 180px */
        grid-template-columns: 160px 120px 180px 180px;
        width: max-content; /* Чтобы строка не сжималась и создавала скролл */
        min-width: 100%;
    }
    
    .feature-col {
        position: sticky;
        left: 0;
        background: var(--bg-light) !important; /* Фон, чтобы контент не просвечивал при скролле */
        z-index: 10;
        box-shadow: 2px 0 5px rgba(0,0,0,0.05); /* Тень для визуального разделения */
    }

    .table-cell {
        border-bottom: 1px solid var(--border);
        padding: 12px 10px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .table-cell.feature-col {
        justify-content: flex-start;
        text-align: left;
    }
    /* -------------------------------- */
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .lang-switcher {
        font-size: 14px;
    }
    
    .lang-btn {
        padding: 4px 8px;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
}
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .industry-tags {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .industry-tag {
        flex-shrink: 0;
    }
}
/* === ДОБАВИТЬ В КОНЕЦ landing.css === */

/* Мобильная таблица тарифов */
.pricing-table-mobile {
    display: none;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-table-mobile .plan-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-table-mobile .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-table-mobile .plan-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.pricing-table-mobile .plan-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-table-mobile .plan-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.pricing-table-mobile .plan-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-table-mobile .plan-price {
    margin-top: 10px;
}

.pricing-table-mobile .price-main {
    font-size: 32px;
    font-weight: 800;
}

.pricing-table-mobile .price-period {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-table-mobile .plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-table-mobile .plan-feature {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.pricing-table-mobile .plan-feature:last-child {
    border-bottom: none;
}

.pricing-table-mobile .choose-plan-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.pricing-table-mobile .choose-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.pricing-table-mobile .trial-badge,
.pricing-table-mobile .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--trial);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-table-mobile .popular-badge {
    background: var(--primary);
}

/* Адаптивность таблиц */
@media (max-width: 992px) {
    .pricing-table.desktop-table {
        display: none;
    }
    
    .pricing-table-mobile {
        display: flex;
    }
}

@media (min-width: 993px) {
    .pricing-table.desktop-table {
        display: grid;
    }
    
    .pricing-table-mobile {
        display: none;
    }
}

/* Стили для кнопки Use it Free! и Start Trial! в hero */
.button-divider {
    padding: 0 15px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}



/* Оптимизация навигации для мобильных */
@media (max-width: 768px) {
    .nav-links {
        gap: 10px;
    }
    
    .lang-switcher {
        font-size: 12px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
    /* Telegram кнопки */
.telegram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0088cc;
}

.telegram-link:hover {
    color: #006699;
}

.telegram-link i {
    font-size: 18px;
}

/* Плавающая кнопка Telegram */
.telegram-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.telegram-floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #0088cc;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.telegram-floating-btn a:hover {
    background: #006699;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}

/* Telegram кнопка в хедере */
.telegram-header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.telegram-header-btn:hover {
    background: linear-gradient(135deg, #006699 0%, #004d73 100%);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

/* Telegram кнопка внизу футера */
.telegram-float {
    text-align: center;
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #334155;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
    color: white;
}

/* Адаптивность */
@media (max-width: 768px) {
    .telegram-floating-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .telegram-floating-btn a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .telegram-header-btn span {
        display: none;
    }
    
    .telegram-header-btn {
        padding: 10px;
    }
    /* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.industry-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.industry-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    min-height: 40px;
}

.btn-view-sample {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-view-sample:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.modal-close:hover {
    background: #dc2626;
    transform: rotate(90deg);
}

.modal-actions {
    margin-top: 20px;
    text-align: center;
}
}
}
































