:root {
  /* --- НОВАЯ ТЕМНАЯ НЕОНОВАЯ ПАЛИТРА --- */
  --bg-dark: #0a0712;
  --bg-surface: #130f26;
  --bg-card: rgba(25, 20, 48, 0.65);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.3);

  /* Neon Palette */
  --primary: #8b5cf6;     /* Электрический фиолетовый */
  --secondary: #ec4899;   /* Неоново-розовый */
  --cyan: #06b6d4;        /* Яркий циан */
  --emerald: #10b981;     /* Изумрудный для семейных */
  --amber: #f59e0b;       /* Янтарный для золотых рейтингов */
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* --- МАППИНГ (СВЯЗЫВАНИЕ) СТАРЫХ ПЕРЕМЕННЫХ ПОД НОВУЮ СХЕМУ --- */
  --primary-color: var(--primary);      /* Вместо бирюзового — фиолетовый */
  --secondary-color: var(--secondary);  /* Вместо мятного — розовый */
  --light-bg: var(--bg-dark);           /* Вместо светлого фона — глубокий темный */
  --dark-text: var(--text-main);        /* Вместо темного текста — светлый неоновый */
  --white: var(--bg-surface);           /* Вместо чисто белого — цвет поверхностей */

  /* Внутренние компоненты из старой схемы */
  --card-bg: var(--bg-card);
  --card-hover: rgba(35, 28, 66, 0.85);
  --border-light: var(--border-color);
  --glass-blur: blur(20px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: var(--light-bg);
  background-image:
          radial-gradient(
                  circle at 10% 20%,
                  rgba(43, 103, 119, 0.08) 0%,
                  transparent 45%
          ),
          radial-gradient(
                  circle at 90% 80%,
                  rgba(82, 171, 152, 0.06) 0%,
                  transparent 45%
          );
  color: var(--dark-text);
}

/* --- BACKGROUND CROWNS --- */
.background-crowns-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.08;
}

.bg-crown {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(43, 103, 119, 0.3))
  drop-shadow(0 0 45px rgba(82, 171, 152, 0.15));
  transition: 0.5s ease;
}

/* --- DESKTOP POSITIONS --- */
.crown-1 { top: -2%; left: -2%; width: 18%; transform: rotate(-15deg); }
.crown-2 { top: 2%; right: -2%; width: 16%; transform: rotate(20deg); }
.crown-3 { top: 45%; left: -4%; width: 14%; transform: translateY(-50%) rotate(-10deg); }
.crown-4 { top: 45%; right: -3%; width: 15%; transform: translateY(-50%) rotate(15deg); }
.crown-5 { bottom: -2%; left: 5%; width: 20%; transform: rotate(-5deg); }
.crown-6 { bottom: 0%; right: 2%; width: 18%; transform: rotate(25deg); }
.crown-7 { top: 15%; left: 50%; width: 10%; transform: translateX(-50%) rotate(5deg); opacity: 0.5; }

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

/* --- HEADER SECTION --- */
.header-section {
  position: relative;
  text-align: center;
  padding: 50px 20px 20px;
  margin-bottom: 20px;
}

.header-overlay img {
  width: 120px;
  filter: drop-shadow(0 0 18px rgba(43, 103, 119, 0.4))
  drop-shadow(0 0 40px rgba(82, 171, 152, 0.2));
}

.header-overlay img:hover {
  transform: scale(1.05);
}

/* H1 */
.header-section h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -1px;
  margin-top: -5px;
  background: linear-gradient(
          110deg,
          var(--primary-color) 30%,
          var(--secondary-color) 50%,
          var(--primary-color) 70%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(43, 103, 119, 0.2));
  animation: textShimmer 3.5s linear infinite;
}

@keyframes textShimmer {
  0%   { background-position: 0% center; }
  40%  { background-position: 100% center; }
  100% { background-position: 100% center; }
}

/* --- UPDATE STATUS --- */
.update-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(
          90deg,
          rgba(43, 103, 119, 0.08),
          rgba(82, 171, 152, 0.12)
  );
  color: var(--primary-color);
  border: 1px solid rgba(43, 103, 119, 0.35);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
          0 0 20px rgba(43, 103, 119, 0.1),
          inset 0 0 10px rgba(82, 171, 152, 0.05);
  backdrop-filter: blur(5px);
}

.intro-container {
  max-width: 1400px;
  margin: 10px auto;
}

.intro-content p {
  color: #4a6a69;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 12px;
}

.intro-1 {
  font-size: 1.2rem !important;
  color: var(--dark-text) !important;
}

/* FEATURE BADGES */
.feature-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-text);
  background: rgba(43, 103, 119, 0.03);
  border: 1px solid rgba(43, 103, 119, 0.25);
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(5px);
  white-space: nowrap;
}

.badge-item:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 171, 152, 0.7);
  box-shadow: 0 8px 25px rgba(43, 103, 119, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.badge-item span {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(43, 103, 119, 0.3);
}

/* --- OFFERS LIST --- */
.offers-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.offer-row {
  display: grid;
  grid-template-columns: 260px 1fr 400px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  transition:
          transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
          box-shadow 0.4s ease,
          border-color 0.3s ease,
          background 0.3s ease;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  position: relative;
}

.offer-row:hover {
  border-color: rgba(82, 171, 152, 0.55);
  box-shadow:
          0 20px 60px rgba(43, 103, 119, 0.12),
          0 0 0 1px rgba(82, 171, 152, 0.2) inset;
}

.brand-col {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(242, 242, 242, 0.5);
  border-right: 1px solid var(--border-light);
  position: relative;
  z-index: 2;
  background: rebeccapurple;
}

.brand-logo {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.offer-row:hover .brand-logo {
  transform: scale(1.05);
}

.brand-logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.08));
}

.pros-col {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.pros-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pros-list li {
  font-size: 0.95rem;
  color: #4a6a69;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.offer-row:hover .pros-list li {
  color: var(--dark-text);
}

.pros-list li::before {
  content: "✓";
  color: var(--secondary-color);
  margin-right: 12px;
  font-weight: 800;
  background: rgba(82, 171, 152, 0.12);
  min-width: 20px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-top: 2px;
}

.action-col {
  padding: 30px;
  background: rgba(43, 103, 119, 0.03);
  border-left: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.badge-tag {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(43, 103, 119, 0.3);
}

.welcome-label {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.8;
}

.offer-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.35;
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.payment-box {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 6px;
  padding: 4px 8px;
  width: 55px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  border: 1px solid rgba(43, 103, 119, 0.1);
  transition: opacity 0.3s;
}
.offer-row:hover .payment-box { opacity: 1; }

.pay-icon { width: 100%; height: 100%; object-fit: contain; }
.pay-pill {
  font-size: 0.7rem;
  background: rgba(43, 103, 119, 0.08);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 4px;
}

.claim-btn {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(43, 103, 119, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.claim-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.offer-row:hover .claim-btn::after { left: 100%; }

/* --- CARD DISCLAIMER --- */
.card-disclaimer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border-light);
  background: rgba(43, 103, 119, 0.03);
  padding: 12px 20px;
  font-size: 0.7rem;
  color: #7a9a99;
  text-align: center;
  line-height: 1.4;
}

/* --- INFO SECTION --- */
.info-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.info-card {
  background: rgba(43, 103, 119, 0.03);
  border: 1px solid var(--border-light);
  padding: 50px;
  border-radius: 24px;
}

.info-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-top: 8px;
  margin-bottom: 18px;
}

.info-card p {
  font-size: 1rem;
  color: #5a7a79;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* --- REVIEW CARD --- */
.rc {
  position: relative;
  border: 1px solid rgba(43, 103, 119, 0.18);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  background: rgba(43, 103, 119, 0.03);
}
.rc::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(82, 171, 152, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.rc::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(43, 103, 119, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Ribbon */
.rc-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 20px; left: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(43, 103, 119, 0.25);
  z-index: 3;
}
.rc-ribbon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

/* Hero zone */
.rc-hero {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 84px 40px 40px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(43, 103, 119, 0.08);
}
.rc-brand-logo-wrap {
  position: relative;
  background: rebeccapurple;
  border: 1px solid rgba(43, 103, 119, 0.1);
  border-radius: 18px;
  padding: 44px 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  overflow: visible;
}
.rc-brand-logo {
  max-width: 70%;
  max-height: 100px;
  display: block;
}
.rc-review-stamp {
  position: absolute;
  top: 0; left: 50%;
  width: 70px; max-width: 75%; height: auto;
  transform: translate(-50%, -50%) rotate(-3deg);
  transform-origin: center center;
  filter: drop-shadow(0 0 18px rgba(43, 103, 119, 0.4))
  drop-shadow(0 6px 14px rgba(0,0,0,0.2));
  pointer-events: none;
  z-index: 4;
  animation: rc-stamp-float 4s ease-in-out infinite;
}
@keyframes rc-stamp-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-3deg); }
  50%       { transform: translate(-50%, -54%) rotate(-1.5deg); }
}

.info-card:has(> .rc-section-banner) {
  position: relative;
  padding-top: 90px;
}
.rc-section-banner {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin: 0; pointer-events: none;
}
.rc-section-banner::before,
.rc-section-banner::after { content: ""; width: 80px; height: 1px; }
.rc-section-banner img {
  width: 150px; max-width: 60vw; height: auto;
  filter: drop-shadow(0 0 24px rgba(43, 103, 119, 0.4))
  drop-shadow(0 10px 22px rgba(0,0,0,0.2));
}

.rc-brand-info { min-width: 0; }
.rc-bonus-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(43, 103, 119, 0.08);
  border: 1px solid rgba(43, 103, 119, 0.2);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.rc-bonus-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.rc-bonus-title .highlight {
  color: var(--secondary-color);
  font-weight: 800;
}

/* Score circle */
.rc-score {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--secondary-color), var(--primary-color) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
          0 0 0 6px rgba(43, 103, 119, 0.12),
          0 10px 30px rgba(43, 103, 119, 0.25);
  position: relative;
}
.rc-score::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.35);
}
.rc-score-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.rc-score-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Chips */
.rc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 40px 0;
  position: relative;
  z-index: 2;
}
.rc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 103, 119, 0.05);
  border: 1px solid rgba(43, 103, 119, 0.18);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-text);
}
.rc-chip-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}
.rc-chip-dot::before { content: "✓"; }

/* Body */
.rc-body {
  padding: 28px 40px;
  position: relative;
  z-index: 2;
}
.rc-body p {
  color: #4a6a69;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.rc-pullquote {
  border-left: 3px solid var(--secondary-color);
  padding: 12px 16px;
  margin: 20px 0;
  background: rgba(82, 171, 152, 0.06);
  border-radius: 0 10px 10px 0;
  font-weight: 600 !important;
  color: var(--dark-text) !important;
  font-size: 0.95rem !important;
}
.rc-fineprint {
  font-size: 0.72rem !important;
  color: #8aadac !important;
  line-height: 1.6 !important;
  padding-top: 12px;
  border-top: 1px dashed rgba(43, 103, 119, 0.12);
}

/* Pros/Cons */
.rc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 2;
}
.rc-split-col { padding: 28px 32px; }
.rc-split-col.pros {
  background: rgba(82, 171, 152, 0.04);
  border-top: 1px solid rgba(82, 171, 152, 0.15);
}
.rc-split-col.cons {
  background: rgba(43, 103, 119, 0.03);
  border-top: 1px solid rgba(43, 103, 119, 0.12);
  border-left: 1px solid rgba(43, 103, 119, 0.08);
}
.rc-split-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rc-split-col.pros .rc-split-title { color: var(--secondary-color); }
.rc-split-col.cons .rc-split-title { color: #ef4444; }

.rc-split-title-icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}
.rc-split-col.pros .rc-split-title-icon {
  background: rgba(82, 171, 152, 0.12);
  color: var(--secondary-color);
}
.rc-split-col.cons .rc-split-title-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.rc-split-col ul { list-style: none; padding: 0; margin: 0; }
.rc-split-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #4a6a69;
  padding: 7px 0;
}
.rc-split-col li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rc-split-col.pros li::before { background: var(--secondary-color); }
.rc-split-col.cons li::before { background: #ef4444; }

/* Footer CTA */
.rc-footer {
  padding: 28px 40px 36px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(82, 171, 152, 0.04));
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(43, 103, 119, 0.08);
}
.rc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 120%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 48px;
  border-radius: 999px;
  border: 1px solid rgba(82, 171, 152, 0.5);
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  box-shadow:
          0 10px 30px rgba(43, 103, 119, 0.3),
          inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.rc-cta:hover {
  transform: translateY(-2px);
  box-shadow:
          0 14px 40px rgba(43, 103, 119, 0.45),
          inset 0 1px 0 rgba(255,255,255,0.2);
}
.rc-cta-arrow { font-size: 1.1rem; transition: transform 0.2s; }
.rc-cta:hover .rc-cta-arrow { transform: translateX(4px); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .rc-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 70px 20px 28px;
    text-align: center;
  }
  .rc-brand-logo { max-width: 70%; }
  .rc-brand-logo-wrap { padding: 20px; min-height: 120px; }
  .rc-brand-logo { max-height: 70px; margin: 0 auto; }
  .rc-review-stamp { width: 60px; }
  .info-card:has(> .rc-section-banner) { padding-top: 60px; }
  .rc-section-banner img { width: 110px; }
  .rc-section-banner { gap: 10px; }
  .rc-section-banner::before,
  .rc-section-banner::after { width: 36px; }
  .rc-bonus-label { margin: 0 auto 12px; }
  .rc-bonus-title { font-size: 1.15rem; }
  .rc-score {
    position: absolute;
    top: 14px; right: 14px;
    width: auto; height: auto;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(43, 103, 119, 0.3);
    border-radius: 10px;
    padding: 6px 10px 6px 8px;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    z-index: 3;
    backdrop-filter: blur(4px);
  }
  .rc-score::before {
    content: "★";
    position: static; inset: auto;
    border: none; border-radius: 0;
    color: var(--secondary-color);
    font-size: 0.95rem; line-height: 1;
    display: inline-flex;
  }
  .rc-score-num {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
  }
  .rc-score-label { display: none; }
  .rc-score-num::after {
    content: " / 10";
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(31,62,61,0.45);
    margin-left: 2px;
  }
  .rc-bonus-label { font-size: 0.6rem; padding: 4px 8px; }
  .rc-chips { padding: 18px 18px 0; gap: 6px; }
  .rc-chip { font-size: 0.72rem; padding: 6px 10px; gap: 6px; }
  .rc-chip-dot { width: 13px; height: 13px; font-size: 0.55rem; }
  .rc-body { padding: 18px; }
  .rc-body p { font-size: 0.82rem; line-height: 1.65; margin-bottom: 10px; }
  .rc-pullquote { padding: 10px 12px; margin: 14px 0; font-size: 0.82rem !important; }
  .rc-fineprint { font-size: 0.65rem !important; padding-top: 10px; }
  .rc-split { grid-template-columns: 1fr; }
  .rc-split-col { padding: 18px; }
  .rc-split-col.cons { border-left: none; border-top: 1px solid rgba(43,103,119,0.08); }
  .rc-split-title { font-size: 0.65rem; margin-bottom: 12px; gap: 8px; }
  .rc-split-title-icon { width: 22px; height: 22px; font-size: 0.72rem; }
  .rc-split-col li { font-size: 0.78rem; padding: 5px 0; gap: 8px; }
  .rc-split-col li::before { width: 5px; height: 5px; margin-top: 7px; }
  .rc-footer { padding: 18px 18px 24px; }
  .rc-cta {
    display: flex; width: 100%; padding: 14px 20px;
    font-size: 0.9rem; letter-spacing: 0.06em; justify-content: center;
  }
  .rc-cta-arrow { display: none; }
  .rc-ribbon {
    top: 14px; left: 14px; padding: 5px 10px 5px 8px;
    font-size: 0.65rem; max-width: calc(100% - 130px);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .rc-ribbon-icon { width: 22px; height: 20px; font-size: 0.65rem; flex-shrink: 0; }
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--primary-color);
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(43, 103, 119, 0.2);
}

.footer-content { max-width: 1400px; margin: 0 auto; }
.footer-disclaimer-title {
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-disclaimer-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.footer-disclaimer-text strong { color: rgba(255,255,255,0.9); }
.footer-logos { display: flex; flex-wrap: wrap; gap: 40px; margin: 50px 0; opacity: 0.7; }
.footer-logos img { height: 30px; width: auto; filter: grayscale(100%); transition: 0.3s; }
.footer-logos:hover img { filter: grayscale(0%); opacity: 1; }
.footer-bottom-divider { border-top: 1px solid rgba(255,255,255,0.12); margin: 40px 0; }
.footer-copyright { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* --- RESPONSIVE OFFERS --- */
@media (max-width: 1024px) {
  .offer-row { grid-template-columns: 220px 1fr 320px; }
  .header-section h1 { font-size: 2.8rem; }
  .crown-1 { width: 14%; } .crown-2 { width: 14%; }
  .crown-3 { width: 12%; } .crown-4 { width: 12%; }
  .crown-5 { width: 15%; } .crown-6 { width: 15%; }
}

@media (max-width: 900px) {
  .offer-row { display: flex; flex-direction: column; }
  .brand-col { border: none; border-bottom: 1px solid var(--border-light); padding: 25px; order: 1; }
  .action-col { background: rgba(43, 103, 119, 0.03); border: none; border-bottom: 1px solid var(--border-light); padding: 25px; order: 2; }
  .pros-col { border: none; padding: 25px; order: 3; }
  .card-disclaimer { order: 4; padding: 12px 15px; }
  .brand-logo { height: 100px; margin-bottom: 0; }
  .pros-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-section { padding: 40px 15px; }
  .header-section h1 { font-size: 2.2rem; }
  .pros-list { grid-template-columns: 1fr; }
  .feature-badges { gap: 5px; overflow-x: hidden; flex-wrap: nowrap; justify-content: center; width: 100%; }
  .feature-badges::-webkit-scrollbar { display: none; }
  .badge-item { padding: 6px 8px; gap: 5px; font-size: 0.65rem; border-radius: 8px; }
  .badge-item span { width: 16px; height: 16px; font-size: 0.55rem; }
  .intro-content p { font-size: 0.95rem; }
  .info-card { padding: 30px; }
  .info-card h2 { font-size: 1.4rem; }
  .crown-1 { top: 2%; left: -15%; width: 40%; transform: rotate(-20deg); opacity: 0.06; }
  .crown-2 { top: 25%; right: -15%; width: 35%; transform: rotate(20deg); }
  .crown-3 { top: 60%; left: -10%; width: 30%; transform: rotate(-10deg); }
  .crown-4 { top: auto; bottom: 5%; right: -10%; width: 35%; transform: rotate(15deg); }
  .crown-5, .crown-6, .crown-7 { display: none; }
}

@media (max-width: 480px) {
  .payment-box { width: 50px; }
  .info-card { padding: 15px; }
  .info-card p { font-size: 0.8rem; }
  .header-section h1 { font-size: 1.8rem; margin-top: -5px; }
  .offer-text { font-size: 1rem; }
  .claim-btn { padding: 14px; font-size: 0.9rem; }
  .brand-logo img { max-height: 80px; }
  .offer-text { margin-bottom: 10px; }
  .payment-row { margin-bottom: 10px; }
  .header-section { padding: 10px 10px; padding-bottom: 0px; margin-bottom: 5px !important; }
  .intro-content p > strong { font-size: 0.65rem !important; margin-bottom: 5px; }
  .intro-content p { font-size: 0.65rem; margin-bottom: 5px; }
  .intro-container { margin: 10px auto; margin-top: 0px; padding-left: 10px; padding-right: 10px; }
  .feature-badges { margin-top: 5px; }
  .update-status { font-size: 0.65rem; padding: 6px 12px; margin: 5px; }
  .brand-col { padding: 0px; }
  .pros-col { padding: 10px; }
  .pros-list li { font-size: 0.85rem; }
  .badge-tag { font-size: 0.6rem; }
  .brand-logo img { max-height: 110px; }
  .header-overlay img { width: 100px; }
  .badge-item span { width: 11px; height: 11px; }
  .badge-item { padding: 5px 5px; }
  .card-disclaimer { font-size: 0.6rem; }
}

@media (max-width: 414px) {
  .brand-logo img { width: 100px; }
  .badge-item { gap: 3px; font-size: 0.55rem; }
  .update-status { font-size: 0.5rem; padding: 4px 10px; margin: 3px; }
  .badge-tag { margin-bottom: 10px; }
  .pros-list { gap: 5px; }
  .header-section { padding: 5px 0px; margin-bottom: 10px; }
  .action-col { padding: 15px; }
  .intro-content p:first-child { margin-bottom: 0px; }
  .pros-list li { font-size: 0.75rem; }
  .header-overlay img { width: 80px; }
}

/* --- STICKY MOBILE CTA --- */
.sticky-mobile-cta {
  display: block;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  padding: 14px 16px 14px;
  background:
          radial-gradient(circle at 0% 0%, rgba(43, 103, 119, 0.1) 0%, transparent 55%),
          linear-gradient(180deg, rgba(242,242,242,0.97) 0%, rgba(255,255,255,0.98) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(43, 103, 119, 0.2);
  box-shadow: 0 -10px 32px rgba(0,0,0,0.08);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-mobile-cta::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 30%, var(--primary-color) 50%, var(--secondary-color) 70%, transparent 100%);
  background-size: 200% 100%;
  animation: stickyShimmer 3s linear infinite;
  opacity: 0.9;
  pointer-events: none;
}
@keyframes stickyShimmer {
  0%   { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-mobile-cta__head { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 10px; }
.sticky-mobile-cta__logo { height: 40px; object-fit: cover; flex-shrink: 0; }
.sticky-mobile-cta__pill {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 6px 12px; border-radius: 999px;
  background: rgba(43, 103, 119, 0.08);
  border: 1px solid rgba(43, 103, 119, 0.25);
  color: var(--primary-color);
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-mobile-cta__live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--secondary-color);
  box-shadow: 0 0 8px rgba(82, 171, 152, 0.7);
  animation: stickyLivePulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes stickyLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
.sticky-mobile-cta .claim-btn { display: block; width: 100%; padding: 13px; font-size: 0.95rem; text-align: center; }
.sticky-mobile-cta .sticky-disclaimer { text-align: center; color: #7a9a99; font-size: 0.6rem; line-height: 1.4; margin-top: 8px; }

@media (min-width: 769px) {
  .sticky-mobile-cta {
    left: 50%; right: auto; bottom: 18px;
    width: min(1060px, calc(100vw - 32px));
    max-width: none; border-radius: 20px; border: none;
    padding: 18px 28px 14px; overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,0.1), 0 0 32px rgba(43,103,119,0.1);
    display: block;
    transform: translate(-50%, calc(100% + 40px));
  }
  .sticky-mobile-cta.visible { transform: translate(-50%, 0); }
  .sticky-mobile-cta::before {
    top: 0; left: 0; right: 0; bottom: 0; height: auto;
    padding: 2px; border-radius: inherit;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 25%, var(--secondary-color) 50%, var(--primary-color) 75%, var(--secondary-color) 100%);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
  }
  .sticky-mobile-cta__head { flex-direction: row; align-items: center; justify-content: center; gap: 14px; margin-bottom: 12px; }
  .sticky-mobile-cta__logo { height: 38px; }
  .sticky-mobile-cta__pill { font-size: 0.65rem; padding: 6px 12px; }
  .sticky-mobile-cta .claim-btn { width: auto; max-width: 420px; padding: 13px 40px; font-size: 0.95rem; white-space: nowrap; }
  .sticky-mobile-cta .sticky-disclaimer { display: block; text-align: center; margin-top: 8px; font-size: 0.68rem; }
}

/* --- EXIT POPUP --- */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(31, 62, 61, 0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.exit-popup-overlay.visible { opacity: 1; visibility: visible; }
.exit-popup {
  position: relative;
  max-width: 440px; width: 100%;
  background:
          radial-gradient(circle at 50% -10%, rgba(82, 171, 152, 0.15) 0%, transparent 55%),
          linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(242,242,242,0.98) 100%);
  border: 1px solid rgba(43, 103, 119, 0.25);
  border-radius: 28px; overflow: hidden;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 0 80px rgba(43,103,119,0.1);
}
.exit-popup::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 30%, var(--primary-color) 50%, var(--secondary-color) 70%, transparent 100%);
  background-size: 200% 100%;
  animation: popupShimmer 3s linear infinite;
  z-index: 3; pointer-events: none;
}
@keyframes popupShimmer {
  0%   { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}
.exit-popup-overlay.visible .exit-popup { transform: translateY(0) scale(1); }
.exit-popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(43, 103, 119, 0.08);
  border: 1px solid rgba(43, 103, 119, 0.2);
  color: var(--dark-text); cursor: pointer;
  font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-family: "Inter", sans-serif; z-index: 5;
}
.exit-popup-close:hover { background: rgba(43, 103, 119, 0.15); color: var(--primary-color); transform: rotate(90deg); }
.exit-popup__inner { padding: 38px 32px 28px; text-align: center; position: relative; z-index: 2; }
.exit-popup__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(82, 171, 152, 0.1);
  border: 1px solid rgba(82, 171, 152, 0.35);
  color: var(--primary-color);
  font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 18px;
}
.exit-popup__eyebrow::before,
.exit-popup__eyebrow::after { content: "\2605"; font-size: 0.7rem; line-height: 1; }
.exit-popup__logo { height: 46px; width: auto; margin: 0 auto 18px; display: block; }
.exit-popup__headline {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1rem, 5vw, 1.5rem); font-weight: 900;
  line-height: 1.1; margin: 0 0 8px;
  text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap;
  animation: popupHeadlineGradient 4.5s linear infinite;
}
@keyframes popupHeadlineGradient {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.exit-popup__sub { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin: 0 0 22px; }
.exit-popup__offer {
  position: relative;
  background: linear-gradient(135deg, rgba(82,171,152,0.07) 0%, rgba(43,103,119,0.05) 100%);
  border: 1px solid rgba(82, 171, 152, 0.25);
  border-radius: 18px; padding: 22px 18px 18px; margin-bottom: 22px; overflow: hidden;
}
.exit-popup__offer::before {
  content: "";
  position: absolute; top: -50%; left: -40%; width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(20deg);
  animation: popupOfferSweep 4.5s ease-in-out infinite; pointer-events: none;
}
@keyframes popupOfferSweep {
  0%, 100% { left: -50%; }
  55%, 100% { left: 130%; }
}
.exit-popup__amount { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 14px; position: relative; z-index: 2; }
.exit-popup__amount-block { text-align: center; }
.exit-popup__amount-value {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.85rem; font-weight: 900; line-height: 1; letter-spacing: -0.02em;
}
.exit-popup__amount-label { color: #7a9a99; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 6px; font-weight: 700; }
.exit-popup__amount-plus { color: var(--secondary-color); font-size: 1.5rem; font-weight: 800; line-height: 1; margin-top: -10px; }
.exit-popup__benefits {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; position: relative; z-index: 2;
}
.exit-popup__benefits li {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 8px; padding: 12px 10px; text-align: center;
  color: var(--dark-text); font-size: 0.75rem; font-weight: 600; line-height: 1.35;
  background: rgba(43, 103, 119, 0.04);
  border: 1px solid rgba(43, 103, 119, 0.15); border-radius: 12px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.exit-popup__benefits li:hover { background: rgba(43, 103, 119, 0.08); border-color: rgba(43,103,119,0.3); transform: translateY(-2px); }
.exit-popup__benefits li::before {
  content: "\2713";
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: #fff; font-size: 0.75rem; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(43,103,119,0.25);
}
@media (max-width: 420px) {
  .exit-popup__benefits { grid-template-columns: 1fr; }
  .exit-popup__benefits li { flex-direction: row; justify-content: flex-start; text-align: left; padding: 10px 14px; }
}
.exit-popup .claim-btn { display: block; width: 100%; padding: 16px; font-size: 1rem; text-align: center; }
.exit-popup-disclaimer { text-align: center; color: #8aadac; font-size: 0.6rem; line-height: 1.5; margin-top: 14px; }
@media (max-width: 480px) {
  .exit-popup { border-radius: 22px; }
  .exit-popup__inner { padding: 32px 22px 24px; }
  .exit-popup__logo { height: 40px; }
  .exit-popup__sub { font-size: 0.8rem; }
  .exit-popup__amount-value { font-size: 1.55rem; }
  .exit-popup__amount-plus { font-size: 1.3rem; }
  .exit-popup__benefits li { font-size: 0.73rem; }
}