/* ===== Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #1e1e1e;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.cf-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.cf-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* ===== Cards ===== */
.cf-card {
  background: #2b2b2b;
  border-radius: 18px;
  padding: 25px 20px;
  flex: 1 1 280px;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.4);
}

.cf-card h3 {
  font-size: 1.5rem;
  color: #d9a951;
  margin-bottom: 12px;
  font-weight: 700;
}

.cf-card p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}

.cf-btn.cf-btn-small {
  display: inline-block;
  background: #d9a951;
  color: #1e1e1e;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s;
}

.cf-btn.cf-btn-small:hover {
  background: #8b0000;
  color: #fff;
  transform: scale(1.05);
}

/* ===== Header ===== */
.cf-header {
  background: #2b2b2b;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.cf-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cf-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #d9a951;
}

.cf-logo img {
  height: 32px;
}

.cf-nav {
  display: flex;
  gap: 25px;
}

.cf-nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.cf-nav a:hover {
  color: #d9a951;
}

/* Burger */
.cf-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.cf-burger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* ===== Hero ===== */
.cf-hero {
  background: linear-gradient(135deg, #ff8c42, #ffbe0b);
  color: #fff;
  padding: 100px 20px;
}

.cf-hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.cf-hero-text {
  flex: 1 1 450px;
}

.cf-hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.cf-hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #fff;
  line-height: 1.6;
}

.cf-btn-primary {
  display: inline-block;
  background: #1f2937;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cf-btn-primary:hover {
  background: #111827;
  transform: translateY(-2px);
}

/* Features (список справа) */
.cf-hero-features {
  flex: 1 1 400px;
}

.cf-hero-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}
.cf-hero-features li {
    margin-bottom: 10px;
    display: flex
;
    align-items: center;
    gap: 15px;
    background-color: #ffffff;
    padding: 12px 15px;
    color: #000;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.cf-hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #fff;
}

.cf-feature-icon {
  font-size: 1.6rem;
}

.cf-feature-text {
  flex: 1;
  line-height: 1.4;
  color: #000;
}

/* ===== Offers ===== */
/* Общая обертка карточки */
.cf-offer-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  margin: 10% 0 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.cf-offre-description-block {
  background: #1f1f1f;
  border: 2px solid #d9a951;
  border-radius: 14px;
  padding: 25px 30px;
  margin-top: 25px;
  color: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
section#cf-offres {
  padding: 10% 0;
}
.cf-offre-description-block h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #d9a951;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cf-offre-description-block p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #ddd;
}

.cf-offre-description-block strong {
  color: #ffffff;
  background: #8b0000;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Фон с градиентом */
.cf-offer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  opacity: 0.15;
  z-index: 1;
}

/* Контент карточки */
.cf-offer-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  flex-wrap: wrap;
}

/* Левый блок */
.cf-offer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 150px;
}

.cf-offer-logo-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.cf-offer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cf-offer-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 5px 0;
}

.cf-offer-name a {
  text-decoration: none;
  color: #222;
}

.cf-offer-rating {
  font-size: 0.95rem;
  color: #444;
}

/* Центральный блок */
.cf-offer-center {
  flex: 1;
  padding: 0 20px;
  min-width: 220px;
}

.cf-offer-bonus {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ff5722;
}

.cf-offer-extra {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #666;
}

.cf-offer-payments span {
  display: inline-block;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 5px 10px;
  margin: 3px;
  font-size: 0.85rem;
  color: #333;
}

/* Правый блок */
.cf-offer-right {
  min-width: 160px;
  display: flex;
  justify-content: center;
}

.cf-offer-btn {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cf-offer-btn:hover {
  background: linear-gradient(135deg, #ff6a3d, #fd9e58);
  transform: scale(1.05);
}


/* ===== About ===== */
.cf-about {
  padding: 80px 0;
  background: #2b2b2b;
}

.cf-about-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.cf-about-text {
  flex: 1 1 400px;
}

.cf-about-text h2 {
  font-size: 2rem;
  color: #d9a951;
  margin-bottom: 20px;
}

.cf-about-text p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cf-about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cf-about-list li {
  font-size: 1rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cf-about-image {
  flex: 1 1 400px;
  text-align: center;
}

.cf-about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ===== FAQ ===== */
.cf-faq {
  padding: 80px 20px;
  background: #1e1e1e;
}

.cf-faq h2.cf-section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #d9a951;
}

.cf-faq-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.cf-faq-column {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-faq-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.cf-faq-question {
  width: 100%;
  background: #d9a951;
  color: #1e1e1e;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.cf-faq-question:hover {
  background: #8b0000;
  color: #fff;
}

.cf-faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.cf-faq-item.active .cf-faq-icon {
  transform: rotate(45deg);
}

.cf-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #2b2b2b;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  color: #ccc;
}

.cf-faq-item.active .cf-faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

/* ===== Contact ===== */
.cf-contact {
  padding: 80px 20px;
  background: #2b2b2b;
  border-top: 1px solid #333;
}

.cf-contact-flex {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cf-contact-info,
.cf-contact-form {
  flex: 1 1 400px;
  background: #1e1e1e;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cf-contact-info:hover,
.cf-contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.cf-contact h2.cf-section-title {
  margin-bottom: 20px;
  color: #d9a951;
  font-size: 1.8rem;
}

.cf-contact p {
  margin-bottom: 15px;
  color: #ccc;
  line-height: 1.6;
}

.cf-contact ul {
  list-style: none;
  padding: 0;
}

.cf-contact ul li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #fff;
}

.cf-contact ul li a {
  color: #d9a951;
  text-decoration: none;
  transition: color 0.3s;
}

.cf-contact ul li a:hover {
  color: #8b0000;
}

/* Form */
.cf-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cf-contact-form input,
.cf-contact-form textarea {
  padding: 14px 16px;
  background: #2b2b2b;
  border: 1px solid #444;
  border-radius: 10px;
  font-size: 1rem;
  color: #fff;
  transition: border 0.3s, box-shadow 0.3s;
}

.cf-contact-form input:focus,
.cf-contact-form textarea:focus {
  border-color: #d9a951;
  box-shadow: 0 0 8px rgba(217,169,81,0.4);
  outline: none;
}

.cf-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.cf-btn.cf-btn-primary {
  background: #d9a951;
  color: #1e1e1e;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
}

.cf-btn.cf-btn-primary:hover {
  background: #8b0000;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Footer ===== */
.cf-footer {
  background: #1e1e1e;
  color: #ccc;
  padding: 25px 0;
  text-align: center;
}

.cf-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cf-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #d9a951;
}

.cf-footer-logo img {
  height: 28px;
}

.cf-footer-logos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.cf-footer-logos img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.cf-footer-logos img:hover {
  opacity: 1;
}

/* ===== Parallax Warning ===== */
.cf-parallax-warning {
  position: relative;
  background-image: url('../img/parallax-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-parallax-overlay {
  background: rgba(139, 0, 0, 0.6);
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cf-warning-text {
  max-width: 900px;
  text-align: center;
  border: 3px solid #d9a951;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(0,0,0,0.4);
}

.cf-warning-text p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
}
.cf-footer-middle {
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}

.cf-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cf-footer-links li {
  display: inline-block;
  margin: 0 10px;
}

.cf-footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.cf-footer-links a:hover {
  color: #fff;
}

.cf-footer-contact {
  margin-top: 10px;
  font-size: 14px;
  color: #888;
}

.cf-footer-contact a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cf-footer-contact a:hover {
  color: #fff;
}

/* ===== Responsive ===== */
.cf-guide {
  padding: 80px 0;
  background-color: #f9f9f9;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}

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

.cf-guide-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 50px;
  color: #222;
}

.cf-guide-block {
  margin-bottom: 40px;
  padding: 25px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-guide-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.cf-guide-block h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #d9a951;
}

.cf-guide-block p {
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

.cf-guide-list {
  list-style: disc inside;
  margin: 15px 0;
  padding-left: 20px;
}

.cf-guide-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
}

.cf-guide-block.final {
  border-left: 4px solid #d9a951;
}
.ob-banner {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}
@media (max-width: 992px) {
  /* Базовый бургер */
.cf-burger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}

.cf-burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #d9a951;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Анимация при открытии */
.cf-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.cf-burger.active span:nth-child(2) {
  opacity: 0;
}

.cf-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
  .cf-contact-flex {
    flex-direction: column;
    gap: 30px;
  }
  .cf-warning-text p {
    font-size: 1.2rem;
  }
  .cf-faq-grid {
    flex-direction: column;
    gap: 30px;
  }

  .cf-parallax-warning {
    padding: 80px 10px;
  }

  .cf-parallax-overlay {
    padding: 60px 10px;
  }

  .cf-about-flex {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .cf-about-text, 
  .cf-about-image {
    flex: 1 1 100%;
  }

  .cf-about-list {
    align-items: flex-start;
  }
  .cf-cards {
    gap: 20px;
  }
  .cf-offer-card.fr-offer-wide {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
  }

  .cf-offer-left {
    flex-direction: column;
    gap: 15px;
  }

  .cf-offer-logo-wrapper {
    width: 120px;
    height: 120px;
  }

  .cf-btn-offer {
    font-size: 12px;
    width: 100%;
    padding: 14px 10px;
  }
}

@media (max-width: 768px) {
  .cf-nav {
    display: none;
    flex-direction: column;
    background: #2b2b2b;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 6px;
  }.cf-warning-text p {
    font-size: 1rem;
  }

  .cf-nav.active {
    display: flex;
  }

  .cf-burger {
    display: flex;
  }

  .cf-hero h1 {
    font-size: 2rem;
  }

  .cf-hero p {
    font-size: 1rem;
  }
  .cf-offer-title {
    font-size: 1.6rem;
  }

  .cf-offer-subtitle {
    font-size: 1rem;
  }

  .cf-offer-description-block {
    padding: 20px 15px;
  }
   .cf-card {
    padding: 20px 15px;
  }
}
