  :root {
        --bg: #02050e;
        --bg-soft: #070d1a;
        --card: rgba(255, 255, 255, 0.03);
        --card-border: rgba(255, 255, 255, 0.08);
        --primary: #0066CC; /* Основной синий цвет Vodka */
        --primary-light: #3399FF; /* Светло-синий */
        --primary-dark: #0052A3; /* Темно-синий */
        --secondary: #4a78e8;
        --accent: #FFD700; /* Акцентный золотой цвет */
        --text: #e8ecff;
        --muted: #8a91b0;
        --danger: #ff4757; /* Красный для акцентов */
        --warning: #ffa502; /* Желтый/оранжевый */
        --safe-area-inset-top: env(safe-area-inset-top, 0px);
        --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
        --safe-area-inset-left: env(safe-area-inset-left, 0px);
        --safe-area-inset-right: env(safe-area-inset-right, 0px);
      }
      
      *, *::before, *::after {
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
      }
      
      body {
        margin: 0;
        font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
        background: radial-gradient(circle at top, #0c162d 0%, #02050e 70%);
        color: var(--text);
        line-height: 1.65;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }
      
      html {
        height: -webkit-fill-available;
      }
      
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }
      
      a {
        color: inherit;
        text-decoration: none;
      }
      
      .page {
        max-width: 1180px;
        margin: 0 auto;
        padding: clamp(20px, 4vw, 48px) max(clamp(16px, 4vw, 36px), var(--safe-area-inset-left)) 80px;
        padding-bottom: calc(80px + var(--safe-area-inset-bottom));
      }
      
      /* НАВИГАЦИЯ - полностью переделана */
      .nav {
        position: sticky;
        top: max(18px, var(--safe-area-inset-top));
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 24px;
        padding: 14px 24px;
        margin-bottom: 32px;
        border-radius: 28px;
        background: rgba(5, 10, 20, 0.95);
        border: 1px solid rgba(0, 102, 204, 0.2);
        box-shadow: 0 25px 60px rgba(1, 3, 10, 0.8);
        backdrop-filter: blur(16px);
        z-index: 1000;
        transition: all 0.3s ease;
      }
      
      .nav__brand {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      
      .nav__brand figure {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      
      .nav__brand img {
        height: 46px;
        width: auto;
      }
      
      .nav__brand-meta {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
      }
      
      .nav__brand-title {
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: clamp(16px, 4vw, 18px);
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      
      .nav__brand-subtitle {
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 500;
      }
      
      .nav__menu {
        display: flex;
        gap: clamp(20px, 2vw, 28px);
        justify-content: center;
      }
      
      .nav__link {
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: clamp(12px, 1.5vw, 13px);
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s ease;
        white-space: nowrap;
        font-weight: 600;
        padding: 8px 0;
      }
      
      .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--primary-light));
        transition: width 0.3s ease;
        border-radius: 2px;
      }
      
      .nav__link:hover {
        color: var(--text);
      }
      
      .nav__link:hover::after {
        width: 100%;
      }
      
      .nav__cta {
        display: flex;
        gap: 16px;
        align-items: center;
      }
      
      .nav__badge {
        background: linear-gradient(135deg, #FFD700, #FFA500);
        color: #000;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        white-space: nowrap;
      }
      
      .nav__toggle {
        display: none;
        width: 44px;
        height: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(0, 102, 204, 0.3);
        background: rgba(0, 102, 204, 0.1);
        color: var(--primary);
        cursor: pointer;
        padding: 0;
        transition: all 0.2s ease;
      }
      
      .nav__toggle:hover {
        background: rgba(0, 102, 204, 0.2);
        border-color: var(--primary);
      }
      
      .nav__toggle svg {
        width: 20px;
        height: 20px;
      }
      
      .hero {
        position: relative;
        border-radius: 32px;
        padding: clamp(24px, 5vw, 56px);
        background: linear-gradient(135deg, rgba(12, 20, 40, 0.98), rgba(5, 10, 20, 0.95));
        border: 1px solid rgba(0, 102, 204, 0.15);
        overflow: hidden;
        margin-bottom: 40px;
      }
      
      .hero__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(24px, 4vw, 32px);
        align-items: center;
      }
      
      .hero__title {
        font-size: clamp(34px, 6vw, 60px);
        margin: 12px 0;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -0.5px;
        background: linear-gradient(135deg, var(--text), var(--primary-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      
      .hero__lead {
        color: var(--muted);
        margin-bottom: 24px;
        max-width: 520px;
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.6;
      }
      
      .hero__cta {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
      }
      
      /* КНОПКИ - новый синий стиль Vodka */
      .btn {
        text-decoration: none;
        border: none;
        padding: 16px 32px;
        border-radius: 16px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 15px;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        overflow: hidden;
      }
      
      .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
      }
      
      .btn:hover::before {
        left: 100%;
      }
      
      .btn--primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--primary));
        background-size: 200% 100%;
        color: #fff;
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
        border: 1px solid rgba(0, 102, 204, 0.3);
      }
      
      .btn--primary:hover {
        background-position: 100% 0;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 102, 204, 0.5);
      }
      
      .btn--primary:active {
        transform: translateY(-1px);
        box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
      }
      
      .btn--ghost {
        border: 2px solid rgba(0, 102, 204, 0.4);
        color: var(--primary-light);
        background: rgba(0, 102, 204, 0.08);
        backdrop-filter: blur(10px);
      }
      
      .btn--ghost:hover {
        background: rgba(0, 102, 204, 0.15);
        border-color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
      }
      
      .btn--danger {
        background: linear-gradient(135deg, #ff4757, #ff6b81);
        color: white;
        box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
        border: none;
      }
      
      .btn--danger:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 71, 87, 0.5);
      }
      
      /* БЕЙДЖ - золотой акцентный */
      .badge {
        display: inline-flex;
        padding: 10px 22px;
        border-radius: 50px;
        background: linear-gradient(135deg, #FFD700, #FFA500);
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.1em;
        color: #000;
        margin-bottom: 20px;
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
      
      .hero-panel {
        padding: clamp(24px, 4vw, 32px);
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(5, 10, 20, 0.8));
        border: 1px solid rgba(0, 102, 204, 0.2);
        box-shadow: 0 30px 80px rgba(3, 6, 12, 0.8);
        backdrop-filter: blur(10px);
      }
      
      .hero-panel__lead {
        margin-top: 0;
        color: var(--text);
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.6;
        font-weight: 500;
        padding: 20px;
        background: rgba(5, 10, 20, 0.5);
        border-radius: 16px;
        border-left: 4px solid var(--primary);
      }
      
      .hero-panel__bonuses {
        margin-top: 20px;
        padding: 16px;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 16px;
        border: 1px solid rgba(255, 215, 0, 0.2);
      }
      
      .hero-panel__bonuses h4 {
        margin: 0 0 12px 0;
        color: #FFD700;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }
      
      .hero-panel__bonuses ul {
        margin: 0;
        padding-left: 20px;
        color: var(--text);
      }
      
      .hero-panel__bonuses li {
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 1.5;
      }
      
      .hero-facts {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px;
      }
      
      .hero-fact {
        padding: 16px;
        border-radius: 16px;
        background: rgba(2, 5, 14, 0.7);
        border: 1px solid rgba(0, 102, 204, 0.1);
        transition: all 0.3s ease;
      }
      
      .hero-fact:hover {
        transform: translateY(-3px);
        border-color: var(--primary);
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
      }
      
      .hero-fact h4 {
        margin: 0 0 6px;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 600;
      }
      
      .hero-fact p {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--text);
      }
      
      .hero-fact span {
        display: block;
        font-size: 13px;
        color: var(--primary-light);
        font-weight: 500;
      }
      
      .cta-image-link {
        display: block;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--card-border);
        transition: all 0.3s ease;
        position: relative;
      }
      
      .cta-image-link img {
        display: block;
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
      }
      
      .cta-image-link:hover img {
        transform: scale(1.05);
      }
      
      .cta-image-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px rgba(3, 6, 12, 0.7);
      }
      
      .metrics {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
      }
      
      .metric {
        padding: 20px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(74, 120, 232, 0.05));
        border: 1px solid rgba(0, 102, 204, 0.15);
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
      }
      
      .metric:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
        box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
      }
      
      .metric strong {
        display: block;
        font-size: clamp(24px, 4vw, 32px);
        font-weight: 800;
        margin-bottom: 8px;
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      
      .metric span {
        font-size: 14px;
        color: var(--muted);
        font-weight: 500;
      }
      
      .section {
        margin-top: clamp(36px, 6vw, 72px);
        scroll-margin-top: 30px;
      }
      
      .section__title {
        font-size: clamp(28px, 4vw, 40px);
        margin-bottom: 24px;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: var(--text);
        position: relative;
        padding-bottom: 15px;
      }
      
      .section__title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--primary-light));
        border-radius: 2px;
      }
      
      .cards {
        display: grid;
        gap: clamp(20px, 3vw, 24px);
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
      }
      
      .card {
        padding: clamp(22px, 3vw, 28px);
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(5, 10, 20, 0.9));
        border-radius: 20px;
        border: 1px solid rgba(0, 102, 204, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
      }
      
      .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--primary-light));
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      
      .card:hover::before {
        opacity: 1;
      }
      
      .card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 102, 204, 0.3);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
      }
      
      .card h3 {
        margin-top: 0;
        font-size: clamp(18px, 2.5vw, 22px);
        margin-bottom: 12px;
        font-weight: 700;
        color: var(--text);
      }
      
      .card p {
        margin: 0;
        color: var(--muted);
        font-size: clamp(15px, 1.8vw, 17px);
        line-height: 1.6;
      }
      
      .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
        border-radius: 20px;
      }
      
      .table {
        width: 100%;
        border-collapse: collapse;
        border-radius: 20px;
        border: 1px solid rgba(0, 102, 204, 0.1);
        min-width: 600px;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.02), rgba(5, 10, 20, 0.95));
        backdrop-filter: blur(10px);
      }
      
      .table th,
      .table td {
        padding: clamp(16px, 2vw, 20px);
        text-align: left;
        border-bottom: 1px solid rgba(0, 102, 204, 0.05);
      }
      
      .table th {
        background: rgba(0, 102, 204, 0.08);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 13px;
        color: var(--primary-light);
        font-weight: 700;
        white-space: nowrap;
        border-top: none;
      }
      
      .table th:first-child {
        border-top-left-radius: 20px;
      }
      
      .table th:last-child {
        border-top-right-radius: 20px;
      }
      
      .table td {
        font-size: clamp(15px, 1.8vw, 17px);
        line-height: 1.5;
        color: var(--text);
      }
      
      .table tbody tr:hover {
        background: rgba(0, 102, 204, 0.05);
      }
      
      .steps {
        counter-reset: steps;
        display: grid;
        gap: clamp(20px, 3vw, 24px);
        grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
      }
      
      .step {
        padding: clamp(22px, 3vw, 26px);
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(5, 10, 20, 0.9));
        border: 1px solid rgba(0, 102, 204, 0.1);
        position: relative;
        padding-left: 70px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
      }
      
      .step:hover {
        transform: translateY(-5px);
        border-color: rgba(0, 102, 204, 0.3);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      }
      
      .step::before {
        counter-increment: steps;
        content: counter(steps);
        position: absolute;
        left: 24px;
        top: 24px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
      }
      
      .step h3 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 700;
        color: var(--text);
      }
      
      .step p {
        margin: 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.6;
      }
      
      .cta-block {
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(5, 10, 20, 0.95));
        border: 1px solid rgba(0, 102, 204, 0.2);
        border-radius: 24px;
        padding: clamp(32px, 4vw, 48px);
        display: grid;
        gap: clamp(24px, 4vw, 32px);
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
        align-items: center;
        backdrop-filter: blur(10px);
      }
      
      .cta-block p {
        margin: 0 0 24px 0;
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        color: var(--text);
      }
      
      .faq {
        border-top: 1px solid rgba(0, 102, 204, 0.1);
        padding-top: 40px;
      }
      
      .faq-item {
        border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        padding: clamp(20px, 3vw, 24px) 0;
        transition: all 0.3s ease;
      }
      
      .faq-item:hover {
        border-bottom-color: rgba(0, 102, 204, 0.3);
      }
      
      .faq-item h3 {
        margin: 0 0 12px;
        font-size: clamp(18px, 2.5vw, 22px);
        font-weight: 700;
        color: var(--text);
      }
      
      .faq-item p {
        margin: 0;
        color: var(--muted);
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.6;
      }
      
      .seo-block {
        margin-top: clamp(24px, 4vw, 48px);
        padding: 24px 0;
        color: var(--muted);
        font-size: clamp(15px, 2vw, 16px);
        line-height: 1.7;
      }
      
      .seo-block:empty {
        display: none;
      }
      
      .seo-block h2 {
        color: var(--text);
        font-size: clamp(24px, 3vw, 32px);
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 700;
      }
      
      .seo-block h3 {
        color: var(--text);
        font-size: clamp(20px, 2.5vw, 24px);
        margin-top: 25px;
        margin-bottom: 10px;
        font-weight: 600;
      }
      
      .seo-block p {
        margin-bottom: 15px;
      }
      
      .seo-block ul, .seo-block ol {
        padding-left: 20px;
        margin-bottom: 20px;
      }
      
      .seo-block li {
        margin-bottom: 8px;
      }
      
      .seo-block table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        background: var(--card);
        border-radius: 12px;
        overflow: hidden;
      }
      
      .seo-block table th,
      .seo-block table td {
        padding: 12px 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
      }
      
      .seo-block table th {
        background: rgba(255, 255, 255, 0.05);
        font-weight: 600;
      }
      
      .seo-block blockquote {
        border-left: 4px solid var(--primary);
        padding-left: 20px;
        margin: 20px 0;
        font-style: italic;
        background: rgba(0, 102, 204, 0.05);
        padding: 15px 20px;
        border-radius: 0 12px 12px 0;
      }
      
      /* Улучшенная мобильная адаптация */
      @media (max-width: 1024px) {
        .nav {
          padding: 12px 20px;
          gap: 20px;
        }
        
        .nav__menu {
          gap: 16px;
        }
        
        .hero {
          border-radius: 24px;
          padding: 30px 24px;
        }
        
        .cta-block {
          padding: 30px 24px;
        }
      }
      
      @media (max-width: 900px) {
        .nav {
          grid-template-columns: 1fr auto;
          gap: 16px;
        }
        
        .nav__menu {
          display: none;
        }
        
        .nav--open .nav__menu {
          display: flex;
          flex-direction: column;
          grid-column: 1 / -1;
          order: 3;
          width: 100%;
          margin-top: 16px;
          gap: 12px;
        }
        
        .nav__cta {
          order: 2;
        }
        
        .nav__toggle {
          display: flex;
        }
        
        .hero__title {
          font-size: clamp(28px, 8vw, 40px);
        }
        
        .hero__lead {
          font-size: 16px;
        }
      }
      
      @media (max-width: 768px) {
        body {
          font-size: 16px;
          line-height: 1.6;
        }
        
        .page {
          padding: 16px max(12px, var(--safe-area-inset-left)) 60px;
          padding-bottom: calc(60px + var(--safe-area-inset-bottom));
        }
        
        .nav {
          position: relative;
          top: 0;
          grid-template-columns: 1fr auto auto;
          align-items: center;
          padding: 16px;
          border-radius: 20px;
          margin-bottom: 24px;
          backdrop-filter: blur(8px);
        }
        
        .nav__brand {
          width: 100%;
        }
        
        .nav__menu {
          display: none;
          position: absolute;
          top: 100%;
          left: 12px;
          right: 16px;
          background: rgba(5, 10, 20, 0.98);
          border: 1px solid rgba(0, 102, 204, 0.2);
          border-radius: 16px;
          padding: 20px;
          margin-top: 10px;
          z-index: 1000;
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }
        
        .nav--open .nav__menu {
          display: flex;
          flex-direction: column;
          animation: slideDown 0.3s ease;
        }
        
        .nav__menu .nav__link {
          font-size: 15px;
          padding: 12px 0;
          border-bottom: 1px solid rgba(0, 102, 204, 0.1);
          width: 100%;
        }
        
        .nav__menu .nav__link:last-child {
          border-bottom: none;
        }
        
        .nav__cta {
          gap: 12px;
        }
        
        .nav__badge {
          display: none;
        }
        
        .nav__toggle {
          display: flex;
        }
        
        .hero {
          padding: 24px 20px;
          border-radius: 20px;
          margin-bottom: 30px;
        }
        
        .hero__grid {
          gap: 24px;
        }
        
        .hero__title {
          font-size: clamp(28px, 8vw, 36px);
          line-height: 1.2;
        }
        
        .hero__lead {
          font-size: 15px;
          margin-bottom: 20px;
        }
        
        .hero__cta {
          flex-direction: column;
          gap: 12px;
        }
        
        .hero__cta .btn {
          width: 100%;
          min-height: 52px;
        }
        
        .hero-panel {
          padding: 20px;
        }
        
        .hero-facts {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }
        
        .hero-fact {
          padding: 12px;
        }
        
        .metrics {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }
        
        .metric {
          padding: 16px 12px;
        }
        
        .section {
          margin-top: 40px;
        }
        
        .section__title {
          font-size: clamp(24px, 6vw, 28px);
          margin-bottom: 16px;
        }
        
        .cards {
          gap: 12px;
        }
        
        .card {
          padding: 20px 16px;
          border-radius: 16px;
        }
        
        .card h3 {
          font-size: 18px;
          margin-bottom: 8px;
        }
        
        .table-wrapper {
          margin: 0 -16px;
          padding: 0 16px;
        }
        
        .table {
          min-width: 700px;
        }
        
        .table th,
        .table td {
          padding: 12px 8px;
          font-size: 14px;
        }
        
        .steps {
          gap: 12px;
        }
        
        .step {
          padding: 18px 16px 18px 58px;
        }
        
        .step::before {
          left: 16px;
          top: 18px;
        }
        
        .cta-block {
          padding: 24px 20px;
          border-radius: 20px;
        }
        
        .faq-item {
          padding: 16px 0;
        }
        
        .faq-item h3 {
          font-size: 18px;
        }
        
        .seo-block {
          margin-top: 32px;
          padding: 20px 0;
          font-size: 15px;
        }
        
        .seo-block h2 {
          font-size: 22px;
          margin-top: 25px;
        }
        
        .seo-block h3 {
          font-size: 18px;
          margin-top: 20px;
        }
      }
      
      @media (max-width: 640px) {
        .hero__title {
          font-size: 28px;
        }
        
        .hero-facts {
          grid-template-columns: 1fr;
        }
        
        .metrics {
          grid-template-columns: 1fr;
        }
        
        .hero-fact p, .hero-fact span {
          font-size: 14px;
        }
        
        .btn {
          padding: 14px 16px;
          font-size: 14px;
        }
        
        .seo-block table {
          display: block;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
        }
      }
      
      @media (max-width: 480px) {
        .page {
          padding: 12px max(8px, var(--safe-area-inset-left)) 50px;
          padding-bottom: calc(50px + var(--safe-area-inset-bottom));
        }
        
        .nav {
          padding: 12px 16px;
          border-radius: 16px;
          grid-template-columns: 1fr auto;
        }
        
        .nav__brand img {
          height: 40px;
        }
        
        .nav__brand-title {
          font-size: 16px;
        }
        
        .nav__brand-subtitle {
          font-size: 10px;
        }
        
        .nav__cta {
          display: none;
        }
        
        .nav--open .nav__cta {
          display: flex;
          flex-direction: column;
          grid-column: 1 / -1;
          width: 100%;
          margin-top: 16px;
        }
        
        .hero {
          padding: 20px 16px;
          border-radius: 16px;
        }
        
        .hero__title {
          font-size: 24px;
        }
        
        .hero__lead {
          font-size: 14px;
        }
        
        .badge {
          padding: 8px 18px;
          font-size: 12px;
        }
        
        .hero-panel {
          padding: 16px;
          border-radius: 16px;
        }
        
        .hero-fact h4 {
          font-size: 11px;
        }
        
        .hero-fact p {
          font-size: 13px;
        }
        
        .metric strong {
          font-size: 20px;
        }
        
        .metric span {
          font-size: 13px;
        }
        
        .section__title {
          font-size: 22px;
        }
        
        .card {
          padding: 16px;
        }
        
        .card h3 {
          font-size: 17px;
        }
        
        .card p {
          font-size: 14px;
        }
        
        .step {
          padding: 16px 16px 16px 50px;
        }
        
        .step::before {
          width: 24px;
          height: 24px;
          left: 12px;
          top: 16px;
          font-size: 12px;
        }
        
        .step h3 {
          font-size: 16px;
        }
        
        .step p {
          font-size: 14px;
        }
        
        .cta-block {
          padding: 20px 16px;
          border-radius: 16px;
        }
        
        .faq-item h3 {
          font-size: 17px;
        }
        
        .faq-item p {
          font-size: 14px;
        }
        
        .seo-block {
          font-size: 14px;
        }
        
        .seo-block h2 {
          font-size: 20px;
        }
        
        .seo-block h3 {
          font-size: 17px;
        }
      }
      
      @media (max-width: 360px) {
        .hero__title {
          font-size: 22px;
        }
        
        .hero__cta .btn {
          font-size: 13px;
          padding: 12px 16px;
        }
        
        .nav__brand-title {
          font-size: 15px;
        }
        
        .nav__brand-subtitle {
          font-size: 9px;
        }
      }
      
      @media (hover: none) and (pointer: coarse) {
        .btn:hover, .card:hover, .step:hover, .hero-fact:hover, .metric:hover, .cta-image-link:hover {
          transform: none;
        }
        
        .btn:active, .card:active, .step:active, .hero-fact:active, .metric:active {
          transform: scale(0.98);
        }
        
        .nav__link:hover {
          color: var(--muted);
        }
        
        .nav__link:active {
          color: var(--text);
        }
      }
      
      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      /* Анимации для улучшения UX */
      .fade-in {
        animation: fadeIn 0.6s ease;
      }
      
      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      /* Стили для улучшения доступности */
      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }
      
      :focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
      }
      
      /* Улучшение скролла */
      ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
      }
      
      ::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
      }
      
      ::-webkit-scrollbar-thumb {
        background: rgba(0, 102, 204, 0.3);
        border-radius: 4px;
      }
      
      ::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 102, 204, 0.5);
      }
      
      /* Улучшение для устройств с темной темой */
      @media (prefers-color-scheme: dark) {
        .nav, .hero, .card, .step, .metric, .hero-panel {
          border-color: rgba(0, 102, 204, 0.15);
        }
      }
      
      /* Предотвращение масштабирования на мобильных при фокусе на input */
      input, textarea, select {
        font-size: 16px !important;
      }