/* ===== MOBILE STYLES ===== */
/* Все стили для мобильных устройств от 360x780 до 419x915 */

/* Mobile Header */
@media (min-width: 360px) and (max-width: 419px) {
  #siteHeader { 
    display: none !important;
  }
  
  #siteHeaderMobile {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 8px 12px;
    min-height: 50px;
  }
}

/* Mobile Navigation */
@media (min-width: 360px) and (max-width: 419px) {
  /* Mobile navigation styles moved to header-mobile.css */
  
  /* Отключение анимаций батареек на мобильных */
  .battery-icon,
  .battery-mini,
  .battery-standard,
  .battery-gold {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: brightness(1) !important;
    box-shadow: none !important;
    transition: none !important;
  }
  
  .card:hover .battery-icon,
  .card:active .battery-icon,
  .card.tapped .battery-icon {
    animation: none !important;
    transform: none !important;
    filter: brightness(1) !important;
  }
}

/* iPhone SE, iPhone 12/13/14 (375px - 390px) */
@media (min-width: 375px) and (max-width: 390px) {
  .card .cta,
  .cards .cta,
  .uv-price-card .cta {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 180px !important;
    height: 45px !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2)) !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 11px !important;
  }
  
  .card .cta:hover,
  .cards .cta:hover,
  .uv-price-card .cta:hover {
    transform: translateX(-50%) !important;
  }
  
  .card .cta:active,
  .cards .cta:active,
  .uv-price-card .cta:active {
    transform: translateX(-50%) !important;
    opacity: 1 !important;
    font-size: 12px !important;
  }
}

/* Google Pixel 6, OnePlus 9 (391px - 415px) */
@media (min-width: 391px) and (max-width: 415px) {
  .card .cta,
  .cards .cta,
  .uv-price-card .cta {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 200px !important;
    height: 50px !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2)) !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 12px !important;
  }
  
  .card .cta:hover,
  .cards .cta:hover,
  .uv-price-card .cta:hover {
    transform: translateX(-50%) !important;
  }
  
  .card .cta:active,
  .cards .cta:active,
  .uv-price-card .cta:active {
    transform: translateX(-50%) !important;
    opacity: 1 !important;
    font-size: 12px !important;
  }
}

/* iPhone 12/13/14 Pro Max (416px - 430px) */
@media (min-width: 416px) and (max-width: 430px) {
  .card .cta,
  .cards .cta,
  .uv-price-card .cta {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 200px !important;
    height: 50px !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2)) !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 12px !important;
  }
  
  .card .cta:hover,
  .cards .cta:hover,
  .uv-price-card .cta:hover {
    transform: translateX(-50%) !important;
  }
  
  .card .cta:active,
  .cards .cta:active,
  .uv-price-card .cta:active {
    transform: translateX(-50%) !important;
    opacity: 1 !important;
    font-size: 12px !important;
  }
}

/* Mobile Hero Section - восстановленные оригинальные стили */
@media (min-width: 360px) and (max-width: 419px) {
  .uv-hero {
    padding: clamp(20px, 8vw, 40px) 0;
    margin-top: -1cm; /* Поднимаем секцию вверх, чтобы все поместилось в первом экране */
  }
  
  .uv-hero-inner {
    padding-inline: 16px;
  }
  
  .uv-hero-content {
    padding-left: 0;
    margin-left: 0;
    text-align: center !important;
    margin-top: 0 !important; /* Убираем лишний отступ, так как секция уже поднята */
  }
  
  .uv-hero-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem) !important;
    transform: none !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .uv-hero-description {
    transform: none !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 1rem;
  }
  
  .uv-hero-badge {
    transform: none !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .uv-hero-buttons {
    transform: none !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  .uv-hero-buttons .uv-audit-btn {
    margin-left: 0 !important;
  }
  
  .uv-hero-photo-container {
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
  }
  
  .uv-hero-photo {
    width: 100% !important;
    max-width: 300px !important; /* Уменьшаем размер фото */
    margin-top: 30px !important; /* Уменьшаем margin над фото */
    border-radius: 20px !important;
  }
  
  .uv-audit-btn {
    margin-top: -20px !important; /* Поднимаем кнопку "ХОЧУ АУДИТ" выше */
  }
  
  .uv-photo-background {
    height: 100% !important; /* Такой же размер как у фото */
    width: 100% !important;
    max-width: 300px !important; /* Такой же размер как у фото */
    opacity: 0.5 !important; /* Делаем градиент ярче на мобилке */
    background: radial-gradient(60% 60% at 65% 35%, rgba(124,58,237,0.6), rgba(167,139,250,0.4) 40%, transparent 70%) !important;
  }
  
  .uv-hero-right {
    justify-content: center;
  }
}

/* Mobile Tariffs Section */
@media (min-width: 360px) and (max-width: 419px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
    max-width: 100%;
  }
  
  .card {
    width: 100%;
    max-width: 300px;
    height: 380px;
    margin: 0 auto;
    padding: 12px;
  }
  
  .card-top {
    width: 100%;
    height: 100px;
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }
  
  .icon-frame {
    width: 70px;
    height: 100px;
  }
  
  .title-frame {
    width: 100%;
    height: 100px;
    padding: 8px 12px; 
  }
  
  .title-frame h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .title-frame p {
    font-size: 12px;
  }
  
  .card-bottom {
    width: 100%;
    height: 280px;
    padding: 15px 12px;
  }
  
  /* CTA styles moved to device-specific media queries above */
  
  .battery-icon {
    width: 24px;
    height: 45px;
  }
}

/* Mobile Advantages Section - размеры как на скриншоте (320x450) */
@media (min-width: 360px) and (max-width: 419px) {
  .uv-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 8px !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  
  .uv-grid:has(.uv-card:first-child) {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(6, auto) !important;
    gap: 8px !important;
  }
  
  .uv-grid .uv-card:first-child,
  .wp-block-group.uv-grid .wp-block-group.uv-card:first-child {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 120px !important;
    padding: 12px !important;
    margin: 0 auto !important;
  }
  
  .uv-grid .uv-card:nth-child(2),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(2) {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 120px !important;
    padding: 12px !important;
    margin: 0 auto !important;
  }
  
  .uv-grid .uv-card:nth-child(3),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(3) {
    grid-column: 1 !important;
    grid-row: 3 !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 140px !important;
    padding: 12px !important;
    margin: 0 auto !important;
  }
  
  .uv-grid .uv-card:nth-child(4),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(4) {
    grid-column: 1 !important;
    grid-row: 4 !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 120px !important;
    padding: 12px !important;
    margin: 0 auto !important;
  }
  
  .uv-grid .uv-card:nth-child(5),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(5) {
    grid-column: 1 !important;
    grid-row: 5 !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 120px !important;
    padding: 12px !important;
    margin: 0 auto !important;
  }
  
  .uv-grid .uv-card:nth-child(6),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(6) {
    grid-column: 1 !important;
    grid-row: 6 !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 140px !important;
    padding: 12px !important;
    margin: 0 auto !important;
  }
  
  /* Компактные размеры текста в блоках преимуществ */
  .uv-card h4 {
    font-size: clamp(14px, 3vw, 16px) !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
  }
  
  .uv-card p {
    font-size: clamp(12px, 2.5vw, 14px) !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
  }
  
  /* Адаптированные размеры для графиков и элементов с анимациями */
  .uv-card-chart,
  .uv-card-tasks,
  .uv-card-dashboard {
    height: 80px !important;
    overflow: visible !important;
  }
  
  .uv-growth-chart svg {
    height: 50px !important;
    width: 100% !important;
  }
  
  .uv-task-box {
    height: 24px !important;
    margin-bottom: 6px !important;
  }
  
  .uv-task-text {
    font-size: 11px !important;
  }
  
  .uv-metric-value {
    font-size: 13px !important;
  }
  
  .uv-metric-checkbox {
    width: 16px !important;
    height: 16px !important;
  }
  
  .uv-dashboard-chart svg {
    height: 60px !important;
  }
  
  /* Полное отключение всех анимаций на мобильных */
  .uv-growth-chart,
  .uv-growth-chart *,
  .uv-growth-chart svg,
  .uv-growth-chart svg *,
  .uv-growth-line,
  .uv-growth-dots,
  .uv-task-box,
  .uv-task-box *,
  .uv-task-check,
  .uv-task-check *,
  .uv-metric-value,
  .uv-metric-value *,
  .uv-metric-checkbox,
  .uv-metric-checkbox *,
  .uv-dashboard-chart,
  .uv-dashboard-chart *,
  .uv-dashboard-chart svg,
  .uv-dashboard-chart svg *,
  .uv-dashboard-chart .uv-chart-line,
  .uv-dashboard-container,
  .uv-dashboard-container *,
  .uv-dashboard-header,
  .uv-dashboard-header *,
  .uv-dashboard-metrics,
  .uv-dashboard-metrics *,
  .uv-metric,
  .uv-metric *,
  .uv-chart-svg,
  .uv-chart-svg *,
  .uv-chart-grid,
  .uv-chart-grid *,
  .uv-chart-axis,
  .uv-chart-axis *,
  .uv-chart-labels,
  .uv-chart-labels *,
  .uv-tasks-visual,
  .uv-tasks-visual *,
  .growth-bg,
  .growth-bg * {
    animation: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-fill-mode: none !important;
    animation-iteration-count: 0 !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Дополнительно отключаем stroke-dasharray анимации */
  .uv-growth-line {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }
  
  /* Отключаем opacity анимации */
  .uv-growth-dots {
    opacity: 1 !important;
    font-size: 12px !important;
  }
  
  /* Полностью скрываем проблемные элементы на мобильных */
  .uv-dashboard-container,
  .uv-growth-chart {
    display: none !important;
  }
  
  /* Добавляем картинку Chart.png для блока "Работа на результат" */
  .uv-card:first-child .uv-card-chart,
  .wp-block-group.uv-card:first-child .uv-card-chart {
    display: flex !important;
    background-image: url('assets/images/Chart.png') !important;
    background-size: 50% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
  }
  
  /* Добавляем картинку роста трафика для блока "Стабильный рост" */
  .uv-card-laptop {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M40 140 L80 120 L120 100 L160 60 L200 40" stroke="%233b82f6" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/><circle cx="40" cy="140" r="3" fill="%233b82f6"/><circle cx="80" cy="120" r="3" fill="%233b82f6"/><circle cx="120" cy="100" r="3" fill="%233b82f6"/><circle cx="160" cy="60" r="3" fill="%233b82f6"/><circle cx="200" cy="40" r="3" fill="%233b82f6"/><text x="100" y="180" text-anchor="middle" fill="%233b82f6" font-size="16" font-weight="bold">📈</text></svg>') !important;
    background-size: 80px 80px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
  }
}

/* Mobile Work Steps Section */
@media (min-width: 360px) and (max-width: 419px) {
  .uv-steps-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Скрываем детали этапов на мобильных - они будут в попапах */
  .uv-step-details {
    display: none !important;
  }
  
  /* Картинка ноутбука идет первой на мобильных */
  .uv-laptop-container {
    order: 1 !important;
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
  }
  
  .uv-laptop-image {
    max-width: 200px !important;
    height: auto !important;
  }
  
  /* Кнопки этапов идут после картинки */
  .uv-steps-list {
    order: 2 !important;
    width: 100% !important;
  }
  
  .uv-step-item {
    padding: 12px;
    height: auto;
    min-height: 60px;
    cursor: pointer;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
  }
  
  .uv-step-item:hover {
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.05);
  }
  
  .uv-step-item.active {
    border-color: rgba(124, 58, 237, 0.8);
    background: rgba(124, 58, 237, 0.1);
  }
  
  .uv-step-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
    margin-right: 8px;
  }
  
  .uv-step-title {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.3;
  }
  
  .uv-step-description {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .uv-step-duration {
    font-size: 11px;
  }
  
  /* Мобильные попапы для этапов работ */
  .uv-step-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
  }
  
  .uv-step-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .uv-step-modal-content {
    background: var(--uv-bg);
    border: 1px solid var(--uv-border);
    border-radius: 12px;
    padding: 20px;
    max-width: 320px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
  }
  
  .uv-step-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  color: var(--uv-text);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
  }
  
  .uv-step-modal-close:hover {
    background: rgba(124, 58, 237, 0.1);
  }
  
  .uv-step-modal h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--uv-text);
    text-align: center;
  }
  
  .uv-step-modal h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--uv-primary);
  }
  
  .uv-step-modal .uv-step-duration {
    font-size: 12px;
    margin-bottom: 15px;
    color: var(--uv-muted);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .uv-step-modal .uv-step-description {
    font-size: 14px;
    margin-bottom: 15px;
  color: var(--uv-text);
  }
  
  .uv-step-modal .uv-step-tasks {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .uv-step-modal .uv-step-tasks li {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: var(--uv-text);
  }
  
  .uv-step-modal .uv-step-tasks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--uv-primary);
    font-weight: bold;
  }
}

/* Mobile Footer */
@media (min-width: 360px) and (max-width: 419px) {
  .uv-footer {
    padding: 30px 15px 15px;
  }
  
  .uv-footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .uv-footer-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .uv-footer-section p,
  .uv-footer-section a {
    font-size: 13px;
  }
  
  .uv-footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Дополнительные стили для очень маленьких экранов (360px) */
@media (min-width: 360px) and (max-width: 375px) {
  .uv-hero {
    padding: clamp(16px, 10vw, 24px) 0;
    margin-top: -1cm; /* Поднимаем секцию вверх для маленьких экранов */
  }
  
  .uv-hero-inner {
    padding-inline: 12px;
  }
  
  .uv-hero-title {
    font-size: clamp(1.1rem, 5vw, 1.4rem) !important;
    margin-bottom: 8px;
  }
  
  .uv-hero-description {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .uv-hero-badge {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .uv-hero-buttons {
    gap: 8px !important;
  }
  
  .uv-hero-buttons .uv-glass-btn {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
  
  .uv-hero-photo-container {
    max-width: 300px;
  }
  
  .uv-hero-photo {
    max-width: 250px !important; /* Уменьшаем размер фото */
    margin-top: 30px !important; /* Уменьшаем margin над фото */
    border-radius: 16px !important;
  }
  
  .uv-photo-background {
    max-width: 250px !important; /* Такой же размер как у фото на маленьких экранах */
  }
  
  .card {
    max-width: 280px;
    height: 360px;
  }
  
  .card-top {
    height: 90px;
    grid-template-columns: 60px 1fr;
  }
  
  .icon-frame {
    width: 60px;
    height: 90px;
  }
  
  .title-frame {
    height: 90px;
    padding: 6px 10px;
  }
  
  .title-frame h3 {
    font-size: 14px;
  }
  
  .title-frame p {
    font-size: 11px;
  }
  
  .card-bottom {
    height: 260px;
    padding: 12px 10px;
  }
  
  /* CTA styles moved to device-specific media queries above */
  
  .battery-icon {
    width: 22px;
    height: 42px;
  }
}

/* Дополнительные стили для больших мобильных экранов (375px-419px) */
@media (min-width: 376px) and (max-width: 419px) {
  .uv-hero {
    padding: clamp(20px, 8vw, 40px) 0;
    margin-top: -1cm; /* Поднимаем секцию вверх для больших мобильных */
  }
  
  .uv-hero-inner {
    padding-inline: 18px;
  }
  
  .uv-hero-title {
    font-size: clamp(1.3rem, 4.5vw, 1.7rem) !important;
  }
  
  .uv-hero-description {
    font-size: 1.1rem;
  }
  
  .uv-hero-badge {
    font-size: 0.9rem;
  }
  
  .uv-hero-buttons .uv-glass-btn {
    height: 44px;
    padding: 0 18px;
    font-size: 15px;
  }
  
  .uv-hero-photo {
    max-width: 320px !important;
    margin-top: 35px !important;
  }
  
  .uv-photo-background {
    max-width: 320px !important;
  }
  
  .card {
    max-width: 320px;
    height: 400px;
  }
  
  .card-top {
    height: 110px;
    grid-template-columns: 80px 1fr;
  }
  
  .icon-frame {
    width: 80px;
    height: 110px;
  }
  
  .title-frame {
    height: 110px;
    padding: 10px 14px;
  }
  
  .title-frame h3 {
    font-size: 18px;
  }
  
  .title-frame p {
    font-size: 13px;
  }
  
  .card-bottom {
    height: 290px;
    padding: 18px 14px;
  }
  
  /* CTA styles moved to device-specific media queries above */
  
  .battery-icon {
    width: 26px;
    height: 48px;
  }
}

/* ================== ОБЩИЕ СЕКЦИИ ================== */

/* Mobile General Sections */
@media (min-width: 360px) and (max-width: 419px) {
  .uv-section {
    padding: clamp(15px, 4vw, 30px) 0;
  }
  
  .uv-section h2 {
    font-size: clamp(18px, 5vw, 24px);
    margin-bottom: clamp(16px, 4vw, 24px);
    text-align: center;
  }
  
  .uv-section .lead {
    font-size: clamp(14px, 3vw, 16px);
    text-align: center;
    margin-bottom: 20px;
  }
  
  .uv-container {
    padding: 0 15px;
  }
  
  .uv-glass-btn {
    font-size: clamp(12px, 3vw, 14px) !important;
    padding: clamp(8px, 2vw, 12px) clamp(12px, 4vw, 16px) !important;
    min-height: 40px !important;
  }
}

/* ================== ABOUT СЕКЦИЯ ================== */

/* Mobile About Section */
@media (min-width: 360px) and (max-width: 419px) {
  .uv-two-col {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .uv-about-text {
    padding: 0 !important;
    text-align: center;
  }
  
  .uv-about-text h3 {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 12px;
  }
  
  .uv-about-text .lead {
    font-size: clamp(14px, 3vw, 16px);
    margin-bottom: 16px;
  }
  
  .uv-about-text p {
    font-size: clamp(13px, 2.5vw, 15px);
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .uv-about-list {
    margin: 16px 0;
    text-align: left;
  }
  
  .uv-about-list li {
    font-size: clamp(13px, 2.5vw, 15px);
    margin-bottom: 8px;
    padding-left: 20px;
  }
  
  .uv-photo-column {
    padding: 0 !important;
    text-align: center;
  }
  
  .is-style-rounded {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto;
  }
}

/* ================== CASES СЕКЦИЯ ================== */

/* Mobile Cases Section - Все мобильные устройства */
@media (max-width: 419px) {
  .uv-cases-section {
    padding: clamp(20px, 6vw, 40px) 0;
  }
  
  .uv-cases-section .uv-container {
    padding: 0 15px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .uv-cases-slider {
    padding: 20px 0;
  }
  
  .uv-case-slide {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    min-height: auto !important;
  }
  
  .uv-case-left {
    margin-left: 0 !important;
    width: 100% !important;
    transform: none !important;
  }
  
  .uv-case-right {
    margin-left: 0 !important;
    width: 100% !important;
    transform: none !important;
  }
  
  .uv-case-content h3 {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 10px;
  }
  
  .uv-case-content p,
  .uv-case-content li {
    font-size: clamp(13px, 2.5vw, 15px);
    line-height: 1.5;
  }
  
  .uv-case-result {
    font-size: clamp(12px, 2.5vw, 14px);
    padding: 8px 16px;
    margin: 8px 0 12px;
  }
  
  /* Исправляем позиционирование навигации на мобильных */
  .uv-cases-nav {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    order: 2 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
  }
  
  .uv-slider-btn {
    width: 35px;
    height: 35px;
  }
  
  .uv-cases-slider {
    order: 1 !important;
  }
  
  /* Адаптивные кнопки "ПОДРОБНЕЕ" в кейсах */
  .uv-case-content .uv-glass-btn {
    width: 100% !important;
    max-width: 200px !important;
    margin: 15px auto 0 auto !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Скрываем навигацию кейсов на мобилке */
  .uv-cases-nav {
    display: none !important;
  }
  
  /* Адаптивные стили для .uv-box.uv-text */
  .uv-box.uv-text {
    min-height: auto !important;
    max-height: none !important;
    padding: 20px 15px !important;
    aspect-ratio: auto !important;
  }
  
  .uv-text {
    padding: 20px 15px !important;
    min-height: auto !important;
    max-height: none !important;
  }
}

/* ================== FAQ СЕКЦИЯ ================== */

/* Mobile FAQ Section */
@media (min-width: 360px) and (max-width: 419px) {
  .uv-faq {
    padding: 0 15px;
  }
  
  .uv-faq details {
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 8px;
  }
  
  .uv-faq summary {
    font-size: clamp(14px, 3vw, 16px);
    padding: 8px 0;
  }
  
  .uv-faq p {
    font-size: clamp(13px, 2.5vw, 15px);
    line-height: 1.5;
    margin-top: 8px;
  }
}

/* ================== МОДАЛЬНЫЕ ОКНА ================== */

/* Mobile Modal Windows */
@media (min-width: 360px) and (max-width: 419px) {
  .uv-modal {
    padding: 10px;
  }
  
  .uv-modal-content {
    padding: 20px 15px;
    margin: 10px;
    border-radius: 12px;
  }
  
  .uv-modal-content h2 {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 16px;
  }
  
  .uv-audit-form input[type="text"],
  .uv-audit-form input[type="tel"],
  .uv-phone-input {
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .uv-submit-btn {
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
  }
  
  .uv-fullscreen-modal {
    padding: 10px;
  }
  
  .uv-fullscreen-content {
    padding: 15px;
    margin: 10px;
    border-radius: 12px;
  }
}

/* ================== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ МАЛЕНЬКИХ ЭКРАНОВ ================== */

/* Дополнительные стили для очень маленьких экранов (360px-375px) */
@media (min-width: 360px) and (max-width: 375px) {
  .uv-section {
    padding: clamp(12px, 6vw, 20px) 0;
  }
  
  .uv-section h2 {
    font-size: clamp(16px, 5vw, 20px);
    margin-bottom: 12px;
  }
  
  .uv-section .lead {
    font-size: clamp(13px, 3vw, 15px);
    margin-bottom: 16px;
  }
  
  .uv-container {
    padding: 0 12px;
  }
  
  .uv-glass-btn {
    font-size: clamp(11px, 3vw, 13px) !important;
    padding: clamp(6px, 2vw, 10px) clamp(10px, 3vw, 14px) !important;
    min-height: 36px !important;
  }
  
  /* About секция для маленьких экранов */
  .uv-about-text h3 {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .uv-about-text p {
    font-size: clamp(12px, 2.5vw, 14px);
  }
  
  .uv-about-list li {
    font-size: clamp(12px, 2.5vw, 14px);
  }
  
  .is-style-rounded {
    max-width: 250px !important;
  }
  
  /* Полное отключение всех анимаций на маленьких мобильных */
  .uv-growth-chart,
  .uv-growth-chart *,
  .uv-growth-chart svg,
  .uv-growth-chart svg *,
  .uv-growth-line,
  .uv-growth-dots,
  .uv-task-box,
  .uv-task-box *,
  .uv-task-check,
  .uv-task-check *,
  .uv-metric-value,
  .uv-metric-value *,
  .uv-metric-checkbox,
  .uv-metric-checkbox *,
  .uv-dashboard-chart,
  .uv-dashboard-chart *,
  .uv-dashboard-chart svg,
  .uv-dashboard-chart svg *,
  .uv-dashboard-chart .uv-chart-line,
  .uv-dashboard-container,
  .uv-dashboard-container *,
  .uv-dashboard-header,
  .uv-dashboard-header *,
  .uv-dashboard-metrics,
  .uv-dashboard-metrics *,
  .uv-metric,
  .uv-metric *,
  .uv-chart-svg,
  .uv-chart-svg *,
  .uv-chart-grid,
  .uv-chart-grid *,
  .uv-chart-axis,
  .uv-chart-axis *,
  .uv-chart-labels,
  .uv-chart-labels *,
  .uv-tasks-visual,
  .uv-tasks-visual *,
  .growth-bg,
  .growth-bg * {
    animation: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-fill-mode: none !important;
    animation-iteration-count: 0 !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Дополнительно отключаем stroke-dasharray анимации */
  .uv-growth-line {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }
  
  /* Отключаем opacity анимации */
  .uv-growth-dots {
    opacity: 1 !important;
    font-size: 12px !important;
  }
  
  /* Полностью скрываем проблемные элементы на мобильных */
  .uv-dashboard-container,
  .uv-growth-chart {
    display: none !important;
  }
  
  /* Добавляем картинку Chart.png для блока "Работа на результат" */
  .uv-card:first-child .uv-card-chart,
  .wp-block-group.uv-card:first-child .uv-card-chart {
    display: flex !important;
    background-image: url('assets/images/Chart.png') !important;
    background-size: 50% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
  }
  
  /* Добавляем картинку роста трафика для блока "Стабильный рост" */
  .uv-card-laptop {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M40 140 L80 120 L120 100 L160 60 L200 40" stroke="%233b82f6" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/><circle cx="40" cy="140" r="3" fill="%233b82f6"/><circle cx="80" cy="120" r="3" fill="%233b82f6"/><circle cx="120" cy="100" r="3" fill="%233b82f6"/><circle cx="160" cy="60" r="3" fill="%233b82f6"/><circle cx="200" cy="40" r="3" fill="%233b82f6"/><text x="100" y="180" text-anchor="middle" fill="%233b82f6" font-size="16" font-weight="bold">📈</text></svg>') !important;
    background-size: 80px 80px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
  }
  
  /* Еще более компактные блоки для маленьких экранов */
  .uv-grid {
    gap: 8px !important;
    padding: 8px !important;
  }
  
  .uv-grid:has(.uv-card:first-child) {
    gap: 8px !important;
  }
  
  .uv-grid .uv-card:first-child,
  .wp-block-group.uv-grid .wp-block-group.uv-card:first-child,
  .uv-grid .uv-card:nth-child(2),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(2),
  .uv-grid .uv-card:nth-child(3),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(3),
  .uv-grid .uv-card:nth-child(4),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(4),
  .uv-grid .uv-card:nth-child(5),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(5),
  .uv-grid .uv-card:nth-child(6),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(6) {
    height: 100px !important;
    padding: 8px !important;
  }
  
  .uv-card h4 {
    font-size: clamp(12px, 3vw, 14px) !important;
    margin-bottom: 4px !important;
  }
  
  .uv-card p {
    font-size: clamp(10px, 2.5vw, 12px) !important;
  }
  
  .uv-card-chart,
  .uv-card-tasks,
  .uv-card-dashboard {
    height: 50px !important;
  }
  
  .uv-growth-chart svg {
    height: 40px !important;
  }
  
  .uv-task-box {
    height: 16px !important;
    margin-bottom: 2px !important;
  }
  
  .uv-task-text {
    font-size: 9px !important;
  }
  
  /* Порядок элементов для маленьких мобильных */
  .uv-steps-container {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .uv-laptop-container {
    order: 1 !important;
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 15px !important;
  }
  
  .uv-laptop-image {
    max-width: 180px !important;
  }
  
  .uv-steps-list {
    order: 2 !important;
  }
  
  /* Cases секция для маленьких экранов */
  .uv-case-content h3 {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .uv-case-content p,
  .uv-case-content li {
    font-size: clamp(12px, 2.5vw, 14px);
  }
  
  .uv-case-result {
    font-size: clamp(11px, 2.5vw, 13px);
    padding: 6px 12px;
  }
  
  
  /* FAQ секция для маленьких экранов */
  .uv-faq details {
    padding: 10px 12px;
  }
  
  .uv-faq summary {
    font-size: clamp(13px, 3vw, 15px);
  }
  
  .uv-faq p {
    font-size: clamp(12px, 2.5vw, 14px);
  }
  
  /* Модальные окна для маленьких экранов */
  .uv-modal-content {
    padding: 16px 12px;
    margin: 8px;
  }
  
  .uv-modal-content h2 {
    font-size: clamp(16px, 4vw, 20px);
  }
  
  .uv-audit-form input[type="text"],
  .uv-audit-form input[type="tel"],
  .uv-phone-input {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .uv-submit-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* Дополнительные стили для больших мобильных экранов (376px-419px) */
@media (min-width: 376px) and (max-width: 419px) {
  .uv-section {
    padding: clamp(18px, 5vw, 36px) 0;
  }
  
  .uv-section h2 {
    font-size: clamp(20px, 5vw, 26px);
    margin-bottom: 20px;
  }
  
  .uv-section .lead {
    font-size: clamp(15px, 3vw, 17px);
    margin-bottom: 24px;
  }
  
  .uv-container {
    padding: 0 18px;
  }
  
  .uv-glass-btn {
    font-size: clamp(13px, 3vw, 15px) !important;
    padding: clamp(10px, 2vw, 14px) clamp(14px, 4vw, 18px) !important;
    min-height: 44px !important;
  }
  
  /* About секция для больших мобильных */
  .uv-about-text h3 {
    font-size: clamp(18px, 4vw, 22px);
  }
  
  .uv-about-text p {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  
  .uv-about-list li {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  
  .is-style-rounded {
    max-width: 320px !important;
  }
  
  /* Полное отключение всех анимаций на больших мобильных */
  .uv-growth-chart,
  .uv-growth-chart *,
  .uv-growth-chart svg,
  .uv-growth-chart svg *,
  .uv-growth-line,
  .uv-growth-dots,
  .uv-task-box,
  .uv-task-box *,
  .uv-task-check,
  .uv-task-check *,
  .uv-metric-value,
  .uv-metric-value *,
  .uv-metric-checkbox,
  .uv-metric-checkbox *,
  .uv-dashboard-chart,
  .uv-dashboard-chart *,
  .uv-dashboard-chart svg,
  .uv-dashboard-chart svg *,
  .uv-dashboard-chart .uv-chart-line,
  .uv-dashboard-container,
  .uv-dashboard-container *,
  .uv-dashboard-header,
  .uv-dashboard-header *,
  .uv-dashboard-metrics,
  .uv-dashboard-metrics *,
  .uv-metric,
  .uv-metric *,
  .uv-chart-svg,
  .uv-chart-svg *,
  .uv-chart-grid,
  .uv-chart-grid *,
  .uv-chart-axis,
  .uv-chart-axis *,
  .uv-chart-labels,
  .uv-chart-labels *,
  .uv-tasks-visual,
  .uv-tasks-visual *,
  .growth-bg,
  .growth-bg * {
    animation: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-fill-mode: none !important;
    animation-iteration-count: 0 !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Дополнительно отключаем stroke-dasharray анимации */
  .uv-growth-line {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }
  
  /* Отключаем opacity анимации */
  .uv-growth-dots {
    opacity: 1 !important;
    font-size: 12px !important;
  }
  
  /* Полностью скрываем проблемные элементы на мобильных */
  .uv-dashboard-container,
  .uv-growth-chart {
    display: none !important;
  }
  
  /* Добавляем картинку Chart.png для блока "Работа на результат" */
  .uv-card:first-child .uv-card-chart,
  .wp-block-group.uv-card:first-child .uv-card-chart {
    display: flex !important;
    background-image: url('assets/images/Chart.png') !important;
    background-size: 50% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
  }
  
  /* Добавляем картинку роста трафика для блока "Стабильный рост" */
  .uv-card-laptop {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M40 140 L80 120 L120 100 L160 60 L200 40" stroke="%233b82f6" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/><circle cx="40" cy="140" r="3" fill="%233b82f6"/><circle cx="80" cy="120" r="3" fill="%233b82f6"/><circle cx="120" cy="100" r="3" fill="%233b82f6"/><circle cx="160" cy="60" r="3" fill="%233b82f6"/><circle cx="200" cy="40" r="3" fill="%233b82f6"/><text x="100" y="180" text-anchor="middle" fill="%233b82f6" font-size="16" font-weight="bold">📈</text></svg>') !important;
    background-size: 80px 80px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
  }
  
  /* Слегка увеличенные блоки для больших мобильных */
  .uv-grid {
    gap: 12px !important;
    padding: 12px !important;
  }
  
  .uv-grid:has(.uv-card:first-child) {
    gap: 12px !important;
  }
  
  .uv-grid .uv-card:first-child,
  .wp-block-group.uv-grid .wp-block-group.uv-card:first-child,
  .uv-grid .uv-card:nth-child(2),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(2),
  .uv-grid .uv-card:nth-child(3),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(3),
  .uv-grid .uv-card:nth-child(4),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(4),
  .uv-grid .uv-card:nth-child(5),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(5),
  .uv-grid .uv-card:nth-child(6),
  .wp-block-group.uv-grid .wp-block-group.uv-card:nth-child(6) {
    height: 140px !important;
    padding: 12px !important;
  }
  
  .uv-card h4 {
    font-size: clamp(15px, 3vw, 17px) !important;
    margin-bottom: 8px !important;
  }
  
  .uv-card p {
    font-size: clamp(13px, 2.5vw, 15px) !important;
  }
  
  .uv-card-chart,
  .uv-card-tasks,
  .uv-card-dashboard {
    height: 50px !important;
  }
  
  .uv-growth-chart svg {
    height: 60px !important;
  }
  
  .uv-task-box {
    height: 24px !important;
    margin-bottom: 6px !important;
  }
  
  .uv-task-text {
    font-size: 11px !important;
  }
  
  /* Порядок элементов для больших мобильных */
  .uv-steps-container {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .uv-laptop-container {
    order: 1 !important;
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
  }
  
  .uv-laptop-image {
    max-width: 220px !important;
  }
  
  .uv-steps-list {
    order: 2 !important;
  }
  
  /* Cases секция для больших мобильных */
  .uv-case-content h3 {
    font-size: clamp(18px, 4vw, 22px);
  }
  
  .uv-case-content p,
  .uv-case-content li {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  
  .uv-case-result {
    font-size: clamp(13px, 2.5vw, 15px);
    padding: 10px 18px;
  }
  
  
  /* FAQ секция для больших мобильных */
  .uv-faq details {
    padding: 14px 18px;
  }
  
  .uv-faq summary {
    font-size: clamp(15px, 3vw, 17px);
  }
  
  .uv-faq p {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  
  /* Модальные окна для больших мобильных */
  .uv-modal-content {
    padding: 24px 18px;
    margin: 12px;
  }
  
  .uv-modal-content h2 {
    font-size: clamp(20px, 4vw, 24px);
  }
  
  .uv-audit-form input[type="text"],
  .uv-audit-form input[type="tel"],
  .uv-phone-input {
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .uv-submit-btn {
    padding: 14px 18px;
    font-size: 15px;
  }
}

/* ===== Белая тема для мобильных устройств ===== */
/* Тарифные карточки - белая тема */
[data-theme="light"] .cards {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --surface: #f9fafb;
  --surface-2: #f3f4f6;
  --border: #e5e7eb;
}

/* Liquid glass для белой темы - только фреймы */
[data-theme="light"] .cards .icon-frame,
[data-theme="light"] .cards .title-frame,
[data-theme="light"] .cards .card-bottom {
  background: rgba(255,255,255,0.8) !important;
  border-color: rgba(0,0,0,0.1) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1), inset 0 1px rgba(255,255,255,0.8) !important;
}

/* Кнопка "Назад наверх" - белая тема */
[data-theme="light"] .uv-back-to-top {
  background: rgba(255,255,255,0.8) !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  color: #1f2937 !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1), inset 0 1px rgba(255,255,255,0.8) !important;
}

[data-theme="light"] .uv-back-to-top:hover {
  background: rgba(255,255,255,0.9) !important;
  box-shadow: 0 12px 50px rgba(0,0,0,0.15), inset 0 1px rgba(255,255,255,0.9) !important;
}