:root {
    --primary: #FF6600;
    --primary-dark: #cc5200;
    --secondary: #523292;
    --purple-dark: #3a226b;
    --pink: #BB4C66;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gradient-main: linear-gradient(135deg, #523292 0%, #BB4C66 100%);
    --gradient-btn: linear-gradient(90deg, #FF6600 0%, #FF8533 100%);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 50px rgba(0,0,0,0.12);
    --radius: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-btn);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Components --- */
.btn-primary-custom {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    color: white;
}

.btn-outline-primary-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: white;
}

/* --- Navbar --- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.logo-icon {
    width: 45px;
    height: auto;
}

.logo-info {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-weight: 800;
    font-size: 24px;
    color: var(--dark);
}

.logo-dot {
    color: var(--primary);
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}

.nav-phone {
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-size: 18px;
}

/* --- Hero Section --- */
.hero-section {
    background: var(--dark);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(82, 50, 146, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(187, 76, 102, 0.2) 0%, transparent 40%);
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
    color: #ffdbb5;
}

.hero-title {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-offer {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
    padding: 14px 24px;
    background: rgba(255,102,0,0.15);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.hero-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.hero-benefits i {
    color: var(--primary);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Visual Abstract */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--secondary), var(--pink));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
    opacity: 0.6;
    filter: blur(40px);
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 2;
}

.stat-1 {
    top: 50px;
    right: 20px;
    animation: float 6s ease-in-out infinite;
}

.stat-2 {
    bottom: 80px;
    left: 20px;
    animation: float 6s ease-in-out infinite 2s;
}

.stat-card i {
    font-size: 24px;
    color: var(--secondary);
    background: rgba(82, 50, 146, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.stat-card strong {
    display: block;
    font-size: 20px;
    line-height: 1;
}

.stat-card span {
    font-size: 12px;
    color: var(--gray);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- Sections Common --- */
section {
    padding: 100px 0;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

.badge-custom {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

/* --- SEO Blocks --- */
.section-seo {
    background: #fff;
    padding: 80px 0;
}

.section-seo.seo-dark {
    background: #f8f9fa;
}

.seo-block h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--dark);
}

.seo-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.seo-block p:last-child {
    margin-bottom: 0;
}

.seo-block strong {
    color: var(--dark);
}

/* Highlight box */
.seo-highlight {
    background: linear-gradient(135deg, rgba(82,50,146,0.06), rgba(255,102,0,0.06));
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 25px 30px;
    margin: 30px 0;
}

.seo-highlight p {
    margin: 0;
    font-weight: 500;
    color: var(--dark);
}

/* Roadmap */
.roadmap {
    position: relative;
    padding: 0 0 0 60px;
}

.roadmap-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 3px;
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    margin-bottom: 50px;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

/* Dot on the line */
.roadmap-dot {
    position: absolute;
    left: -60px;
    top: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.roadmap-dot span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: white;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.35);
    position: relative;
}

.roadmap-dot.final span {
    background: var(--gradient-main);
    box-shadow: 0 4px 20px rgba(82, 50, 146, 0.35);
}

/* Arrow between steps */
.roadmap-arrow {
    position: absolute;
    left: -60px;
    top: 60px;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.roadmap-arrow i {
    font-size: 20px;
    color: var(--primary);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(5px); opacity: 1; }
}

/* Card */
.roadmap-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px 30px 30px 75px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.roadmap-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.roadmap-icon {
    position: absolute;
    left: 20px;
    top: 28px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(82, 50, 146, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-icon i {
    font-size: 20px;
    color: var(--secondary);
}

.roadmap-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.roadmap-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .roadmap { padding-left: 45px; }
    .roadmap-line { left: 22px; }
    .roadmap-dot { left: -45px; width: 45px; height: 45px; }
    .roadmap-dot span { width: 38px; height: 38px; font-size: 14px; }
    .roadmap-arrow { left: -45px; width: 45px; top: 45px; height: 30px; }
    .roadmap-arrow i { font-size: 16px; }
    .roadmap-card { padding: 20px 20px 20px 20px; }
    .roadmap-icon { position: static; margin-bottom: 12px; }
    .roadmap-item { margin-bottom: 35px; }
}

/* Comparison */
.seo-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 35px 0;
}

.seo-comp-col {
    padding: 30px;
    border-radius: 16px;
}

.seo-comp-col.bad {
    background: rgba(187, 76, 102, 0.06);
    border: 1px solid rgba(187, 76, 102, 0.15);
}

.seo-comp-col.good {
    background: rgba(22, 163, 74, 0.06);
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.seo-comp-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-comp-col.bad h4 { color: var(--pink); }
.seo-comp-col.good h4 { color: #16a34a; }

.seo-comp-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-comp-col ul li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.seo-comp-col.bad ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: 700;
    font-size: 12px;
}

.seo-comp-col.good ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

@media (max-width: 768px) {
    .seo-block h2 { font-size: 24px; }
    .seo-block p { font-size: 16px; }
    .seo-comparison { grid-template-columns: 1fr; }
    .seo-step { flex-direction: column; gap: 10px; }
    .step-num { font-size: 32px; min-width: auto; }
}

/* --- Cases --- */
.section-cases {
    background: #fff;
}

.case-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #eee;
    transition: box-shadow 0.3s;
}

.case-card:last-child { margin-bottom: 0; }

.case-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

/* Case Info */
.case-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(82,50,146,0.08);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.case-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.case-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.case-metrics {
    display: flex;
    align-items: center;
    gap: 15px;
}

.case-metric-label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.case-metric-val {
    font-size: 22px;
    font-weight: 700;
}

.case-metric-val.old {
    color: var(--pink);
    text-decoration: line-through;
    opacity: 0.7;
}

.case-metric-val.new {
    color: #16a34a;
}

.case-metric-arrow i {
    font-size: 20px;
    color: var(--primary);
}

/* Case Dashboard */
.case-dashboard {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.case-dash-header {
    background: #f5f5f7;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #eee;
}

.case-dash-title {
    margin-left: 8px;
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

.case-dash-kpis {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: #f0f0f0;
    border-bottom: 1px solid #eee;
}

.case-kpi {
    background: #fff;
    padding: 14px 12px;
    text-align: center;
}

.case-kpi.highlight {
    background: rgba(82,50,146,0.03);
}

.case-kpi small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.case-kpi strong {
    font-size: 18px;
    color: var(--dark);
}

.case-kpi.highlight strong {
    color: var(--secondary);
}

/* Case Chart */
.case-dash-chart {
    padding: 15px 18px 5px;
}

.case-svg {
    width: 100%;
    height: 100px;
    display: block;
}

.case-line {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.case-line.green { stroke: #16a34a; }
.case-line.purple { stroke: var(--secondary); }
.case-line.orange { stroke: var(--primary); }

.case-dot { opacity: 0; }
.case-dot.green { fill: #16a34a; }
.case-dot.purple { fill: var(--secondary); }
.case-dot.orange { fill: var(--primary); }

.case-chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 6px 0 0;
}

.case-chart-labels span {
    font-size: 10px;
    color: #bbb;
}

/* Case Bars */
.case-dash-bars {
    padding: 12px 18px 16px;
    border-top: 1px solid #f0f0f0;
}

.case-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.case-bar:last-child { margin-bottom: 0; }

.case-bar > span:first-child {
    font-size: 11px;
    color: #999;
    min-width: 55px;
    font-weight: 500;
}

.case-bar > span:last-child {
    font-size: 11px;
    font-weight: 700;
    min-width: 30px;
    text-align: right;
}

.case-bar-track {
    flex: 1;
    height: 6px;
    background: #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
}

.case-bar-fill {
    height: 100%;
    border-radius: 10px;
    width: 0;
}

/* Animate cases when visible */
.case-card.in-view .case-line {
    animation: drawLine 2s 0.3s ease-out forwards;
}

.case-card.in-view .case-dot {
    animation: popIn 0.3s ease forwards;
}

.case-card.in-view .case-dot:nth-child(4) { animation-delay: 0.8s; }
.case-card.in-view .case-dot:nth-child(5) { animation-delay: 1.1s; }
.case-card.in-view .case-dot:nth-child(6) { animation-delay: 1.4s; }
.case-card.in-view .case-dot:nth-child(7) { animation-delay: 1.7s; }

.case-card.in-view .case-dot.pulse {
    animation: popIn 0.3s 1.7s ease forwards, pulseDot 2s 2.2s infinite;
}

.case-card.in-view .case-bar-fill {
    animation: growBar 1.5s 0.5s ease-out forwards;
}

@media (max-width: 991px) {
    .case-card { padding: 25px; }
    .case-info { margin-bottom: 30px; }
    .case-info h3 { font-size: 20px; }
    .case-metrics { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .case-dash-kpis { grid-template-columns: repeat(2,1fr); }
}

/* --- Pain Points --- */
.section-pain {
    background: white;
}

.pain-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 40px 30px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    height: 100%;
}

.pain-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.bg-red-soft { background: rgba(187, 76, 102, 0.1); }
.text-red { color: var(--pink); }

.pain-card h3 { font-size: 20px; margin-bottom: 15px; }
.pain-card p { font-size: 15px; color: var(--gray); margin: 0; }

/* --- Solution --- */
.section-solution {
    background: #f8f9fa;
}

.benefits-list {
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item i {
    font-size: 32px;
    color: var(--secondary);
    flex-shrink: 0;
}

.benefit-item h4 { font-size: 18px; margin-bottom: 5px; }
.benefit-item p { font-size: 15px; color: var(--gray); margin: 0; }

.solution-visual {
    padding: 20px 0 20px 40px;
}

/* --- Dashboard Card --- */
.dashboard-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    overflow: hidden;
}

/* Chrome bar */
.dash-chrome {
    background: #f5f5f7;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid #eee;
}

.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.dash-title {
    margin-left: 10px;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

/* KPI Row */
.dash-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #f0f0f0;
    border-bottom: 1px solid #eee;
}

.dash-kpi {
    background: #fff;
    padding: 18px 15px;
    text-align: center;
}

.dash-kpi.highlight {
    background: linear-gradient(135deg, rgba(82,50,146,0.04), rgba(255,102,0,0.06));
}

.dash-kpi-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.dash-kpi-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.dash-kpi.highlight .dash-kpi-value {
    color: var(--secondary);
}

.dash-kpi-value.rub::after { content: ' ₽'; font-size: 14px; font-weight: 500; }

.dash-kpi-change {
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 20px;
}

.dash-kpi-change.up {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
}

.dash-kpi-change.down {
    color: var(--primary);
    background: rgba(255, 102, 0, 0.1);
}

.dash-kpi-change i { font-size: 16px; }

/* Chart */
.dash-chart {
    padding: 20px;
}

.dash-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dash-chart-header > span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.dash-chart-tabs {
    display: flex;
    gap: 0;
    background: #f3f3f3;
    border-radius: 8px;
    overflow: hidden;
}

.dash-chart-tabs span {
    font-size: 11px;
    padding: 5px 12px;
    cursor: pointer;
    color: #999;
    font-weight: 500;
}

.dash-chart-tabs span.active {
    background: var(--secondary);
    color: #fff;
    border-radius: 8px;
}

.dash-chart-area {
    position: relative;
}

.chart-svg {
    width: 100%;
    height: 140px;
    display: block;
}

.chart-grid {
    stroke: #f0f0f0;
    stroke-width: 1;
}

.chart-area {
    fill: url(#areaGrad);
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
}

.chart-line {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 2s 0.3s ease-out forwards;
}

.chart-dot {
    fill: var(--secondary);
    opacity: 0;
    animation: popIn 0.3s ease forwards;
}

.chart-dot:nth-child(5) { animation-delay: 0.8s; }
.chart-dot:nth-child(6) { animation-delay: 1.0s; }
.chart-dot:nth-child(7) { animation-delay: 1.2s; }
.chart-dot:nth-child(8) { animation-delay: 1.4s; }
.chart-dot:nth-child(9) { animation-delay: 1.6s; }
.chart-dot:nth-child(10) { animation-delay: 1.8s; }

.chart-dot.pulse {
    fill: var(--primary);
    animation: popIn 0.3s 1.8s ease forwards, pulseDot 2s 2.2s infinite;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes popIn {
    0% { opacity: 0; r: 0; }
    100% { opacity: 1; }
}

@keyframes pulseDot {
    0%, 100% { r: 5; opacity: 1; }
    50% { r: 8; opacity: 0.7; }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.chart-labels span {
    font-size: 11px;
    color: #bbb;
    font-weight: 500;
}

/* Bar Chart */
.dash-bars {
    padding: 15px 20px 20px;
    border-top: 1px solid #f0f0f0;
}

.dash-bar-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.dash-bar-group:last-child { margin-bottom: 0; }

.dash-bar-label {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    min-width: 65px;
}

.dash-bar-track {
    flex: 1;
    height: 8px;
    background: #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
}

.dash-bar-fill {
    height: 100%;
    border-radius: 10px;
    width: 0;
    animation: growBar 1.5s 0.8s ease-out forwards;
}

.dash-bar-fill.purple { background: var(--secondary); }
.dash-bar-fill.orange { background: var(--primary); }
.dash-bar-fill.pink   { background: var(--pink); }

@keyframes growBar {
    to { width: var(--bar-width); }
}

.dash-bar-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    min-width: 35px;
    text-align: right;
}

/* --- Niches --- */
.niche-card {
    background: white;
    border: 1px solid #eee;
    padding: 25px 10px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.niche-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.niche-card i {
    font-size: 32px;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

.niche-card span {
    font-weight: 600;
    font-size: 14px;
}

/* --- Price --- */
.section-price { background: #f8f9fa; }

.price-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.badge-featured {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
}

.price-header h3 { font-size: 24px; margin-bottom: 5px; }
.price-header p { color: var(--gray); font-size: 14px; }

.price-value { margin: 25px 0; }
.old-price { display: block; text-decoration: line-through; color: var(--gray); font-size: 16px; }
.current-price { font-size: 36px; font-weight: 700; color: var(--dark); line-height: 1; }

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    gap: 10px;
}

.price-features i { color: var(--primary); }

/* --- Instruments --- */
.section-instruments {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-instruments::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(82, 50, 146, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.section-instruments::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-instruments .section-header h2 {
    color: white;
}

.instrument-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    display: flex;
    gap: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.instrument-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.instrument-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.instrument-card:hover::before {
    opacity: 1;
}

.instrument-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    overflow: hidden;
}

.instrument-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.instrument-icon.yandex {
    background: linear-gradient(135deg, #fc0, #ff6600);
    color: white;
}

.instrument-icon.vk {
    background: linear-gradient(135deg, #0077ff, #0055cc);
    color: white;
}

.instrument-icon.maps {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
}

.instrument-icon.telegram {
    background: linear-gradient(135deg, #2aabee, #229ed9);
    color: white;
}

.instrument-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.instrument-body p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.6;
}

.instrument-body p:last-child {
    margin-bottom: 0;
}

.instrument-accent {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
}

/* --- Trust --- */
.section-trust {
    background: var(--dark);
    color: white;
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trust-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i { font-size: 24px; color: var(--primary); }

/* --- Director --- */
.section-director {
    background: #fff;
}

.director-block {
    background: #f8f9fa;
    border-radius: 30px;
    overflow: hidden;
    padding: 60px;
}

.director-photo-wrap {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 15px 40px rgba(82, 50, 146, 0.2);
    position: relative;
}

.director-photo-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.director-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.director-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.director-name {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
}

.director-role {
    color: var(--gray);
    font-size: 14px;
    font-weight: 400;
}

.director-content {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.director-content h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--dark);
}

.director-quote {
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
}

.director-quote > i {
    font-size: 60px;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
    background: var(--gradient-btn);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.director-quote p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    font-style: italic;
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

/* --- CTA --- */
.section-cta { padding-bottom: 100px; }

.cta-box {
    background: var(--gradient-main);
    border-radius: 30px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    color: var(--dark);
}

.cta-form small { display: block; margin-top: 10px; color: var(--gray); font-size: 11px; }

/* --- Footer --- */
.footer {
    background: var(--dark);
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

/* --- Dashboard Entry Animation --- */
.dashboard-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.dashboard-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navbar scroll --- */
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .hero-title { font-size: 30px; }
    .hero-offer { font-size: 20px; padding: 10px 16px; }
    .hero-section { padding: 130px 0 60px; text-align: center; }
    .hero-subtitle { margin: 0 auto 24px; font-size: 16px; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
    .price-card.featured { transform: none; margin: 20px 0; }
    .cta-box { padding: 40px 20px; text-align: center; }
    .cta-form { margin-top: 30px; }
    .hero-benefits { display: inline-block; text-align: left; margin-bottom: 24px; }
    .hero-benefits li { font-size: 14px; margin-bottom: 8px; }
    .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 16px; }

    /* Breadcrumbs: fix position on mobile (navbar ~56px + gap) */
    .breadcrumbs-hero {
        top: 76px;
    }
    .breadcrumbs-hero .breadcrumbs-inner {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 8px;
        gap: 4px;
        flex-wrap: wrap;
    }

    /* Sections compact */
    section { padding: 60px 0; }
    .section-header h2 { font-size: 26px; }
    .section-header p { font-size: 15px; }
    .section-seo { padding: 50px 0; }
    .section-reviews { padding: 50px 0; }

    /* Director */
    .director-block { padding: 30px 20px; border-radius: 20px; }
    .director-photo-wrap { width: 140px; height: 140px; }
    .director-content { padding: 20px 0 0; }
    .director-content h2 { font-size: 22px; text-align: center; }
    .director-quote > i { text-align: center; font-size: 40px; }
    .director-quote p { font-size: 15px; padding-left: 14px; }

    /* Navbar phone */
    .nav-phone { font-size: 15px; }
}

@media (max-width: 768px) {
    .trust-grid { grid-template-columns: 1fr; }
    .instrument-card { flex-direction: column; gap: 15px; padding: 20px; }

    /* Hero compact */
    .hero-section { padding: 126px 0 50px; }
    .hero-title { font-size: 26px; line-height: 1.25; margin-bottom: 12px; }
    .hero-offer { font-size: 17px; padding: 10px 14px; display: block; }
    .hero-subtitle { font-size: 15px; margin-bottom: 20px; }
    .hero-actions { gap: 10px; }
    .hero-actions .btn { padding: 10px 22px; font-size: 14px; }

    /* Sections tighter */
    section { padding: 50px 0; }
    .section-header h2 { font-size: 22px; margin-bottom: 12px; }
    .section-header p { font-size: 14px; }
    .section-seo { padding: 40px 0; }
    .seo-block h2 { font-size: 22px; margin-bottom: 20px; }
    .seo-block p { font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
    .seo-highlight { padding: 18px 20px; margin: 20px 0; }

    /* Cases compact */
    .case-card { padding: 20px; margin-bottom: 24px; border-radius: 16px; }
    .case-info h3 { font-size: 18px; }
    .case-desc { font-size: 14px; margin-bottom: 16px; }
    .case-metric-val { font-size: 18px; }

    /* Pain cards */
    .pain-card { padding: 25px 20px; }
    .pain-card h3 { font-size: 18px; }
    .icon-box { width: 50px; height: 50px; font-size: 24px; margin-bottom: 16px; }

    /* Price cards */
    .price-card { padding: 30px 20px; border-radius: 16px; }
    .price-header h3 { font-size: 20px; }
    .current-price { font-size: 30px; }
    .price-features li { font-size: 14px; margin-bottom: 8px; }

    /* Instruments */
    .instrument-body h3 { font-size: 18px; }
    .instrument-body p { font-size: 14px; }
    .instrument-icon { width: 50px; height: 50px; min-width: 50px; border-radius: 12px; }

    /* Reviews compact */
    .section-reviews { padding: 40px 0; }
    .review-card { padding: 20px; }
    .review-text { font-size: 13px; }
    .review-avatar { width: 44px; height: 44px; }

    /* Niches */
    .niche-card { padding: 16px 8px; }
    .niche-card i { font-size: 24px; margin-bottom: 6px; }
    .niche-card span { font-size: 12px; }

    /* Trust */
    .trust-item { padding: 14px; gap: 10px; }
    .trust-item i { font-size: 20px; }
    .trust-item span { font-size: 14px; }

    /* Rating banner */
    .rating-banner { padding: 12px 0; }
    .rating-stars { font-size: 18px; }
    .rating-text { font-size: 13px; }

    /* CTA */
    .cta-box { padding: 30px 16px; border-radius: 20px; }
    .cta-box h2 { font-size: 22px; }
    .cta-box p { font-size: 14px; }

    /* Footer compact */
    .footer { padding: 36px 0; }
    .footer .logo-text { font-size: 20px; }
    .footer-links a { display: block; margin-bottom: 6px; }

    /* FAQ */
    .section-faq { padding: 50px 0; }
    .accordion-button { font-size: 15px; padding: 14px 16px; }
    .accordion-body { padding: 14px 16px; }
    .accordion-body p { font-size: 14px; line-height: 1.7; }
}

@media (max-width: 576px) {
    /* Smallest screens */
    .hero-section { padding: 122px 0 36px; }
    .hero-title { font-size: 22px; }
    .hero-offer { font-size: 15px; padding: 8px 12px; }
    .hero-badge { font-size: 11px; padding: 5px 12px; }
    .hero-benefits li { font-size: 13px; gap: 8px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
    .hero-actions .btn { width: 100%; text-align: center; }

    /* Breadcrumbs very small */
    .breadcrumbs-hero .breadcrumbs-inner { font-size: 11px; padding: 6px 10px; }

    /* Sections */
    section { padding: 40px 0; }
    .section-header h2 { font-size: 20px; }
    .section-seo { padding: 35px 0; }
    .seo-block h2 { font-size: 20px; }
    .seo-block p { font-size: 14px; }

    /* Dashboard KPI grids */
    .dash-kpi-row { grid-template-columns: repeat(2, 1fr); }
    .dash-kpi { padding: 12px 8px; }
    .dash-kpi-value { font-size: 18px; }
    .dash-kpi-label { font-size: 9px; }

    /* Cases */
    .case-card { padding: 16px; }
    .case-info h3 { font-size: 17px; }
    .case-metrics { gap: 8px; }
    .case-metric-val { font-size: 16px; }
    .case-kpi { padding: 10px 8px; }
    .case-kpi strong { font-size: 15px; }
    .case-kpi small { font-size: 9px; }

    /* Price */
    .current-price { font-size: 26px; }

    /* Director */
    .director-block { padding: 24px 16px; border-radius: 16px; }
    .director-photo-wrap { width: 120px; height: 120px; }
    .director-content h2 { font-size: 20px; margin-bottom: 16px; }
    .director-quote p { font-size: 14px; }

    /* CTA */
    .cta-box { padding: 24px 14px; border-radius: 16px; }
    .cta-box h2 { font-size: 20px; }

    /* Footer */
    .footer { padding: 28px 0; }

    /* Contacts */
    .contacts-hero { padding: 100px 0 24px; }
    .contacts-hero h1 { font-size: 26px; }
}

/* --- Reviews Section --- */
.section-reviews {
    padding: 80px 0;
    background: var(--light);
}
.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}
.review-author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}
.review-author span {
    font-size: 13px;
    color: var(--gray);
}
.review-stars {
    color: #FF9800;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}
.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
}

/* --- Footer Address --- */
.footer-address {
    font-style: normal;
    margin-bottom: 0;
}

/* --- Rating Banner --- */
.rating-banner {
    padding: 18px 0;
    background: linear-gradient(90deg, rgba(255,102,0,0.08) 0%, rgba(255,102,0,0.03) 100%);
    border-top: 1px solid rgba(255,102,0,0.12);
    border-bottom: 1px solid rgba(255,102,0,0.12);
}
.rating-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.rating-stars {
    display: flex;
    gap: 3px;
    font-size: 22px;
    color: #FF9800;
}
.rating-text {
    font-size: 16px;
    color: var(--dark);
}
.rating-text strong {
    font-weight: 700;
    color: var(--primary);
}
.rating-text span {
    font-weight: 600;
    color: var(--dark);
}

/* --- Floating Telegram Button --- */
.floating-tg {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2AABEE;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(42,171,238,0.45);
    transition: all 0.3s ease;
}

.floating-tg i {
    font-size: 22px;
}

.floating-tg:hover {
    background: #229ED9;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(42,171,238,0.55);
}

@media (max-width: 768px) {
    .floating-tg {
        bottom: 20px;
        right: 16px;
        padding: 12px 18px;
        font-size: 13px;
        gap: 8px;
    }
    .floating-tg i {
        font-size: 20px;
    }
}
@media (max-width: 576px) {
    .floating-tg span {
        display: none;
    }
    .floating-tg {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        bottom: 16px;
        right: 16px;
    }
    .floating-tg i {
        font-size: 24px;
    }
}

/* --- Contacts Page --- */
.contacts-hero {
    padding: 120px 0 40px;
    background: var(--light);
}
.contacts-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}
.contacts-subtitle {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 0;
}
.contacts-section {
    padding: 50px 0 60px;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.contact-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.contact-card address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
}
.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
}
.contact-link:hover {
    color: var(--primary-dark);
}
.contacts-messengers {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.messenger-btn.tg {
    background: #e8f4fd;
    color: #2AABEE;
}
.messenger-btn.tg:hover {
    background: #2AABEE;
    color: #fff;
}
.messenger-btn.wa {
    background: #e8f8e8;
    color: #25D366;
}
.messenger-btn.wa:hover {
    background: #25D366;
    color: #fff;
}
.office-photo-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.office-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: 100px 0 0;
    background: transparent;
}
.breadcrumbs-inner {
    background: var(--light);
    border-radius: 10px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
}
.breadcrumbs-inner a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumbs-inner a:hover {
    color: var(--primary);
}
.breadcrumbs-inner .bc-sep {
    color: #ccc;
    margin: 0 2px;
    font-size: 11px;
}
.breadcrumbs-inner .bc-current {
    color: var(--dark);
    font-weight: 600;
}

/* On dark hero — breadcrumbs overlay */
.hero-section + .breadcrumbs,
.hero-section .breadcrumbs {
    padding-top: 0;
}
.breadcrumbs-hero {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 5;
}
.breadcrumbs-hero .breadcrumbs-inner {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.7);
}
.breadcrumbs-hero .breadcrumbs-inner a {
    color: rgba(255,255,255,0.7);
}
.breadcrumbs-hero .breadcrumbs-inner a:hover {
    color: #fff;
}
.breadcrumbs-hero .breadcrumbs-inner .bc-sep {
    color: rgba(255,255,255,0.4);
}
.breadcrumbs-hero .breadcrumbs-inner .bc-current {
    color: #fff;
}

/* --- Mobile navbar improvements --- */
@media (max-width: 991px) {
    .navbar { padding: 8px 0; }
    .logo-icon { width: 36px; }
    .logo-text { font-size: 20px; }
    .logo-sub { font-size: 10px; }
    .navbar-collapse {
        background: #fff;
        border-radius: 16px;
        padding: 16px;
        margin-top: 10px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }
    .nav-link { margin: 4px 0; padding: 8px 12px !important; font-size: 15px; }
    .nav-phone { display: block; text-align: center; padding: 12px 0 4px; }
    .navbar .btn-primary-custom {
        display: block;
        text-align: center;
        margin-top: 8px;
    }
}

/* --- Mobile: smooth scrolling --- */
@media (max-width: 768px) {
    html { scroll-padding-top: 70px; }

    /* Comparison table on mobile */
    .seo-comp-col { padding: 20px; }
    .seo-comp-col h4 { font-size: 16px; }
    .seo-comp-col ul li { font-size: 14px; margin-bottom: 8px; }

    /* Benefit items mobile */
    .benefit-item { gap: 14px; margin-bottom: 20px; }
    .benefit-item i { font-size: 24px; }
    .benefit-item h4 { font-size: 16px; }
    .benefit-item p { font-size: 14px; }

    /* Solution visual */
    .solution-visual { padding: 20px 0 0; }

    /* Contacts page mobile */
    .contacts-section { padding: 30px 0 40px; }
    .contact-card { padding: 16px; gap: 12px; }
    .contact-card h3 { font-size: 14px; }
    .contact-card-icon { width: 40px; height: 40px; min-width: 40px; font-size: 18px; }
    .map-wrap { border-radius: 12px; }

    /* CTA section */
    .section-cta { padding-bottom: 50px; }
}

/* --- Mobile touch-friendly & SEO improvements --- */
@media (max-width: 991px) {
    /* Ensure tappable areas are at least 44px (Yandex recommendation) */
    .btn, .btn-primary-custom, .btn-outline-primary-custom,
    .nav-link, .dropdown-item, .social-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .social-link {
        width: 44px;
        height: 44px;
    }
    /* Prevent text overflow / horizontal scroll */
    .container {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}
