/* SpinWin — Golden Sun Theme (cb- prefixed) */
/* ================= RESET ================= */
* {box-sizing: border-box;margin:0;padding:0}
html,body{height:100%}
.cb-body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #fff9e5;
  color: #5a3e00;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ================= CONTAINER ================= */
.cb-container { max-width:1200px;margin:0 auto;padding:0 20px;}

/* ================= HEADER ================= */
.cb-header { 
  position:sticky; top:0; z-index:50; 
  background: linear-gradient(180deg,#fffbe0,#fff4b3); 
  box-shadow:0 6px 20px rgba(255,200,0,0.08); 
}
.cb-header-row { display:flex;align-items:center;justify-content:space-between;padding:14px ; gap:16px; }
.cb-brand { display:flex; align-items:center; gap:12px; color:#7a5c00; text-decoration:none; font-weight:800; }
.cb-logo { font-size:26px; transform:translateY(-2px) }
.cb-site-name { font-size:1.25rem; letter-spacing:0.4px }
.cb-site-name span { color:#ffd700 } 

.cb-nav { display:flex; gap:20px; align-items:center; }
.cb-nav a { color:#7a5c00; font-weight:700; padding:8px 10px; border-radius:8px; transition:all .18s; text-decoration:none; }
.cb-nav a:hover { background: rgba(255,215,0,0.06); transform:translateY(-2px) }

.cb-burger { display:none; width:42px;height:36px; background:transparent;border:none; cursor:pointer; padding:6px; align-items:center; justify-content:center; }
.cb-burger span { display:block; height:3px; background:#7a5c00; border-radius:3px; margin:5px 0; transition:all .25s }
.cb-burger.active span:nth-child(1){ transform:rotate(45deg) translate(6px,6px); background:#ffd700; }
.cb-burger.active span:nth-child(2){ opacity:0; transform:translateX(-10px) }
.cb-burger.active span:nth-child(3){ transform:rotate(-45deg) translate(6px,-6px); background:#ffd700; }

/* ================= HERO ================= */
.cb-hero { position: relative; background-size: cover; background-attachment: fixed; background-position: center; min-height: 100vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.cb-hero-overlay { position: absolute; inset: 0; background: rgb(0 0 0 / 40%); backdrop-filter: blur(2px); z-index: 1; }
.cb-hero-inner { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 60px; padding: 100px 0; }
.cb-hero-left { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center;}
.cb-kicker { display: inline-block; background: linear-gradient(135deg, #ffd700, #f7d84a); color: #5a3e00; font-weight: 700; border-radius: 999px; padding: 6px 14px; font-size: 0.9rem; letter-spacing: 0.6px; text-transform: uppercase; }
.cb-hero-title { text-align: center;font-size: 2.8rem; font-weight: 800; color: #fff; margin: 20px 0 15px; line-height: 1.2; text-shadow: 0 4px 20px rgba(255,200,0,0.5); }
.cb-hero-lead { font-size: 1.1rem; color: #fffbe0; line-height: 1.7; margin-bottom: 35px; max-width: 700px; text-align: center;}
.cb-hero-ctas { display: flex; flex-direction: row; gap: 16px; }
.cb-btn { padding: 12px 28px; border-radius: 999px; font-weight: 700; text-decoration: none; transition: all 0.3s ease; }
.cb-btn-cta { background: linear-gradient(135deg, #ffd700, #f7d84a); color: #5a3e00; box-shadow: 0 6px 20px rgba(255,200,0,0.4); }
.cb-btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,200,0,0.6); }
.cb-btn-line { border: 2px solid #ffd700; color: #ffd700; background: transparent; }
.cb-btn-line:hover { background: #ffd700; color: #5a3e00; }
.cb-hero-right { flex: 1; display: flex; justify-content: center; }
.cb-hero-image { width: 100%; max-width: 420px; animation: floatCard 4s ease-in-out infinite; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.cb-offers {
  background: radial-gradient(circle at top left, #fff9e5 0%, #fff1b0 60%, #ffd700 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.cb-offers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at top left, rgba(255, 223, 0, 0.1) 0 5px, transparent 5px 15px);
  pointer-events: none;
  animation: sparkleOverlay 8s linear infinite;
  z-index: 0;
}
@keyframes sparkleOverlay {
  0% { transform: translate(0,0); }
  100% { transform: translate(100px,100px); }
}

/* Section Head */
.cb-section-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.cb-kicker-small {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #ffd700;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.cb-section-title {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd700, #ffeb7f, #f7d84a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  
}
.cb-section-sub {
  font-size: 1rem;
  color: #5a3e00;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.2);
}

/* Highlighted Offer Card */
.cb-offer-highlight {
  position: relative;
  background: linear-gradient(145deg, #fff9e5, #fff1b0 60%, #ffd700);
  border-radius: 30px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.35), 0 0 80px rgba(255, 223, 0, 0.25) inset;
  transition: all 0.4s ease;
  z-index: 1;
}
.cb-offer-highlight:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 80px rgba(255, 215, 0, 0.5), 0 0 120px rgba(255, 223, 0, 0.35) inset;
}

/* Banner */
.cb-offer-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #ffd700 0%, #fff8c0 100%);
  padding: 20px 20px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  flex-wrap: wrap;
  gap: 15px;
}
.cb-offer-logo {
  width: 140px;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}
.cb-offer-rating {
  text-align: right;
}
.cb-stars {
  color: #b09711;
  font-size: 1.3rem;
  text-shadow: 0 2px 6px rgba(255, 215, 0, 0.5);
}
.cb-score {
  color: #5a3e00;
  font-weight: 700;
  display: block;
  font-size: 1rem;
}

/* Offer Content */
.cb-offer-content {
  padding: 20px 0 0;
}
.cb-offer-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #5a3e00;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 3px 8px rgba(255, 215, 0, 0.35);
}
.cb-offer-desc {
  font-size: 1rem;
  color: #5a3e00;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.2);
}

/* Features */
.cb-offer-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cb-offer-features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 223, 0, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: #5a3e00;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.2);
}
.cb-offer-features li:hover {
  background: rgba(255, 215, 0, 0.3);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.35);
}
.cb-offer-features i {
  color: #ffd700;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(255, 215, 0, 0.5);
}

/* CTA Button */
.cb-btn-gold {
  background: linear-gradient(135deg, #ffd700, #fff8c0);
  color: #5a3e00;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  text-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.35);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cb-btn-gold:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 38px rgba(255, 215, 0, 0.55), 0 0 60px rgba(255, 223, 0, 0.35) inset;
}

/* Legal Text */
.cb-legal {
  display: block;
  margin-top: 10px;
  color: #5a3e00;
  font-size: 0.8rem;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.25);
}
/* ================= ABOUT & FEATURES ================= */
.cb-features-block {
  background: radial-gradient(circle at top left, #fff9e5 0%, #fff1b0 60%, #ffd700 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.cb-about {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: #1a1200;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.cb-values {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #fff;
  font-family: "Inter", sans-serif;
}

.cb-values-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cb-values-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.cb-section-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cb-text-muted {
  color: #fff5d7;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.cb-btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border: 2px solid #ffd700;
  border-radius: 30px;
  color: #ffd700;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cb-btn-gold-outline:hover {
  background: #ffd700;
  color: #1a1a1a;
}

.cb-checklist li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  list-style: none;
}

.cb-text-gold {
  color: #ffd700;
  margin-right: 10px;
}

.cb-about-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}
.cb-about-modern {
  padding: 100px 20px;
  background: #1e1e1e;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.cb-about-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.cb-about-row.cb-reverse {
  flex-direction: row-reverse;
}

.cb-about-text {
  flex: 1;
}

.cb-about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
}

.cb-about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #fff5d7;
}

.cb-about-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cb-about-features li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.cb-about-features i {
  color: #ffd700;
}

.cb-about-img {
  flex: 1;
  text-align: center;
}

.cb-about-image {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* График */
.cb-about-graph {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.cb-graph {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  height: 200px;
}

.cb-bar {
  width: 50px;
  background: linear-gradient(180deg, #ffd700 0%, #ffb800 100%);
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.cb-bar span {
  position: absolute;
  top: -25px;
  font-size: 0.85rem;
  color: #fff5d7;
  font-weight: 600;
}

.cb-bar:hover {
  transform: scale(1.05);
}

.cb-about-row.cb-reverse {
  flex-direction: row-reverse;
}

.cb-about-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cb-about-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.cb-about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff5d7;
}

.cb-about-img {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cb-about-image {
  max-width: 420px;
  width: 100%;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.4), 0 10px 40px rgba(0,0,0,0.25);
  transition: all 0.5s ease;
  transform: translateY(0);
}

.cb-about-image:hover {
  transform: translateY(-10px) scale(1.05) rotate(-1deg);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.6), 0 12px 50px rgba(0,0,0,0.35);
}

.cb-contact {
  position: relative;
  padding: 120px 20px;
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  background: #1a1200;
}

.cb-contact-parallax {
  position: absolute;
  inset: 0;
  background: url('img/contact-bg.jpg') center/cover no-repeat fixed;
  opacity: 0.2;
  z-index: 0;
}

.cb-contact-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.cb-contact-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffd700;
  margin: 15px 0;
  text-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.cb-contact-sub {
  font-size: 1.1rem;
  color: #fff5d7;
  max-width: 700px;
  margin: 0 auto;
}

.cb-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cb-contact-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.5s, box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}

.cb-contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.5), 0 10px 30px rgba(0,0,0,0.3);
}

.cb-contact-icon {
  font-size: 2.8rem;
  color: #ffd700;
  margin-bottom: 20px;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% { text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700; }
  100% { text-shadow: 0 0 20px #ffe877, 0 0 40px #ffd700; }
}

.cb-contact-card h4 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 10px;
}

.cb-contact-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff5d7;
}

.cb-btn.cb-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #ffd700, #ffe877);
  color: #1a1200;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cb-btn.cb-btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.8), 0 8px 30px rgba(0,0,0,0.3);
}
.cb-about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffe877, #ffd700);
  margin-top: 8px;
  border-radius: 2px;
  animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

@keyframes sparkleOverlayFeatures {
  0% { transform: translate(0,0); }
  100% { transform: translate(120px,120px); }
}

/* Section Top */
.cb-features-block-top {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.cb-kicker-small {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.cb-features-block-title {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd700, #ffeb7f, #f7d84a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.cb-features-block-sub {
  font-size: 1rem;
  color: #5a3e00;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.2);
}

/* Features Grid */
.cb-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Feature Card */
.cb-feature {
  position: relative;
  background: linear-gradient(145deg, #fff9e5, #fff1b0 60%, #ffd700);
  border-radius: 25px;
  padding: 25px 20px 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25), 0 0 60px rgba(255, 223, 0, 0.15) inset;
  transition: all 0.4s ease;
  overflow: hidden;
}
.cb-feature:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 60px rgba(255, 215, 0, 0.45), 0 0 80px rgba(255, 223, 0, 0.25) inset;
}

/* Glow Effect */
.cb-feature-glow {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 223, 0, 0.15) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
  transition: all 0.4s ease;
}
.cb-feature:hover .cb-feature-glow {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 60%);
  transform: scale(1.1);
}

/* Icon */
.cb-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  text-shadow: 0 2px 6px rgba(255, 215, 0, 0.5);
}

/* Feature Text */
.cb-feature h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #5a3e00;
  text-shadow: 0 2px 6px rgba(255, 215, 0, 0.35);
}
.cb-feature p {
  font-size: 0.95rem;
  color: #5a3e00;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.2);
}
/* ================= FAQ ================= */
.cb-faq { padding: 80px 0; background: linear-gradient(180deg,#fff8d1,#fff3a8); color:#5a3e00; }
.cb-faq h2 { font-size: 2rem; font-weight: 800; color: #5a3e00; margin-bottom: 40px; text-align:center; }
.cb-faq-item { border-bottom: 1px solid rgba(255,215,0,0.3); padding: 18px 0; cursor: pointer; transition: all 0.25s ease; }
.cb-faq-item:hover { background: rgba(255,215,0,0.05); }
.cb-faq-question { font-weight: 700; color:#5a3e00; display:flex; justify-content: space-between; align-items:center; }
.cb-faq-answer { color: #7a5c00; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; line-height:1.6; padding-top:0; }

/* ================= FOOTER ================= */
.cb-footer { padding: 60px 20px; background: #fff4b3; color: #5a3e00; text-align: center; }
.cb-footer-links { display:flex; justify-content:center; flex-wrap:wrap; gap:24px; margin-bottom:25px; }
.cb-footer-links a { color: #7a5c00; font-weight:600; transition: all 0.2s; text-decoration:none; }
.cb-footer-links a:hover { color: #ffd700; }
.cb-footer-copy { font-size:0.85rem; color:#5a3e00; opacity:0.8; }

/* ================= POPUPS ================= */
.cb-popup { position: fixed; inset: 0; background: rgba(255,215,0,0.12); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; z-index: 999; opacity: 0; pointer-events: none; transition: all 0.3s ease; }
.cb-popup.active { opacity: 1; pointer-events: all; }
.cb-popup-inner { background: #fff9e5; border-radius: 16px; padding: 28px 36px; max-width: 520px; width: 100%; box-shadow: 0 8px 28px rgba(255,215,0,0.25); }
.cb-popup-close { position: absolute; top: 16px; right: 16px; background: transparent; border:none; font-size:1.3rem; color:#5a3e00; cursor:pointer; }

.cb-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}
.cb-faq {
  position: relative;
  padding: 120px 20px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.cb-parallax-bg {
  position: absolute;
  inset: 0;
  background: url('../img/faq-bg.jpg') center/cover no-repeat;
  transform: translateZ(0);
  z-index: 0;
  opacity: 0.1;
}

.cb-section-head {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.cb-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255,215,0,0.4);
  margin: 20px 0;
}



.cb-faq-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cb-faq-item {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cb-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255,215,0,0.25);
}

.cb-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 25px 30px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cb-faq-question i {
  font-size: 1.4rem;
}

.cb-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  font-size: 1rem;
  line-height: 1.8;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.cb-faq-item.active .cb-faq-answer {
  max-height: 800px;
  padding: 20px 30px 30px;
}
.cb-footer-modern {
  background: #1b1b1b;
  color: #fff;
  font-family: "Inter", sans-serif;
  padding: 60px 20px 30px;
}
.cb-footer-modern a {
  color: #ffd700;
  text-decoration: none;
  transition: 0.3s;
}
.cb-footer-modern a:hover { color: #ffec99; }

/* Top Grid */
.cb-footer-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cb-footer-col { flex: 1 1 250px; }

.cb-footer-logo-link {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  display: inline-block;
  margin-bottom: 15px;
}
.cb-footer-desc { font-size: 0.95rem; margin-bottom: 15px; color: #fff5d7; }
.cb-footer-age { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #ffec99; }
.cb-footer-age img { border-radius: 10px; height: 50px; filter: brightness(1); }

.cb-footer-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; color: #ffd700; }

.cb-footer-links ul { list-style: none; padding: 0; margin: 0; }
.cb-footer-links ul li { margin-bottom: 10px; }

/* Logos */
.cb-footer-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.cb-footer-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #2b2b2b;
  border-radius: 10px;
  transition: 0.3s;
}
.cb-footer-logos a:hover { background: #3b3b3b; }
.cb-footer-logos img { max-height: 50px; filter: brightness(1); }

/* Middle Mini Features */
.cb-footer-middle {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}
.cb-footer-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #fff5d7;
  text-align: center;
}
.cb-footer-feature i {
  font-size: 1.5rem;
  color: #ffd700;
}

/* Bottom */
.cb-footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.cb-age-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.cb-age-popup.active {
  opacity: 1;
  visibility: visible;
}

.cb-popup-backdrop {
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(3px);
  top: 0; left: 0;
}

/* Card */
.cb-popup-card {
  position: relative;
  background: #1c1c1c;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  z-index: 10;
  text-align: center;
  transform: translateY(-50px);
  transition: 0.4s;
}
.cb-age-popup.active .cb-popup-card {
  transform: translateY(0);
}

/* Close Button */
.cb-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.4rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.cb-popup-close:hover { color: #ffd700; }

/* Header & Icon */
.cb-popup-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.cb-popup-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 10px;
}

/* Text */
.cb-popup-text {
  font-size: 1rem;
  color: #fff5d7;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.cb-popup-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.cb-btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.cb-btn-gold {
  background: linear-gradient(90deg, #ffd700, #ffec99);
  color: #1c1c1c;
  border: none;
}
.cb-btn-gold:hover {
  background: linear-gradient(90deg, #ffec99, #ffd700);
}
.cb-btn-ghost {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}
.cb-btn-ghost:hover {
  background: #ffd700;
  color: #1c1c1c;
}
.cb-privacy {
  background: radial-gradient(circle at top, #82660c 0%, #1f1b01 90%);
  color: #f7e6b5;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cb-privacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/gold-pattern.webp") center/cover no-repeat;
  opacity: 0.06;
  z-index: 0;
}

.cb-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.cb-privacy-intro {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #ffda6b, #fff3c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cb-privacy-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 30px 35px;
  margin-bottom: 25px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.cb-privacy-block:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.1);
}

.cb-privacy-block h2 {
  font-size: 1.4rem;
  color: #ffd77f;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(255, 210, 120, 0.3);
}

.cb-privacy-block p {
  line-height: 1.7;
  color: #f3e7cf;
}

.cb-privacy-list {
  list-style: none;
  margin: 15px 0 20px;
  padding-left: 0;
}

.cb-privacy-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #fff2cc;
}

.cb-privacy-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 1px;
  color: #ffd700;
  font-size: 1rem;
}

.cb-privacy a {
  color: #ffda6b;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted #ffda6b;
  transition: all 0.3s ease;
}

.cb-privacy a:hover {
  color: #ffffff;
  border-bottom-color: transparent;
}

/* Final block */
.cb-privacy-block.final {
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(179, 0, 27, 0.2));
  border-color: rgba(255, 215, 0, 0.3);
  text-align: center;
}
/* ================= RESPONSIVE ================= */


@media(max-width:1024px){
  .cb-burger {
    display: flex;
  }
  

.cb-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #82660c;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Когда активно */
.cb-burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.cb-burger.active span:nth-child(2) {
  opacity: 0;
}
.cb-burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
  .cb-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(180deg, #fffbe0, #fff4b3);
    box-shadow: 0 6px 20px rgba(255,200,0,0.08);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .cb-nav.active {
    max-height: 300px;
    display: flex;
    opacity: 1;
  }

  .cb-nav a {
    display: block;
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255,215,0,0.15);
  }
  .cb-popup-card { padding: 30px 20px; }
  .cb-popup-actions { flex-direction: column; gap: 12px; }
  .cb-row {
    display: block;
  }
  .cb-values-card {
    padding: 30px 20px;
  }
  .cb-section-subtitle {
    font-size: 1.5rem;
  }
  .cb-about-row {
    flex-direction: column;
    gap: 30px;
  }
  .cb-about-row.cb-reverse {
    flex-direction: column;
  }
  .cb-about-graph {
    width: 100%;
  }

  .cb-about-image {
    max-width: 320px;
    margin-bottom: 30px;
  }

  .cb-about-title {
    font-size: 2.2rem;
  }
  .cb-offer-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cb-offer-rating {
    text-align: center;
  }
  .cb-header-row{gap:12px;padding:12px}.cb-nav{display:none}.cb-burger{display:block}}
@media(max-width:768px){
  .cb-contact-title {
    font-size: 2.4rem;
  }

  .cb-contact-sub {
    font-size: 1rem;
  }

  .cb-contact-card {
    padding: 30px 15px;
  }
  .cb-about-title {
    font-size: 1.9rem;
  }

  .cb-about-text p {
    font-size: 1rem;
  }
  .cb-section-title {
    font-size: 2rem;
  }
  .cb-offer-title {
    font-size: 1.6rem;
  }
  .cb-offer-logo {
    width: 120px;
  }
  .cb-hero-ctas {
    flex-direction: column;
    text-align: center;
  }
  .cb-hero-inner{flex-direction:column;gap:36px}.cb-hero-left,.cb-hero-right{flex:unset;width:100%; padding: 0 10px;}.cb-hero-title{font-size:2.2rem}.cb-hero-lead{font-size:1rem}.cb-features-grid{grid-template-columns:1fr}}
@media(max-width:480px){
  .cb-offer-highlight {
    padding: 20px 15px;
  }
  .cb-offer-features {
    flex-direction: column;
    gap: 6px;
  }
  .cb-btn-gold {
    width: 100%;
    justify-content: center;
  }
  .cb-hero-title{font-size:1.9rem}.cb-btn{padding:10px 22px;font-size:.95rem}.cb-feature-card{padding:22px}}
