:root {
    /* Color Palette */
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-border: #E2E8F0;
    --gray-muted: #64748B;
    --text-dark: #1E293B;
    --accent-green: #10B981;
    --accent-hover: #059669;
    --accent-light: #D1FAE5;
    --danger-red: #EF4444;

    /* Utilities */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 24px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
}
.btn-primary {
    background-color: var(--accent-green);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}
.btn-primary:hover { background-color: var(--accent-hover); }
.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--gray-border);
}
.btn-outline:hover { background-color: var(--gray-light); }

/* Typography */
h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px; }
h2 { font-size: 2.5rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 16px; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
p { font-size: 1.125rem; color: var(--gray-muted); margin-bottom: 24px; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-border);
    z-index: 100;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.logo { font-size: 24px; font-weight: 800; color: var(--text-dark); text-decoration: none; letter-spacing: -1px; }
.logo span { color: var(--accent-green); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--gray-muted); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-dark); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-actions .sign-in { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 15px; }

/* Hero Section */
.hero { padding: 160px 0 100px; background-color: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.trust-badges { display: flex; gap: 16px; margin-top: 32px; }
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; background: var(--gray-light);
    border: 1px solid var(--gray-border); border-radius: 100px;
    font-size: 13px; font-weight: 500; color: var(--text-dark);
}
.badge svg { color: var(--accent-green); width: 16px; height: 16px; }

/* macOS Safari Mockup */
.browser-mockup {
    background: var(--white); border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden;
}
.browser-header {
    background: var(--gray-light); border-bottom: 1px solid var(--gray-border);
    padding: 12px 16px; display: flex; gap: 8px; align-items: center;
}
.dots {
    width: 12px; height: 12px; border-radius: 50%; background: #EF4444;
    box-shadow: 20px 0 0 #F59E0B, 40px 0 0 var(--accent-green); margin-right: 40px;
}
.url-bar { background: var(--white); border: 1px solid var(--gray-border); border-radius: 6px; height: 24px; flex: 1; max-width: 60%; margin: 0 auto; }
.browser-body { display: flex; height: 350px; background: #FAFAFA; }
.sidebar-mock { width: 60px; border-right: 1px solid var(--gray-border); background: var(--white); padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.skeleton-nav { height: 12px; width: 100%; border-radius: 4px; background: var(--gray-light); }
.skeleton-nav.active { background: var(--accent-light); }
.main-mock { flex: 1; padding: 24px; }
.chart-mock { height: 160px; background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-md); position: relative; margin-top: 24px; overflow: hidden;}
.chart-line { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, var(--accent-light) 0%, transparent 100%); border-top: 2px solid var(--accent-green); }

/* Features - Log Table */
.section { padding: 100px 0; }
.bg-gray { background-color: var(--gray-light); }
.text-center { text-align: center; }
.section-header { max-width: 700px; margin: 0 auto 56px; }

.table-card {
    background: var(--white); border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden;
}
.styled-table { width: 100%; border-collapse: collapse; text-align: left; }
.styled-table th { background: var(--gray-light); padding: 16px 24px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-muted); border-bottom: 1px solid var(--gray-border); }
.styled-table td { padding: 16px 24px; border-bottom: 1px solid var(--gray-border); font-size: 15px; }
.styled-table tr:last-child td { border-bottom: none; }
.status-blocked { display: inline-flex; align-items: center; padding: 4px 10px; background: #FEE2E2; color: var(--danger-red); border-radius: 100px; font-size: 13px; font-weight: 600; }
.status-active { display: inline-flex; align-items: center; padding: 4px 10px; background: var(--accent-light); color: var(--accent-hover); border-radius: 100px; font-size: 13px; font-weight: 600; }
.text-danger { color: var(--danger-red); font-weight: 500;}

/* Split Sections (Z-Pattern) */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-text .check-list { list-style: none; margin-top: 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 16px; color: var(--text-dark); }
.check-list svg { width: 24px; height: 24px; color: var(--accent-green); flex-shrink: 0; }

/* UI Toggles Mockup */
.toggles-card {
    background: var(--white); border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 32px;
}
.toggle-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--gray-border); }
.toggle-row:last-child { border-bottom: none; padding-bottom: 0; }
.toggle-row:first-child { padding-top: 0; }
.toggle-info h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.toggle-info p { font-size: 13px; color: var(--gray-muted); margin: 0; }

/* Switch */
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--gray-muted); transition: .3s; border-radius: 24px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .3s; border-radius: 50%; }
input:checked + .slider { background-color: var(--accent-green); }
input:checked + .slider:before { transform: translateX(20px); }

/* iPhone Mockup */
.iphone-mockup {
    width: 280px; height: 560px; border: 12px solid var(--gray-border);
    border-radius: 40px; background: var(--gray-light); margin: 0 auto;
    position: relative; box-shadow: var(--shadow-xl); overflow: hidden;
}
.iphone-notch {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 120px; height: 25px; background: var(--gray-border);
    border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; z-index: 10;
}
.iphone-screen { padding: 40px 16px 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-header { text-align: center; font-size: 14px; font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid #E2E8F0; margin-bottom: 12px; }
.chat-bubble { padding: 12px 16px; border-radius: 16px; font-size: 13px; max-width: 85%; }
.chat-left { background: #E2E8F0; align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-right { background: var(--accent-light); border: 1px solid var(--accent-green); align-self: flex-end; border-bottom-right-radius: 4px; }
.bot-alert { color: var(--danger-red); font-weight: 600; display: block; margin-bottom: 4px; }

/* Comparison Table */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 40px; }
.compare-table th { padding: 24px; font-size: 18px; text-align: center; border-bottom: 2px solid var(--gray-border); }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 20px 24px; text-align: center; border-bottom: 1px solid var(--gray-border); font-size: 15px; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text-dark); }
.col-yootap { background-color: var(--accent-light); border-radius: var(--radius-md); }
.col-yootap-head { background-color: var(--accent-light); border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); color: var(--accent-hover); }
.col-yootap-foot { background-color: var(--accent-light); border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }
.icon-check { color: var(--accent-green); width: 24px; height: 24px; margin: 0 auto; display: block; }
.icon-x { color: var(--gray-muted); width: 20px; height: 20px; margin: 0 auto; display: block; opacity: 0.5; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
.pricing-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 40px; text-align: left; position: relative; box-shadow: var(--shadow-md); }
.pricing-card.popular { border: 2px solid var(--accent-green); box-shadow: var(--shadow-xl); transform: scale(1.02); }
.popular-badge { position: absolute; top: -12px; right: 24px; background: var(--accent-green); color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; }
.price-title { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.price-amount { font-size: 48px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; display: flex; align-items: baseline; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--gray-muted); margin-left: 4px; }
.pricing-features { list-style: none; margin: 24px 0 32px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 15px; }
.pricing-features svg { width: 20px; height: 20px; color: var(--accent-green); }

/* Final CTA */
.cta-block { background: var(--text-dark); border-radius: var(--radius-xl); padding: 80px 40px; text-align: center; color: var(--white); margin: 60px 0; }
.cta-block h2 { color: var(--white); }
.cta-block p { color: #94A3B8; margin-bottom: 32px; }

/* Footer */
.footer { border-top: 1px solid var(--gray-border); padding: 40px 0; text-align: center; color: var(--gray-muted); font-size: 14px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }
.footer-links a { color: var(--gray-muted); text-decoration: none; }
.footer-links a:hover { color: var(--text-dark); }

/* Responsive */
@media (max-width: 900px) {
    h1 { font-size: 2.5rem; }
    .hero-grid, .split-grid, .pricing-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-grid .trust-badges { justify-content: center; }
    .split-text .check-list li { justify-content: center; text-align: left; }
    .split-text.left { order: -1; }
    .nav-links { display: none; }
    .table-card { overflow-x: auto; }
    .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* Новая секция сравнения (видя только половину картины) */
.half-picture-section {
    position: relative;
    background-color: #FAFAFA;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 80px 0 100px;
}
.half-picture-section h2 {
    max-width: 900px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
}
.half-picture-section .accent-green {
    color: var(--accent-green);
}
.half-picture-section p.descr {
    max-width: 720px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-muted);
}
.half-picture-section .summary-block {
    max-width: 780px;
    margin: 40px auto 0;
    background: var(--white);
    border-radius: 16px;
    padding: 22px 32px;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
}
.half-picture-section .summary-block .brand {
    font-weight: 600;
    color: var(--accent-green);
}

/* Сравнительная таблица в стиле Grid */
.grid-compare-wrapper {
    max-width: 860px;
    margin: 60px auto 0;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 28px;
    padding: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.compare-grid-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: stretch;
}
.compare-grid-row.header-row {
    align-items: end;
}
.compare-grid-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    text-align: center;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
}
.compare-grid-cell.feature-name {
    align-items: flex-start;
    text-align: left;
    padding: 17px 22px;
    font-size: 0.96875rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--text-dark);
}
.compare-grid-cell.yootap-col {
    background: rgba(16, 185, 129, 0.05);
}
.compare-grid-row.header-row .compare-grid-cell {
    border-top: none;
    padding-bottom: 16px;
    padding-top: 18px;
}
.compare-grid-row.header-row .compare-grid-cell.yootap-col {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.compare-grid-cell .logo-container {
    display: flex;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}
.compare-grid-cell .logo-container img {
    height: 26px;
}
.compare-grid-cell .logo-container i {
    font-size: 26px;
    color: var(--gray-muted);
}
.compare-grid-cell .logo-container i.yootap-logo {
    color: var(--accent-green);
}
.compare-grid-cell .col-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #7A8194;
}
.compare-grid-cell.yootap-col .col-title {
    color: var(--accent-green);
    font-weight: 700;
}
.compare-grid-cell .badge-icon {
    display: flex;
    height: 28px;
    width: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}
.compare-grid-cell .badge-icon.success {
    background: var(--accent-green);
}
.compare-grid-cell .badge-icon.danger {
    background: var(--danger-red);
}
.compare-grid-cell .badge-icon svg {
    width: 15px;
    height: 15px;
}
.compare-grid-cell .cell-desc {
    font-size: 0.78125rem;
    line-height: 1.3;
    color: #7A8194;
    font-weight: 400;
    margin-top: 7px;
    max-width: 140px;
}
.compare-grid-cell.yootap-col .cell-desc {
    color: var(--text-dark);
    font-weight: 500;
    max-width: 150px;
}

@media (max-width: 768px) {
    .half-picture-section h2 {
        font-size: 1.75rem;
    }
    .compare-grid-row {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
    .compare-grid-cell.feature-name {
        padding: 12px;
        font-size: 0.875rem;
    }
}

/* Bento Grid Секция */
.bento-section {
    padding: 80px 0;
    background-color: var(--white);
}
.bento-section h2 {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
}
.bento-section h2 .accent-green {
    color: var(--accent-green);
}
.bento-section p.section-desc {
    max-width: 640px;
    margin: 16px auto 0;
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-muted);
}
.bento-container {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.bento-row {
    display: grid;
    gap: 18px;
}
.bento-row.row-3-2 {
    grid-template-columns: 3fr 2fr;
    height: 340px;
}
.bento-row.row-2-3 {
    grid-template-columns: 2fr 3fr;
    height: 340px;
}
.bento-row.row-1-1-1 {
    grid-template-columns: 1fr 1fr 1fr;
    height: 290px;
}

/* Карточка Bento */
.bento-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.bento-card-header {
    flex-shrink: 0;
    padding: 24px 24px 12px;
}
.bento-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 0;
}
.bento-card-header p {
    margin-top: 9px;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: #5A6072;
    margin-bottom: 0;
}
.bento-tags {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bento-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #ECECEC;
    background: var(--white);
    padding: 7px 13px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-dark);
}
.bento-card-visual {
    margin: 0 18px 18px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #ECEEF1;
    background: var(--white);
    padding: 7px;
    aspect-ratio: 39/20;
}
.bento-row.row-3-2 .bento-card-visual,
.bento-row.row-2-3 .bento-card-visual {
    aspect-ratio: auto;
    min-height: 0;
    flex: 1;
}
.bento-card-visual img {
    height: 100%;
    width: 100%;
    border-radius: 11px;
    object-fit: cover;
    object-position: top;
}

/* Иллюстрация для коннекторов (для Bento 6) */
.bento-illustration {
    height: 100%;
    width: 100%;
    border-radius: 11px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.bento-illustration .icon-node {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
    border: 1px solid var(--gray-border);
}
.bento-illustration .icon-node.tilda { color: #FF2727; font-weight: 800; }
.bento-illustration .icon-node.amocrm { color: #1C82FF; }
.bento-illustration .icon-node.yandex { color: #FF0000; }
.bento-illustration .arrow-line {
    position: absolute;
    height: 2px;
    background: dashed var(--gray-muted);
    width: 60%;
    border-top: 2px dashed rgba(100, 116, 139, 0.4);
    z-index: 1;
}

@media (max-width: 900px) {
    .bento-row.row-3-2,
    .bento-row.row-2-3,
    .bento-row.row-1-1-1 {
        grid-template-columns: 1fr;
        height: auto;
    }
    .bento-card-visual {
        aspect-ratio: 39/20;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none; /* Управляется через JS */
}
.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-container span {
    font-size: 13px;
    line-height: 1.5;
}
.cookie-container span a {
    text-decoration: underline;
}
.cookie-container span a:hover {
    color: var(--accent-hover);
}
@media (max-width: 600px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Новые классы для замены встроенных стилей */
.hero-cta {
    padding: 14px 28px;
    font-size: 16px;
}
.hero-screenshot {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-border);
}
.rules-screenshot {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-border);
}
.bento-illustration.stoploss-illustration {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
}
.stoploss-icon-container {
    font-size: 40px;
    color: var(--danger-red);
    text-align: center;
}
.stoploss-badge-title {
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
    color: var(--text-dark);
}
.cta-btn {
    padding: 16px 32px;
    font-size: 16px;
}
.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-requisites {
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray-muted);
}
.cookie-link {
    color: var(--accent-green);
}
.cookie-btn {
    padding: 6px 16px;
    font-size: 13px;
    margin-left: 10px;
}

.yandex-colored {
    color: var(--accent-green);
    font-weight: 700;
}

/* Градиентные промо-блоки */
.promo-system-section {
    padding: 80px 0;
    background-color: var(--white);
}
.promo-system-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, #0F172A 0%, #064E3B 100%);
    color: var(--white);
    padding: 80px 100px;
    margin-bottom: 40px;
}
.promo-system-card.bottom-card {
    background: linear-gradient(135deg, #064E3B 0%, #1E1B4B 100%);
    margin-bottom: 0;
}
.promo-system-content {
    max-width: 48%; /* Чтобы текст занимал меньше половины и не перекрывался */
    position: relative;
    z-index: 10;
}
.promo-system-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
}
.promo-system-content p.subtitle {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}
.promo-system-content p.desc {
    font-size: 1.125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}
.promo-system-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.promo-system-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.0625rem;
}
.promo-system-list li .check-icon {
    display: flex;
    height: 22px;
    width: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-green);
    color: var(--white);
    flex-shrink: 0;
    font-size: 11px;
    margin-top: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.promo-system-visual {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    pointer-events: none;
    z-index: 5;
}
.promo-system-visual .screenshot-main {
    position: absolute;
    top: 15%; /* Приподнимаем изображение выше */
    left: 5%;
    width: 90%;
    border-radius: 16px; /* Закругляем углы со всех сторон */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.promo-system-visual .widget-card {
    position: absolute;
    left: -5%;
    top: 20%;
    width: 29%;
    border-radius: 20px;
    transform: rotate(-10deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 6;
}
.promo-system-visual .glow-blur {
    position: absolute;
    left: 50%;
    top: 25%;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    background: var(--accent-green);
    filter: blur(100px);
    opacity: 0.4;
}

/* Как это выглядит внутри */
.how-it-works-section {
    padding: 80px 0;
    background-color: #FAFAFA;
    position: relative;
    overflow: hidden;
}
.how-it-works-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
}
.how-it-works-section p.section-desc {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-muted);
    margin-top: 16px;
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--text-dark);
}

/* Шаги настройки и Целевая аудитория */
.steps-section {
    padding: 80px 0;
    background-color: var(--white);
}
.steps-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
}
.steps-section p.section-desc {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-muted);
    margin-top: 16px;
}
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    margin-top: 60px;
    align-items: center;
}
.step-card {
    text-align: center;
}
.step-visual-box {
    position: relative;
    height: 220px;
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-visual-box .screenshot-mini {
    width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.step-visual-box .screenshot-mini.rotate-left {
    transform: rotate(-3deg);
}
.step-visual-box .screenshot-mini.rotate-right {
    transform: rotate(5deg);
}
.step-visual-box .step-float-badge {
    position: absolute;
    bottom: 5px;
    left: 45%;
    width: 130px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: rotate(5deg);
}
.step-visual-box .step-icon-badge {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 90px;
}
.step-number {
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-green);
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 auto 16px;
}
.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}
.step-card p {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--gray-muted);
    margin-top: 8px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}
.step-arrow svg {
    width: 80px;
    color: #E2E8F0;
}

/* Кому подходит */
.audience-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-top: 100px;
}
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}
.audience-card {
    text-align: center;
}
.audience-icon {
    height: 215px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.audience-icon img {
    height: 100%;
    width: 100%;
    object-contain: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}
.audience-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    opacity: 0.3;
    display: block;
    margin-bottom: 8px;
}
.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}
.audience-card p {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--gray-muted);
    margin-top: 8px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Секция */
.faq-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}
.faq-section h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
}
.faq-container {
    max-width: 800px;
    margin: 48px auto 0;
}
.faq-item {
    margin-bottom: 12px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    overflow: hidden;
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary .faq-title-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.faq-item summary .faq-num {
    color: var(--gray-muted);
    font-size: 1rem;
}
.faq-item summary svg {
    transition: transform 0.2s ease;
    color: var(--gray-muted);
}
.faq-item[open] summary svg {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 32px 24px 64px;
    font-size: 0.96875rem;
    line-height: 1.6;
    color: #4A5568;
}

/* CTA внизу в светлом тоне сайта */
.cta-bottom-wrapper {
    position: relative;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
    overflow: hidden;
    padding: 100px 0;
    color: var(--text-dark);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}
.cta-bottom-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}
.cta-bottom-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.cta-bottom-content p {
    font-size: 1.25rem;
    color: var(--gray-muted);
    margin-bottom: 32px;
}
.cta-bottom-content .sub-info {
    font-size: 0.9375rem;
    color: var(--gray-muted);
    margin-top: 16px;
}

/* Новый колоночный футер */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-border);
    padding-bottom: 40px;
}
.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: var(--gray-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--accent-green);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-muted);
    font-size: 13px;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}
.float-animated {
    animation: float-slow 6s ease-in-out infinite;
}

@media (max-width: 900px) {
    .promo-system-card {
        padding: 40px 24px;
    }
    .promo-system-card h2 {
        font-size: 1.75rem;
    }
    .promo-system-content {
        max-width: 100%;
    }
    .promo-system-visual {
        display: none;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
        margin: 10px 0;
    }
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cta-bottom-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Детальная сравнительная таблица */
.detailed-compare-title {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 12px;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
}
.detailed-compare-subtitle {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--gray-muted);
    line-height: 1.5;
}
.detailed-compare-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 40px auto 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-border);
    background: var(--white);
}
.detailed-compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
}
.detailed-compare-table th {
    background: var(--gray-light);
    color: var(--text-dark);
    font-weight: 700;
    padding: 18px 24px;
    font-size: 14px;
    border-bottom: 2px solid var(--gray-border);
}
.detailed-compare-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-border);
    color: var(--text-dark);
    vertical-align: top;
}
.detailed-compare-table tr:last-child td {
    border-bottom: none;
}
.detailed-compare-table tr:hover {
    background-color: rgba(248, 249, 250, 0.5);
}
.detailed-compare-table td.category-name {
    font-weight: 700;
    color: var(--text-dark);
    width: 20%;
}
.detailed-compare-table td.features-desc {
    color: var(--gray-muted);
    font-size: 13px;
    width: 15%;
}
.detailed-compare-table td.yootap-solution {
    background: rgba(16, 185, 129, 0.04);
    border-left: 2px solid var(--accent-green);
    width: 30%;
}
.detailed-compare-table td.yootap-solution strong {
    color: var(--accent-hover);
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

/* Адаптивность для мобильных */
@media (max-width: 992px) {
    .detailed-compare-table-wrapper {
        border: none;
        box-shadow: none;
        background: transparent;
    }
    .detailed-compare-table,
    .detailed-compare-table thead,
    .detailed-compare-table tbody,
    .detailed-compare-table th,
    .detailed-compare-table td,
    .detailed-compare-table tr {
        display: block;
    }
    .detailed-compare-table thead {
        display: none; /* скрываем заголовки на мобильных */
    }
    .detailed-compare-table tr {
        background: var(--white);
        border: 1px solid var(--gray-border);
        border-radius: var(--radius-lg);
        margin-bottom: 24px;
        box-shadow: var(--shadow-sm);
        padding: 16px;
        overflow: hidden;
    }
    .detailed-compare-table tr:hover {
        background-color: var(--white);
    }
    .detailed-compare-table td {
        padding: 8px 0;
        border-bottom: 1px dashed rgba(0,0,0,0.05);
        width: 100% !important;
        position: relative;
        padding-left: 45%;
        text-align: right;
    }
    .detailed-compare-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        top: 8px;
        width: 40%;
        padding-right: 10px;
        font-weight: 700;
        text-align: left;
        color: var(--gray-muted);
        font-size: 12px;
        text-transform: uppercase;
    }
    .detailed-compare-table td:last-child {
        border-bottom: none;
    }
    .detailed-compare-table td.category-name {
        font-size: 16px;
        padding-left: 0;
        text-align: left;
        border-bottom: 2px solid var(--gray-border);
        padding-bottom: 12px;
        margin-bottom: 8px;
    }
    .detailed-compare-table td.category-name::before {
        display: none;
    }
    .detailed-compare-table td.features-desc {
        font-size: 13px;
        text-align: left;
        padding-left: 0;
    }
    .detailed-compare-table td.features-desc::before {
        display: none;
    }
    .detailed-compare-table td.yootap-solution {
        background: rgba(16, 185, 129, 0.05);
        border-left: none;
        border-top: 2px solid var(--accent-green);
        text-align: left;
        padding: 12px;
        margin-top: 12px;
        border-radius: var(--radius-md);
        padding-left: 12px;
    }
    .detailed-compare-table td.yootap-solution::before {
        display: none;
    }

    .detailed-compare-title {
        font-size: 1.75rem;
        margin-top: 48px;
    }
}




