
    :root {
      /* Dark Mode Colors */
      --bg-main: #0a0e1a;
      --bg-card: #141925;
      --bg-elevated: #1e2635;
      --bg-glass: rgba(20, 25, 37, 0.7);
      
      /* Accents */
      --gold: #f59e0b;
      --gold-light: #fbbf24;
      --gold-glow: rgba(245, 158, 11, 0.3);
      --telegram: #0088cc;
      --telegram-light: #2ea5e0;
      --telegram-glow: rgba(0, 136, 204, 0.3);
      --green: #10b981;
      --green-glow: rgba(16, 185, 129, 0.3);
      
      /* Text */
      --text-primary: #f3f4f6;
      --text-secondary: #d1d5db;
      --text-muted: #9ca3af;
      
      /* Borders */
      --border: rgba(148, 163, 184, 0.12);
      --border-bright: rgba(148, 163, 184, 0.25);
      
      /* Shadows */
      --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.4);
      --shadow-glow-gold: 0 0 30px var(--gold-glow);
      --shadow-glow-telegram: 0 0 30px var(--telegram-glow);
      
      /* Effects */
      --glass-blur: blur(12px);
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg-main);
      color: var(--text-primary);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* Animated background gradient */
    body::before {
      content: "";
      position: fixed;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(
        circle at 30% 20%, 
        rgba(245, 158, 11, 0.08) 0%, 
        transparent 40%
      ),
      radial-gradient(
        circle at 70% 60%, 
        rgba(0, 136, 204, 0.08) 0%, 
        transparent 40%
      );
      z-index: -1;
      animation: gradientShift 15s ease infinite;
    }

    @keyframes gradientShift {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(-5%, -5%); }
    }

    /* Global Image, Video, and iframe Responsiveness */
    img, iframe, video {
      max-width: 100%;
      height: auto;
    }

    img {
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Glass effect utility */
    .glass {
      background: var(--bg-glass);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border: 1px solid var(--border);
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 16px 0;
      background: rgba(10, 14, 26, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 20px;
      color: var(--bg-main);
      box-shadow: var(--shadow-glow-gold);
    }

    .brand-text {
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, var(--gold), var(--text-primary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .nav {
      display: flex;
      gap: 32px;
      font-size: 15px;
      font-weight: 500;
    }

    .nav a {
      position: relative;
      color: var(--text-secondary);
      transition: color var(--transition);
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width var(--transition);
    }

    .nav a:hover {
      color: var(--text-primary);
    }

    .nav a:hover::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .phone {
      font-weight: 600;
      font-size: 15px;
      color: var(--text-primary);
    }

    .btn {
      padding: 12px 24px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 15px;
      border: none;
      transition: all var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--bg-main);
      box-shadow: 0 8px 24px var(--gold-glow);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px var(--gold-glow);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border-bright);
      color: var(--text-primary);
    }

    .btn-outline:hover {
      background: var(--bg-card);
      border-color: var(--gold);
    }

    .btn-telegram {
      padding: 16px 40px;
      font-size: 17px;
      font-weight: 700;
      background: linear-gradient(135deg, var(--telegram), var(--telegram-light));
      color: white;
      border: none;
      border-radius: 14px;
      cursor: pointer;
      transition: all var(--transition);
      box-shadow: 0 12px 32px var(--telegram-glow);
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .btn-telegram:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 40px var(--telegram-glow);
      background: linear-gradient(135deg, var(--telegram-light), var(--telegram));
    }

    .btn-telegram:active {
      transform: translateY(0);
      box-shadow: 0 8px 24px var(--telegram-glow);
    }

    .burger {
      display: none;
      width: 40px;
      height: 40px;
      border: 1px solid var(--border);
      background: transparent;
      border-radius: 8px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .burger span {
      width: 20px;
      height: 2px;
      background: var(--text-primary);
      border-radius: 2px;
      transition: all var(--transition);
    }

    .burger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.open span:nth-child(2) {
      opacity: 0;
    }

    .burger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Sticky CTA Bar */
    .sticky-cta {
      position: fixed;
      top: 80px; /* Высота header */
      left: 0;
      right: 0;
      z-index: 98;
      height: 60px;
      background: rgba(10, 14, 26, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      transform: translateY(-100%);
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }

    .sticky-cta.visible {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .sticky-cta-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .sticky-cta-text {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-primary);
    }

    .sticky-cta-icon {
      font-size: 18px;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
    }

    .sticky-cta-button {
      padding: 10px 28px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 15px;
      border: none;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--bg-main);
      cursor: pointer;
      transition: all var(--transition);
      box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
      white-space: nowrap;
    }

    .sticky-cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
    }

    .sticky-cta-button:active {
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .sticky-cta {
        top: 70px; /* Меньшая высота header на мобильных */
        height: 56px;
      }

      .sticky-cta-content {
        padding: 0 16px;
        gap: 12px;
      }

      .sticky-cta-text {
        font-size: 13px;
        gap: 8px;
      }

      .sticky-cta-text span:not(.sticky-cta-icon) {
        display: none;
      }

      .sticky-cta-button {
        padding: 10px 20px;
        font-size: 14px;
      }
    }

    /* Reading Progress Bar */
    .reading-progress {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: transparent;
      z-index: 10001;
      pointer-events: none;
    }

    .reading-progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      box-shadow: 0 0 10px var(--gold-glow);
      transition: width 0.1s ease-out;
    }

    /* Sections */
    section {
      padding: 80px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-eyebrow {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 999px;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      color: var(--gold);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      background: linear-gradient(135deg, var(--text-primary), var(--text-muted));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 640px;
      margin: 0 auto;
    }

    /* Hero */
    .hero {
      padding: 120px 0 80px;
      text-align: center;
    }

    .hero-title {
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 20px;
      color: var(--text-secondary);
      max-width: 720px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

    .hero-cta {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 64px;
    }

    .btn-large {
      padding: 16px 32px;
      font-size: 17px;
      border-radius: 14px;
    }

    .hero-video {
      max-width: 900px;
      margin: 0 auto;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border);
      background: var(--bg-card);
    }

    .hero-video iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      border: none;
      background: var(--bg-card);
      transition: opacity 0.3s ease;
    }

    /* Lazy loading для видео */
    iframe.lazy-video {
      opacity: 0;
      background: var(--bg-card);
      background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(0, 136, 204, 0.1));
    }

    iframe.lazy-video[src] {
      opacity: 1;
    }

    iframe:not([src]) {
      min-height: 400px;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      margin-top: 64px;
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat-number {
      font-size: 40px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 8px;
    }

    .hero-stat-label {
      color: var(--text-muted);
      font-size: 14px;
    }

    /* Trust Bar Section */
    .trust-bar {
      padding: 60px 0;
      background: var(--bg-card);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-bar-content {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .trust-bar-header {
      text-align: center;
    }

    .trust-bar-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-primary);
      margin: 0;
    }

    .trust-bar-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 32px;
    }

    .trust-logo-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0.8;
      transition: opacity var(--transition);
    }

    .trust-logo-item:hover {
      opacity: 1;
    }

    .trust-logo-placeholder {
      width: 120px;
      height: 60px;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-secondary);
      transition: all var(--transition);
    }

    .trust-logo-item:hover .trust-logo-placeholder {
      border-color: var(--gold);
      color: var(--text-primary);
      box-shadow: 0 4px 12px var(--gold-glow);
    }

    .trust-logo-label {
      font-size: 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .trust-bar-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .trust-stat {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 16px;
      transition: all var(--transition);
    }

    .trust-stat:hover {
      border-color: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .trust-stat-icon {
      font-size: 24px;
      flex-shrink: 0;
    }

    .trust-stat-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .trust-stat-number {
      font-size: 20px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1.2;
    }

    .trust-stat-label {
      font-size: 13px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
      .trust-bar {
        padding: 40px 0;
      }

      .trust-bar-title {
        font-size: 20px;
      }

      .trust-bar-logos {
        gap: 20px;
      }

      .trust-logo-placeholder {
        width: 100px;
        height: 50px;
        font-size: 14px;
      }

      .trust-bar-stats {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .trust-stat {
        padding: 16px;
      }

      .trust-stat-number {
        font-size: 18px;
      }
    }

    /* Problem Section */
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .problem-card {
      padding: 32px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      transition: all var(--transition);
    }

    .problem-card:hover {
      border-color: rgba(239, 68, 68, 0.5);
      transform: translateY(-4px);
    }

    .problem-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(239, 68, 68, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 20px;
    }

    .problem-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .problem-text {
      color: var(--text-muted);
      line-height: 1.6;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Ecosystem Flow */
    .ecosystem-flow {
      max-width: 1000px;
      margin: 0 auto;
      padding: 48px;
      background: var(--bg-glass);
      backdrop-filter: var(--glass-blur);
      border: 1px solid var(--border);
      border-radius: 24px;
      position: relative;
      overflow: hidden;
    }

    .ecosystem-flow::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, var(--gold-glow), transparent 60%),
                  radial-gradient(circle at bottom right, var(--telegram-glow), transparent 60%);
      opacity: 0.4;
      z-index: -1;
    }

    .flow-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      margin-bottom: 32px;
    }

    .flow-step {
      text-align: center;
      padding: 24px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      position: relative;
    }

    .flow-step::after {
      content: "→";
      position: absolute;
      right: -28px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 24px;
      color: var(--gold);
    }

    .flow-step:last-child::after {
      display: none;
    }

    .flow-step-icon {
      font-size: 32px;
      margin-bottom: 12px;
    }

    .flow-step-title {
      font-weight: 600;
      margin-bottom: 8px;
    }

    .flow-step-text {
      font-size: 13px;
      color: var(--text-muted);
    }

    .flow-note {
      text-align: center;
      color: var(--text-secondary);
      padding: 24px;
      background: rgba(245, 158, 11, 0.05);
      border-radius: 12px;
      border: 1px solid rgba(245, 158, 11, 0.2);
    }

    /* Module Sections */
    .module-section {
      position: relative;
      padding: 64px;
      background: var(--bg-card);
      border-radius: 32px;
      border: 1px solid var(--border);
      margin-bottom: 48px;
      overflow: hidden;
    }

    .module-section::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.06;
      z-index: 0;
    }

    .module-section.gold::before {
      background: radial-gradient(circle at top right, var(--gold), transparent 70%);
    }

    .module-section.telegram::before {
      background: radial-gradient(circle at top right, var(--telegram), transparent 70%);
    }

    .module-content {
      position: relative;
      z-index: 1;
    }

    .module-badge {
      display: inline-block;
      padding: 8px 20px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 24px;
    }

    .module-badge.gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--bg-main);
      box-shadow: var(--shadow-glow-gold);
    }

    .module-badge.telegram {
      background: linear-gradient(135deg, var(--telegram), var(--telegram-light));
      color: white;
      box-shadow: var(--shadow-glow-telegram);
    }

    .module-title {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .module-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .module-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .feature-item {
      display: flex;
      align-items: start;
      gap: 16px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: all var(--transition);
    }

    .feature-item:hover {
      background: rgba(255, 255, 255, 0.04);
      transform: translateX(4px);
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .feature-icon.gold {
      background: rgba(245, 158, 11, 0.15);
      color: var(--gold);
    }

    .feature-icon.telegram {
      background: rgba(0, 136, 204, 0.15);
      color: var(--telegram);
    }

    .feature-text h4 {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .feature-text p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .module-visual {
      padding: 32px;
      background: var(--bg-glass);
      backdrop-filter: var(--glass-blur);
      border: 1px solid var(--border-bright);
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    @media (max-width: 768px) {
      .module-visual {
        padding: 24px 20px;
      }
    }

    .visual-mockup {
      flex: 1;
      background: rgba(10, 14, 26, 0.6);
      border-radius: 12px;
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 14px;
      text-align: center;
      border: 2px dashed var(--border);
    }

    .module-pricing {
      margin-top: 32px;
      padding: 32px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border);
      border-radius: 16px;
    }

    .pricing-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }

    .pricing-row:last-child {
      border-bottom: none;
    }

    .pricing-label {
      font-size: 15px;
      color: var(--text-secondary);
    }

    .pricing-value {
      font-size: 24px;
      font-weight: 700;
    }

    .pricing-value.gold {
      color: var(--gold);
    }

    .pricing-value.telegram {
      color: var(--telegram);
    }

    /* Synergy Section */
    .synergy-card {
      padding: 48px;
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(0, 136, 204, 0.1));
      border: 2px solid var(--border-bright);
      border-radius: 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .synergy-card::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
      animation: rotateSynergy 10s linear infinite;
    }

    @keyframes rotateSynergy {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .synergy-content {
      position: relative;
      z-index: 1;
    }

    .synergy-badge {
      display: inline-block;
      padding: 12px 24px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--bg-main);
      font-weight: 700;
      font-size: 15px;
      border-radius: 999px;
      margin-bottom: 24px;
      box-shadow: var(--shadow-glow-gold);
    }

    .synergy-title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .synergy-price {
      font-size: 48px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--gold), var(--telegram));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 16px;
    }

    .synergy-saving {
      color: var(--green);
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 32px;
    }

    .synergy-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin-top: 32px;
    }

    .synergy-feature {
      padding: 16px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      font-size: 14px;
    }

    /* Audience Cards */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }

    .audience-card {
      padding: 40px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      text-align: center;
      transition: all var(--transition);
    }

    .audience-card:hover {
      border-color: var(--gold);
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .audience-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--gold-glow), transparent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 24px;
    }

    .audience-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .audience-text {
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Benefits Grid */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .benefit-card {
      padding: 32px;
      background: var(--bg-glass);
      backdrop-filter: var(--glass-blur);
      border: 1px solid var(--border);
      border-radius: 16px;
      transition: all var(--transition);
    }

    .benefit-card:hover {
      border-color: var(--gold);
      box-shadow: 0 12px 32px var(--gold-glow);
    }

    .benefit-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }

    .benefit-title {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 8px;
    }

    .benefit-text {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    /* Blog Grid */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
    }

    .blog-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: all var(--transition);
    }

    .blog-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
    }

    .blog-image {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 48px;
    }

    .blog-content {
      padding: 24px;
    }

    .blog-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .blog-excerpt {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .blog-link {
      color: var(--gold);
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .blog-link:hover {
      text-decoration: underline;
    }

    /* FAQ */
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-bottom: 16px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 24px;
      background: transparent;
      border: none;
      color: var(--text-primary);
      font-weight: 600;
      font-size: 16px;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: all var(--transition);
    }

    .faq-question:hover {
      color: var(--gold);
    }

    .faq-icon {
      font-size: 20px;
      transition: transform var(--transition);
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--transition);
    }

    .faq-answer-content {
      padding: 0 24px 24px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Lead Form */
    .lead-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 48px;
      background: var(--bg-glass);
      backdrop-filter: var(--glass-blur);
      border: 1px solid var(--border-bright);
      border-radius: 24px;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-label {
      display: block;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--text-secondary);
    }

    .form-input {
      width: 100%;
      padding: 14px 18px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      color: var(--text-primary);
      font-size: 15px;
      transition: all var(--transition);
    }

    .form-input:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px var(--gold-glow);
    }

    .form-radio-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .radio-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      cursor: pointer;
      transition: all var(--transition);
    }

    .radio-option:hover {
      border-color: var(--gold);
    }

    .radio-option input[type="radio"] {
      width: 20px;
      height: 20px;
      accent-color: var(--gold);
    }

    .radio-label {
      font-weight: 500;
      flex: 1;
    }

    .form-submit {
      width: 100%;
      padding: 16px;
      font-size: 17px;
      font-weight: 700;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--bg-main);
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all var(--transition);
      box-shadow: 0 12px 32px var(--gold-glow);
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 40px var(--gold-glow);
    }

    /* Footer */
    .footer {
      padding: 64px 0 32px;
      border-top: 1px solid var(--border);
      background: var(--bg-card);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-section h3 {
      font-size: 18px;
      margin-bottom: 16px;
      color: var(--gold);
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      color: var(--text-muted);
      font-size: 14px;
      transition: color var(--transition);
    }

    .footer-links a:hover {
      color: var(--text-primary);
    }

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--text-muted);
      font-size: 14px;
    }

    /* Toast Notification */
    .toast {
      position: fixed;
      bottom: 32px;
      right: 32px;
      max-width: 400px;
      padding: 20px 24px;
      background: var(--bg-card);
      border: 1px solid var(--green);
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
      display: none;
      align-items: start;
      gap: 16px;
      z-index: 1000;
      animation: slideIn 0.3s ease;
    }

    .toast.show {
      display: flex;
    }

    @keyframes slideIn {
      from {
        transform: translateX(400px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes pulse-telegram {
      0%, 100% {
        box-shadow: 0 0 40px var(--telegram-glow), 0 8px 32px rgba(0, 136, 204, 0.4);
        transform: scale(1);
      }
      50% {
        box-shadow: 0 0 60px var(--telegram-glow), 0 12px 40px rgba(0, 136, 204, 0.6);
        transform: scale(1.05);
      }
    }

    .toast-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      flex-shrink: 0;
    }

    .toast-content h4 {
      font-weight: 700;
      margin-bottom: 4px;
    }

    .toast-content p {
      color: var(--text-muted);
      font-size: 14px;
    }

    /* Success Modal */
    .success-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .success-modal.show {
      display: flex;
    }

    .success-modal-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .success-modal-content {
      position: relative;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px;
      max-width: 600px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      text-align: center;
    }

    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .success-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), #059669);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      color: white;
      box-shadow: 0 0 40px var(--green-glow);
    }

    .success-title {
      font-size: 36px;
      font-weight: 900;
      margin-bottom: 16px;
      color: var(--text-primary);
    }

    .success-message {
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 32px;
    }

    .success-divider {
      height: 1px;
      background: var(--border);
      margin: 32px 0;
    }

    .success-subtitle {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 24px;
      color: var(--text-primary);
      text-align: left;
    }

    .success-steps {
      text-align: left;
      padding-left: 24px;
      margin-bottom: 32px;
    }

    .success-steps li {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .success-steps li:last-child {
      margin-bottom: 0;
    }

    .success-thanks {
      font-size: 18px;
      font-weight: 600;
      color: var(--gold);
      margin-top: 32px;
    }

    @media (max-width: 768px) {
      .success-modal-content {
        padding: 32px 24px;
      }

      .success-title {
        font-size: 28px;
      }

      .success-icon {
        width: 64px;
        height: 64px;
      }
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .module-grid {
        grid-template-columns: 1fr;
      }

      .flow-steps {
        grid-template-columns: 1fr;
      }

      .flow-step::after {
        display: none;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 60px 0;
      }

      .header-inner {
        padding: 0 16px; /* Добавляем отступы для хедера на мобильных */
      }

      .nav {
        display: none;
      }

      .burger {
        display: flex;
        margin-left: auto; /* Прижимаем хамбургер к правому краю */
        flex-shrink: 0; /* Не даем хамбургеру сжиматься */
      }

      .header-actions {
        gap: 12px;
      }

      .header-actions .btn,
      .header-actions button.btn {
        display: none !important; /* Скрываем кнопку "Оставить заявку" в хедере на мобильных */
      }

      .phone {
        display: none;
      }

      .container {
        padding: 0 16px; /* Уменьшаем отступы контейнера на мобильных */
      }

      .hero {
        padding: 80px 0 60px;
        margin-top: 0; /* Убираем лишний отступ сверху */
      }

      .hero-title {
        font-size: 36px;
      }

      .hero-subtitle {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
      }

      .hero-cta {
        flex-direction: column;
        align-items: stretch;
      }

      .module-section {
        padding: 32px 24px;
      }

      .lead-container {
        padding: 32px 24px;
      }

      .synergy-card {
        padding: 32px 24px;
      }

      /* ROI Calculator responsive */
      #roi-calculator .container > div {
        padding: 32px 24px !important;
      }

      #roi-calculator .container > div > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
      }

      /* Video Overview responsive */
      #video-overview > div > div {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }

      /* CTA Sections responsive */
      .cta-section {
        padding: 60px 0 !important;
      }

      .cta-section h2 {
        font-size: 28px !important;
      }

      .cta-benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
      }

      .cta-section .container > div[style*="max-width"] {
        padding: 0 16px;
      }

      .cta-section button {
        width: 100% !important;
      }

      /* Footer responsive */
      .footer {
        padding: 48px 0 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
      }

      .footer-section {
        text-align: left;
      }

      .footer-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
      }

      .footer-links {
        gap: 10px;
      }

      .footer-links a {
        font-size: 13px;
      }

      .footer-bottom {
        padding-top: 24px;
        font-size: 12px;
      }

      /* Problem cards responsive */
      .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .problem-card {
        padding: 24px;
        min-height: auto; /* Убираем фиксированную высоту */
      }

      .problem-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        margin-bottom: 16px;
      }

      .problem-title {
        font-size: 18px;
        margin-bottom: 10px;
      }

      .problem-text {
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
      }

      /* Убеждаемся, что sticky CTA скрыт при загрузке на мобильных */
      .sticky-cta:not(.visible) {
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        pointer-events: none !important;
      }

      /* Дополнительные исправления для мобильных */
      .header {
        padding: 12px 0; /* Уменьшаем padding хедера на мобильных */
      }

      .brand {
        flex-shrink: 0; /* Не даем логотипу сжиматься */
      }

      .brand-text {
        font-size: 18px; /* Уменьшаем размер текста логотипа на мобильных */
      }

      .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }
    }

    /* Video Cards Hover Effects */
    .video-card {
      cursor: pointer;
    }

    .video-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    }

    .video-card:nth-child(1):hover {
      border-color: rgba(245, 158, 11, 0.5);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px var(--gold-glow);
    }

    .video-card:nth-child(2):hover {
      border-color: rgba(0, 136, 204, 0.5);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px var(--telegram-glow);
    }

    /* Comparison Table Styles */
    .comparison-row {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
    }

    .comparison-row:nth-child(1) { animation-delay: 0.1s; }
    .comparison-row:nth-child(2) { animation-delay: 0.2s; }
    .comparison-row:nth-child(3) { animation-delay: 0.3s; }
    .comparison-row:nth-child(4) { animation-delay: 0.4s; }
    .comparison-row:nth-child(5) { animation-delay: 0.5s; }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .comparison-row:hover {
      background: rgba(255, 255, 255, 0.02) !important;
    }

    .comparison-row:hover > div:first-child {
      background: rgba(255, 255, 255, 0.03) !important;
    }

    /* Responsive comparison table */
    @media (max-width: 768px) {
      .comparison-table > div:first-child,
      .comparison-row {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto;
      }

      .comparison-table > div:first-child > div,
      .comparison-row > div {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding: 16px 20px !important;
      }

      .comparison-table > div:first-child > div:last-child,
      .comparison-row > div:last-child {
        border-bottom: none;
      }
    }
  

/* ============================================
   CSS Block Separator
   ============================================ */


    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 10000;
      background: var(--bg-elevated);
      border-top: 1px solid var(--border-bright);
      padding: 24px;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cookie-banner.show {
      transform: translateY(0);
    }

    .cookie-banner-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .cookie-banner-text {
      flex: 1;
      min-width: 300px;
    }

    .cookie-banner-text p {
      margin: 0;
      color: var(--text-primary);
      font-size: 14px;
      line-height: 1.6;
    }

    .cookie-banner-text p:first-child {
      margin-bottom: 8px;
    }

    .cookie-banner-links {
      margin-top: 8px;
    }

    .cookie-banner-links a {
      color: var(--telegram-light);
      text-decoration: underline;
      font-size: 13px;
      transition: color var(--transition);
    }

    .cookie-banner-links a:hover {
      color: var(--telegram);
    }

    .cookie-banner-actions {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
    }

    .cookie-btn {
      padding: 12px 24px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: all var(--transition);
      white-space: nowrap;
    }

    .cookie-btn-accept {
      background: var(--gold);
      color: #000;
      box-shadow: 0 4px 12px var(--gold-glow);
    }

    .cookie-btn-accept:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px var(--gold-glow);
    }

    .cookie-btn-decline {
      background: transparent;
      color: var(--text-secondary);
      border: 1px solid var(--border-bright);
    }

    .cookie-btn-decline:hover {
      color: var(--text-primary);
      border-color: var(--border-bright);
      background: var(--bg-card);
    }

    @media (max-width: 768px) {
      .cookie-banner {
        padding: 20px;
      }

      .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
      }

      .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
      }

      .cookie-btn {
        width: 100%;
      }

      .cookie-banner-text {
        min-width: auto;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .cookie-banner {
        transition: transform 0.2s ease;
      }

      .cookie-btn-accept:hover {
        transform: none;
      }
    }
  

/* ============================================
   CSS Block Separator
   ============================================ */


    .exit-popup {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 10001;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      pointer-events: none;
      overflow-x: hidden;
      overflow-y: auto;
    }

    .exit-popup.show {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
    }

    .exit-popup-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .exit-popup-content {
      position: relative;
      background: var(--bg-elevated);
      border: 1px solid var(--border-bright);
      border-radius: 24px;
      padding: 48px;
      max-width: 520px;
      width: 90%;
      max-height: 90vh;
      overflow-x: hidden;
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--gold-glow);
      transform: scale(0.9) translateY(20px);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-align: center;
    }

    /* Prevent horizontal scrollbar in popup content */
    .exit-popup-content * {
      max-width: 100%;
      box-sizing: border-box;
    }

    /* Ensure inputs and buttons don't overflow */
    .exit-popup-input-wrapper {
      max-width: 100%;
      overflow-x: hidden;
    }

    .exit-popup-submit {
      max-width: 100%;
      white-space: normal;
    }

    .exit-popup.show .exit-popup-content {
      transform: scale(1) translateY(0);
    }

    .exit-popup-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text-secondary);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }

    .exit-popup-close:hover {
      background: var(--bg-elevated);
      color: var(--text-primary);
      border-color: var(--border-bright);
      transform: rotate(90deg);
    }

    .exit-popup-icon {
      font-size: 64px;
      margin-bottom: 20px;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
    }

    .exit-popup-title {
      font-size: 32px;
      font-weight: 900;
      margin-bottom: 16px;
      color: var(--text-primary);
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .exit-popup-text {
      font-size: 20px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .exit-popup-subtext {
      font-size: 16px;
      color: var(--text-secondary);
      margin-bottom: 32px;
      line-height: 1.5;
    }

    .exit-popup-form {
      margin-top: 32px;
    }

    .exit-popup-input-wrapper {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
    }

    .exit-popup-input {
      flex: 1;
      min-width: 0;
      padding: 16px 20px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      color: var(--text-primary);
      font-size: 16px;
      font-family: inherit;
      transition: all var(--transition);
      max-width: 100%;
      box-sizing: border-box;
    }

    .exit-popup-input:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px var(--gold-glow);
    }

    .exit-popup-input::placeholder {
      color: var(--text-muted);
    }

    .exit-popup-submit {
      padding: 16px 32px;
      background: var(--gold);
      color: #000;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all var(--transition);
      white-space: nowrap;
      box-shadow: 0 4px 20px var(--gold-glow);
    }

    .exit-popup-submit:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 30px var(--gold-glow);
    }

    .exit-popup-submit:active {
      transform: translateY(0);
    }

    .exit-popup-submit span {
      font-size: 20px;
      transition: transform var(--transition);
    }

    .exit-popup-submit:hover span {
      transform: translateX(4px);
    }

    .exit-popup-privacy {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 16px;
      line-height: 1.5;
    }

    .exit-popup-privacy a {
      color: var(--telegram-light);
      text-decoration: underline;
      transition: color var(--transition);
    }

    .exit-popup-privacy a:hover {
      color: var(--telegram);
    }

    @media (max-width: 640px) {
      .exit-popup-content {
        padding: 32px 24px;
        border-radius: 20px;
        width: 95%;
        max-width: calc(100vw - 20px);
        overflow-x: hidden;
      }

      .exit-popup-title {
        font-size: 24px;
      }

      .exit-popup-text {
        font-size: 18px;
      }

      .exit-popup-subtext {
        font-size: 14px;
      }

      .exit-popup-input-wrapper {
        flex-direction: column;
      }

      .exit-popup-submit {
        width: 100%;
        justify-content: center;
      }

      .exit-popup-icon {
        font-size: 48px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .exit-popup-content {
        transition: transform 0.2s ease;
      }

      .exit-popup-icon {
        animation: none;
      }

      .exit-popup-submit:hover {
        transform: none;
      }

      .exit-popup-submit:hover span {
        transform: none;
      }
    }
  

/* ============================================
   CSS Block Separator
   ============================================ */


    /* Telegram Widget Button */
    .telegram-widget {
      position: fixed;
      bottom: 100px;
      right: 32px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      background: var(--telegram);
      color: #fff;
      border-radius: 50px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      box-shadow: 0 4px 20px var(--telegram-glow);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 9999;
      opacity: 1;
      visibility: visible;
    }

    .telegram-widget:hover {
      background: var(--telegram-light);
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 8px 30px var(--telegram-glow);
      color: #fff;
    }

    .telegram-widget:active {
      transform: translateY(-2px) scale(1);
    }

    .telegram-widget svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .telegram-widget-text {
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .telegram-widget {
        bottom: 90px;
        right: 24px;
        padding: 12px 16px;
        font-size: 14px;
        gap: 8px;
      }

      .telegram-widget svg {
        width: 20px;
        height: 20px;
      }

      .telegram-widget-text {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .telegram-widget {
        transition: opacity 0.2s ease, visibility 0.2s ease;
      }

      .telegram-widget:hover {
        transform: translateY(0) scale(1);
      }
    }

    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 32px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--gold);
      color: #000;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px var(--gold-glow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px) scale(0.8);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 9999;
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    .back-to-top:hover {
      background: var(--gold-light);
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 8px 30px var(--gold-glow);
    }

    .back-to-top:active {
      transform: translateY(-2px) scale(1);
    }

    .back-to-top svg {
      width: 24px;
      height: 24px;
    }

    @media (max-width: 768px) {
      .telegram-widget {
        bottom: 80px;
      }

      .back-to-top {
        bottom: 90px;
        right: 24px;
        width: 48px;
        height: 48px;
      }

      .back-to-top svg {
        width: 20px;
        height: 20px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .back-to-top {
        transition: opacity 0.2s ease, visibility 0.2s ease;
      }

      .back-to-top:hover {
        transform: translateY(0) scale(1);
      }
    }

    /* Policy/Privacy Page Styles */
    .policy-content {
      line-height: 1.8;
    }

    .policy-content h1 {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 32px;
      color: var(--text-primary);
      background: linear-gradient(135deg, var(--gold), var(--text-primary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .policy-content h3 {
      font-size: 24px;
      font-weight: 700;
      margin-top: 40px;
      margin-bottom: 16px;
      color: var(--gold);
    }

    .policy-content p {
      margin-bottom: 20px;
      color: var(--text-secondary);
      font-size: 16px;
    }

    .policy-content a {
      color: var(--gold);
      text-decoration: underline;
      transition: color var(--transition);
    }

    .policy-content a:hover {
      color: var(--gold-light);
    }

    /* Ensure button text is black on privacy page */
    .policy-content .btn-primary {
      color: #000000 !important;
      font-weight: bold;
    }

    .policy-content .btn-primary:hover {
      color: #000000 !important;
    }

    .policy-content strong {
      color: var(--text-primary);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .policy-content {
        padding: 80px 16px !important;
      }

      .policy-content h1 {
        font-size: 32px;
      }

      .policy-content h3 {
        font-size: 20px;
      }
    }
  