/* PROFIT SIM — базовые стили сайта.
   Извлечено из index.html; используется страницами каталога.
   ВНИМАНИЕ: index.html пока держит свою инлайн-копию этих правил. */

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

    :root {
      --yellow: #FFD600;
      --yellow-dark: #E6C000;
      --yellow-light: #FFF9D6;
      --black: #0D0D0D;
      --dark: #1A1A1A;
      --dark2: #242424;
      --gray: #6B7280;
      --gray-light: #F3F4F6;
      --white: #FFFFFF;
      --green: #16A34A;
      --green-light: #DCFCE7;
      --radius: 16px;
      --radius-sm: 10px;
      --shadow: 0 4px 24px rgba(0,0,0,0.10);
      --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    }

    html { scroll-behavior: smooth; }

    /* Отступ сверху при переходе по якорю — чтобы контент не скрывался под шапкой */
    .section[id], section[id], div[id].video-header {
      scroll-margin-top: 72px;
    }

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

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ─── HEADER ─── */
    .header {
      background: var(--black);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 2px solid var(--yellow);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .logo img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .logo-text {
      font-weight: 800;
      font-size: 18px;
      color: var(--white);
      letter-spacing: -0.3px;
      white-space: nowrap;
    }

    .logo-text span { color: var(--yellow); }

    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--yellow);
      color: var(--black);
      font-weight: 700;
      font-size: 14px;
      padding: 10px 20px;
      border-radius: 50px;
      transition: transform 0.15s, box-shadow 0.15s;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .header-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(255,214,0,0.4);
    }

    /* ─── HEADER NAV ─── */
    .header-nav {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
      justify-content: center;
    }

    .header-nav a {
      color: rgba(255,255,255,0.65);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 8px;
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
    }

    .header-nav a:hover {
      color: var(--yellow);
      background: rgba(255,214,0,0.08);
    }

    /* ─── MOBILE NAV BAR ─── */
    .mobile-nav {
      display: none;
      background: var(--dark2);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .mobile-nav::-webkit-scrollbar { display: none; }

    .mobile-nav-inner {
      display: flex;
      gap: 4px;
      padding: 8px 16px;
      width: max-content;
      min-width: 100%;
    }

    .mobile-nav a {
      color: rgba(255,255,255,0.6);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.1);
      white-space: nowrap;
      transition: color 0.15s, border-color 0.15s, background 0.15s;
    }

    .mobile-nav a:hover, .mobile-nav a:active {
      color: var(--yellow);
      border-color: rgba(255,214,0,0.35);
      background: rgba(255,214,0,0.07);
    }

    /* ─── HERO ─── */
    .hero {
      background: var(--black);
      padding: 64px 0 56px;
      overflow: hidden;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(255,214,0,0.10) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 48px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,214,0,0.13);
      border: 1px solid rgba(255,214,0,0.28);
      color: var(--yellow);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 20px;
    }

    .hero-title {
      font-size: clamp(30px, 4.5vw, 50px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }

    .hero-title .accent { color: var(--yellow); }

    .hero-subtitle {
      font-size: 16px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 36px;
      max-width: 480px;
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 40px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--yellow);
      color: var(--black);
      font-weight: 800;
      font-size: 15px;
      padding: 15px 30px;
      border-radius: 50px;
      transition: transform 0.15s, box-shadow 0.15s;
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(255,214,0,0.42);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--white);
      font-weight: 600;
      font-size: 14px;
      padding: 15px 22px;
      border-radius: 50px;
      border: 1.5px solid rgba(255,255,255,0.22);
      transition: border-color 0.15s, background 0.15s;
    }

    .btn-secondary:hover {
      border-color: rgba(255,255,255,0.45);
      background: rgba(255,255,255,0.06);
    }

    .hero-stats {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }

    .hero-stat { display: flex; flex-direction: column; }

    .hero-stat-num {
      font-size: 24px;
      font-weight: 900;
      color: var(--yellow);
      letter-spacing: -0.5px;
    }

    .hero-stat-label {
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      font-weight: 500;
    }

    /* Hero card */
    .hero-visual {}

    .hero-phone-card {
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 24px;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .hero-phone-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(255,214,0,0.06) 0%, transparent 60%);
      pointer-events: none;
    }

    .hpc-title {
      color: var(--yellow);
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hpc-countries {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .hpc-country {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 9px;
      transition: background 0.15s, border-color 0.15s;
      cursor: pointer;
    }

    .hpc-country:hover {
      background: rgba(255,214,0,0.08);
      border-color: rgba(255,214,0,0.25);
    }

    .hpc-flag { font-size: 22px; flex-shrink: 0; }

    .hpc-country-name { font-size: 12px; font-weight: 600; color: var(--white); }
    .hpc-country-price { font-size: 11px; color: var(--yellow); font-weight: 500; }

    .hpc-footer {
      margin-top: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .hpc-more { font-size: 12px; color: rgba(255,255,255,0.4); }

    .hpc-arrow {
      width: 30px;
      height: 30px;
      background: var(--yellow);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      flex-shrink: 0;
    }

    /* ─── TRUST BAR ─── */
    .trust-bar {
      background: var(--yellow);
      padding: 16px 0;
      overflow: hidden;
    }

    .trust-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-weight: 700;
      font-size: 13px;
      color: var(--black);
      white-space: nowrap;
    }

    .trust-item-icon { font-size: 18px; }

    /* ─── SECTION COMMON ─── */
    .section { padding: 72px 0; }
    .section-alt { background: var(--gray-light); }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-tag {
      display: inline-block;
      background: var(--yellow-light);
      color: #92700A;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 50px;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(24px, 3.5vw, 38px);
      font-weight: 900;
      letter-spacing: -0.7px;
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .section-subtitle {
      font-size: 15px;
      color: var(--gray);
      max-width: 540px;
      margin: 0 auto;
    }

    /* ─── CATALOG ─── */
    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 12px;
      margin-bottom: 20px;
    }

    .country-card {
      background: var(--white);
      border: 1.5px solid #E5E7EB;
      border-radius: var(--radius-sm);
      padding: 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      cursor: pointer;
      transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
      text-decoration: none;
    }

    .country-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      border-color: var(--yellow);
    }

    .country-card-flag { font-size: 32px; }

    .country-card-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--black);
    }

    .country-card-op {
      font-size: 11px;
      color: var(--gray);
      line-height: 1.4;
    }

    .country-card-price {
      margin-top: auto;
      font-size: 13px;
      font-weight: 700;
      color: var(--black);
    }

    .country-card-price span {
      color: var(--green);
    }

    .country-card-uah {
      font-size: 11px;
      color: var(--gray);
      font-weight: 500;
      margin-top: 2px;
    }

    .country-card-badge {
      display: inline-block;
      background: var(--yellow);
      color: var(--black);
      font-size: 9px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      align-self: flex-start;
    }

    .catalog-show-more {
      text-align: center;
      margin-top: 8px;
    }

    .catalog-cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .catalog-note {
      font-size: 13px;
      color: var(--gray);
    }

    /* ─── HOW IT WORKS ─── */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .step {
      text-align: center;
      padding: 28px 18px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1.5px solid #E5E7EB;
    }

    .step-num {
      width: 52px;
      height: 52px;
      background: var(--yellow);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 900;
      color: var(--black);
      margin: 0 auto 16px;
    }

    .step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .step-text { font-size: 13px; color: var(--gray); line-height: 1.6; }

    /* ─── WHY TELEGRAM ─── */
    .why-telegram {
      background: var(--black);
      color: var(--white);
    }

    .why-telegram .section-tag { background: rgba(255,214,0,0.13); color: var(--yellow); }
    .why-telegram .section-title { color: var(--white); }
    .why-telegram .section-subtitle { color: rgba(255,255,255,0.55); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
      gap: 16px;
    }

    .why-card {
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius);
      padding: 24px 22px;
      transition: border-color 0.2s, transform 0.2s;
    }

    .why-card:hover { border-color: rgba(255,214,0,0.3); transform: translateY(-2px); }

    .why-icon { font-size: 32px; margin-bottom: 14px; }
    .why-title { font-size: 15px; font-weight: 700; margin-bottom: 7px; color: var(--white); }
    .why-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

    /* ─── CASHBACK ─── */
    .cashback-section { background: var(--black); }

    .cashback-section .section-tag { background: rgba(255,214,0,0.13); color: var(--yellow); }
    .cashback-section .section-title { color: var(--white); }
    .cashback-section .section-subtitle { color: rgba(255,255,255,0.55); }

    .medals-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .medal-card {
      background: var(--dark2);
      border: 1.5px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      transition: transform 0.2s, border-color 0.2s;
    }

    .medal-card:hover { transform: translateY(-3px); border-color: rgba(255,214,0,0.3); }

    .medal-card.active {
      border-color: var(--yellow);
      background: rgba(255,214,0,0.06);
    }

    .medal-icon { font-size: 48px; margin-bottom: 12px; }

    .medal-name {
      font-size: 16px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 6px;
    }

    .medal-range {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      margin-bottom: 14px;
    }

    .medal-cashback {
      font-size: 28px;
      font-weight: 900;
      color: var(--yellow);
      letter-spacing: -0.5px;
    }

    .medal-cashback-label {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      margin-top: 3px;
    }

    .cashback-note {
      text-align: center;
      margin-top: 28px;
      font-size: 14px;
      color: rgba(255,255,255,0.4);
    }

    .cashback-note strong { color: var(--yellow); }

    /* ─── PAYMENT ─── */
    .payment-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .payment-card {
      background: var(--white);
      border: 1.5px solid #E5E7EB;
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      transition: box-shadow 0.2s, border-color 0.2s;
    }

    .payment-card:hover { box-shadow: var(--shadow); border-color: var(--yellow); }

    .payment-icon { font-size: 40px; margin-bottom: 14px; }
    .payment-title { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
    .payment-text { font-size: 13px; color: var(--gray); line-height: 1.6; }

    /* ─── REVIEWS ─── */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
      margin-bottom: 48px;
    }

    .review-card {
      background: var(--white);
      border: 1.5px solid #E5E7EB;
      border-radius: var(--radius);
      padding: 22px;
      transition: box-shadow 0.2s;
    }

    .review-card:hover { box-shadow: var(--shadow); }

    .review-stars { color: var(--yellow); font-size: 15px; letter-spacing: 1px; margin-bottom: 10px; }
    .review-text { font-size: 14px; color: var(--dark); line-height: 1.7; margin-bottom: 14px; }

    .review-author { display: flex; align-items: center; gap: 10px; }

    .review-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: var(--black);
      flex-shrink: 0;
    }

    .review-name { font-size: 13px; font-weight: 700; }
    .review-meta { font-size: 11px; color: var(--gray); }

    /* Video reviews */
    .video-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .video-reviews-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
    }

    .video-thumb {
      aspect-ratio: 9/16;
      background: var(--dark2);
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform 0.2s;
      border: 2px solid transparent;
      text-decoration: none;
      display: block;
    }

    .video-thumb:hover { transform: scale(1.04); border-color: var(--yellow); }

    .video-thumb img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .video-play {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.35);
      gap: 8px;
      transition: background 0.2s;
    }

    .video-thumb:hover .video-play { background: rgba(0,0,0,0.5); }

    .video-play-icon {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: transform 0.15s;
    }

    .video-thumb:hover .video-play-icon { transform: scale(1.1); }

    .video-play-label {
      font-size: 11px;
      color: rgba(255,255,255,0.95);
      font-weight: 600;
      text-align: center;
      padding: 0 8px;
      text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    }

    /* ─── VIDEO MODAL ─── */
    .video-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.88);
      z-index: 300;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }

    .video-modal-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .video-modal {
      position: relative;
      width: 100%;
      max-width: 380px;
      background: #000;
      border-radius: 16px;
      overflow: hidden;
      transform: scale(0.92);
      transition: transform 0.22s;
    }

    .video-modal-overlay.open .video-modal {
      transform: scale(1);
    }

    .video-modal-aspect {
      position: relative;
      width: 100%;
      padding-top: 177.78%; /* 9:16 */
    }

    .video-modal-aspect iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-modal-close {
      position: absolute;
      top: -48px;
      right: 0;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.15);
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      color: #fff;
      transition: background 0.15s;
      z-index: 10;
    }

    .video-modal-close:hover {
      background: rgba(255,255,255,0.28);
    }

    @media (max-width: 480px) {
      .video-modal { max-width: 300px; }
      .video-modal-close { top: -44px; }
    }

    .video-count-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--green-light);
      color: var(--green);
      font-size: 13px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 50px;
    }

    /* ─── GUARANTEE ─── */
    .guarantee-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px;
    }

    .guarantee-card {
      text-align: center;
      padding: 28px 18px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1.5px solid #E5E7EB;
    }

    .guarantee-icon { font-size: 40px; margin-bottom: 12px; }
    .guarantee-title { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
    .guarantee-text { font-size: 13px; color: var(--gray); line-height: 1.6; }

    /* ─── FAQ ─── */
    .faq-list { max-width: 720px; margin: 0 auto; }

    .faq-item {
      border: 1.5px solid #E5E7EB;
      border-radius: var(--radius-sm);
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faq-item.open { border-color: var(--yellow); }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 17px 20px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      color: var(--black);
      text-align: left;
    }

    .faq-arrow {
      width: 26px;
      height: 26px;
      background: var(--gray-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.25s;
    }

    .faq-item.open .faq-arrow { background: var(--yellow); transform: rotate(45deg); }

    .faq-a {
      display: none;
      padding: 0 20px 16px;
      font-size: 13px;
      color: var(--gray);
      line-height: 1.7;
    }

    .faq-item.open .faq-a { display: block; }

    /* ─── FINAL CTA ─── */
    .final-cta {
      background: var(--yellow);
      padding: 72px 0;
      text-align: center;
    }

    .final-cta-title {
      font-size: clamp(26px, 4.5vw, 44px);
      font-weight: 900;
      color: var(--black);
      margin-bottom: 12px;
      letter-spacing: -0.8px;
    }

    .final-cta-sub {
      font-size: 16px;
      color: rgba(0,0,0,0.6);
      margin-bottom: 32px;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--black);
      color: var(--white);
      font-weight: 800;
      font-size: 16px;
      padding: 17px 38px;
      border-radius: 50px;
      transition: transform 0.15s, box-shadow 0.15s;
    }

    .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }

    .final-cta-note { margin-top: 14px; font-size: 13px; color: rgba(0,0,0,0.45); }

    /* ─── FOOTER ─── */
    .footer {
      background: var(--dark);
      color: rgba(255,255,255,0.55);
      padding: 48px 0 32px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 36px;
    }

    .footer-brand-name { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
    .footer-brand-name span { color: var(--yellow); }
    .footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
    .footer-col-title { font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.15s; }
    .footer-links a:hover { color: var(--yellow); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 12px;
    }

    .footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
    .footer-legal a { color: rgba(255,255,255,0.35); transition: color 0.15s; }
    .footer-legal a:hover { color: var(--white); }

    /* ─── FLOATING CTA ─── */
    .float-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 50;
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--yellow);
      color: var(--black);
      font-weight: 700;
      font-size: 14px;
      padding: 13px 22px;
      border-radius: 50px;
      box-shadow: 0 4px 28px rgba(255,200,0,0.35);
      opacity: 0;
      transform: translateY(16px);
      pointer-events: none;
      transition: opacity 0.25s, transform 0.25s;
    }

    .float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .float-cta:hover { transform: translateY(-2px) !important; }

    .float-dot {
      width: 8px;
      height: 8px;
      background: #e53935;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.4); }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .medals-grid { grid-template-columns: repeat(2, 1fr); }
      .video-reviews-grid { grid-template-columns: repeat(4, 1fr); }
    }

    @media (max-width: 768px) {
      .hero { padding: 40px 0 36px; }
      .section { padding: 52px 0; }

      .video-reviews-grid { grid-template-columns: repeat(3, 1fr); }

      .hero-inner { grid-template-columns: 1fr; gap: 0; }
      .hero-visual { display: none; }

      .steps { grid-template-columns: 1fr; gap: 12px; }

      .payment-grid { grid-template-columns: 1fr; gap: 12px; }

      .footer-top { grid-template-columns: 1fr; gap: 24px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }

      .trust-bar-inner { gap: 16px; }

      .float-cta {
        bottom: 12px;
        right: 12px;
        left: 12px;
        justify-content: center;
        font-size: 15px;
        padding: 14px 20px;
      }

      .header-inner { height: 56px; }
      .logo-text { font-size: 16px; }
      .header-cta { padding: 9px 16px; font-size: 13px; }
      .header-nav { display: none; }
      .mobile-nav { display: block; }

      .medals-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .medal-card { padding: 20px 14px; }
      .medal-icon { font-size: 36px; }
      .medal-cashback { font-size: 22px; }
    }

    @media (max-width: 540px) {
      .catalog-grid { grid-template-columns: repeat(2, 1fr); }
      .video-reviews-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-stats { gap: 18px; }
      .hero-stat-num { font-size: 20px; }

      .hpc-countries { grid-template-columns: 1fr 1fr; }

      /* Hero badge — одна строка */
      .hero-badge { font-size: 11px; padding: 5px 10px; gap: 4px; white-space: nowrap; }

      /* Hero stats — ровная сетка 2×2, по левому краю */
      .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 24px;
        justify-items: start;
      }

      /* Trust bar — сетка 2×2, по левому краю */
      .trust-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
        justify-items: start;
        justify-content: start;
      }
      .trust-item { font-size: 12px; }
    }

    @media (max-width: 360px) {
      .catalog-grid { grid-template-columns: repeat(2, 1fr); }
      .medals-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ─── PRICE TABLE (открытый прайс-лист, важный для SEO/LLM) ─── */
    .price-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border-radius: var(--radius);
      border: 1.5px solid var(--gray-light);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .price-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      min-width: 720px;
    }

    .price-table thead th {
      background: var(--black);
      color: var(--white);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.3px;
      text-align: left;
      padding: 14px 16px;
      white-space: nowrap;
    }

    .price-table thead th:first-child { border-top-left-radius: 0; }
    .price-table thead th:last-child { border-top-right-radius: 0; }

    .price-table tbody tr {
      border-bottom: 1px solid var(--gray-light);
      transition: background-color 0.15s;
    }

    .price-table tbody tr:hover { background: #FFFEF7; }
    .price-table tbody tr:last-child { border-bottom: none; }

    .price-table td {
      padding: 14px 16px;
      vertical-align: middle;
    }

    .price-table .pt-flag {
      font-size: 22px;
      line-height: 1;
    }

    .price-table .pt-country {
      font-weight: 800;
      color: var(--black);
      font-size: 15px;
    }

    .price-table .pt-operators {
      font-size: 12px;
      color: var(--gray);
      margin-top: 2px;
    }

    .price-table .pt-price {
      font-weight: 700;
      color: var(--black);
      white-space: nowrap;
    }

    .price-table .pt-price-best {
      color: #16A34A;
    }

    .price-table .pt-empty { color: #C7C7C7; font-weight: 500; }

    .price-table-footer {
      padding: 14px 16px;
      background: var(--gray-light);
      font-size: 12px;
      color: var(--gray);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .price-table-footer .pt-updated {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .price-table-footer .pt-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #16A34A;
      box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
    }

    @media (max-width: 768px) {
      .price-table { font-size: 12.5px; min-width: 640px; }
      .price-table thead th { padding: 11px 12px; font-size: 11.5px; }
      .price-table td { padding: 11px 12px; }
      .price-table .pt-flag { font-size: 18px; }
      .price-table .pt-country { font-size: 14px; }
    }

    /* ─── SUPPORT/CONTACTS BLOCK (компенсирует отсутствие телефона) ─── */
    .support-block {
      background: linear-gradient(135deg, #FFFEF5 0%, #FFF9D6 100%);
      border: 1.5px solid #FFE680;
      border-radius: var(--radius);
      padding: 28px;
      margin-top: 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .support-col h3 {
      font-size: 16px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .support-col p, .support-col li {
      font-size: 14px;
      color: #374151;
      line-height: 1.6;
    }

    .support-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .support-col ul li {
      padding: 4px 0;
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .support-col ul li::before {
      content: '✓';
      color: #16A34A;
      font-weight: 800;
    }

    .support-col strong { color: var(--black); }

    @media (max-width: 768px) {
      .support-block { grid-template-columns: 1fr; padding: 22px; gap: 20px; }
    }
