@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {box-sizing: border-box;margin:0;padding:0}
html,body{height:100%}
.brfr-body {
  font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #00bcd4; /* бордовый фон */
  color: #00ffff; 
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

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

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

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

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

/* ================= HERO ================= */
#brfr-hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(rgb(0 72 81), #00bcd4), url(../img/hero-bg.jpg) center / cover no-repeat;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

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

.brfr-hero-left {
  flex: 1 1 500px;
  max-width: 600px;
}

.brfr-kicker {
  font-size: 18px;
  font-weight: 600;
  color: #00ffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brfr-hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #00ffff;
}

.brfr-hero-lead {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
}

.brfr-hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.brfr-btn {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brfr-btn-cta {
  background-color: #00ffff;
  color: #ffffff;
}

.brfr-btn-cta:hover {
  background-color: #ffffffa8;
}

.brfr-btn-line {
  border: 2px solid #00ffff;
  color: #00ffff;
}

.brfr-btn-line:hover {
  background-color: #00ffff;
  color: #ffffff;
}

.brfr-hero-right {
  flex: 1 1 400px;
  text-align: center;
}

.brfr-hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}




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

/* Highlighted Offer Card */
.brfr-offers {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  color: #ffffff;
}

.brfr-offers-parallax {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/offer-bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(0.4);
}

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

.brfr-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff80;
  margin: 10px 0;
}

.brfr-offer-creative {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.brfr-offer-logo-layer {
  position: relative;
  flex: 1 1 200px;
  text-align: center;
}

.brfr-offer-logo-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: #00ffff30;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.brfr-offer-logo {
  width: 160px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.brfr-offer-logo:hover {
  transform: scale(1.1);
}

.brfr-offer-text-layer {
  flex: 2 1 400px;
}

.brfr-offer-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #00ffff50;
}

.brfr-offer-desc {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ffffffcc;
}

.brfr-offer-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.brfr-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid #00ffff;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #00ffff;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.brfr-feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px #00ffff50;
}

.brfr-btn-gold {
  background: #00ffff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.brfr-btn-gold:hover {
  background: #00cccc;
  box-shadow: 0 0 15px #00ffff80;
}
/* ================= ABOUT & FEATURES ================= */



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

.brfr-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;
}

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

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

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

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

.brfr-btn-gold-outline:hover {
  background: #00ffff;
  color: #1a1a1a;
}

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

.brfr-text-gold {
  color: #00ffff;
  margin-right: 10px;
}

.brfr-about {
  background: #ffffff;
  color: #111;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.brfr-container {
  max-width: 1200px;
  margin: 0 auto;
}

.brfr-about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 80px;
}

.brfr-reverse {
  flex-direction: row-reverse;
}

.brfr-about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.brfr-about-title span {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff80;
}

.brfr-about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

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

.brfr-about-features i {
  color: #00ffff;
  font-size: 1.2rem;
}

/* === Статистика (круги заменены на стильные карточки) === */
.brfr-about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.brfr-stat {
  background: #f7f7f7;
  border: 2px solid #00ffff;
  border-radius: 20px;
  padding: 25px;
  width: 130px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ffff20;
}

.brfr-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #00ffff60;
}

.brfr-stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ffff;
}

.brfr-stat-label {
  font-size: 0.9rem;
  color: #444;
}

/* === Картинка === */
.brfr-about-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 0 20px #00ffff40;
  transition: transform 0.4s ease;
}

.brfr-about-image:hover {
  transform: scale(1.05);
}

.brfr-contact {
  position: relative;
  padding: 100px 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.brfr-contact-parallax {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
  filter: brightness(0.6);
}

.brfr-contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.brfr-contact-header .brfr-kicker-small {
  color: #00ffff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.brfr-contact-header h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #fff;
}

.brfr-contact-sub {
  color: #f5f5f5;
  font-size: 18px;
}

.brfr-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.brfr-contact-card {
  background: rgb(0 64 72);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.brfr-contact-card-glow::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.4) 0%, transparent 70%);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.brfr-contact-card:hover {
  transform: translateY(-10px);
}

.brfr-contact-card:hover::before {
  opacity: 1;
}

.brfr-contact-icon {
  font-size: 40px;
  color: #00ffff;
  margin-bottom: 15px;
}

.brfr-contact-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.brfr-contact-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.brfr-btn-gold {
  background: #00ffff;
  color: #800020;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.brfr-btn-gold:hover {
  background: #ffec8b;
  color: #800020;
}

.brfr-btn.brfr-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #00ffff, #ff0b0b);
  color: #fff;
  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);
}

.brfr-btn.brfr-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);
}
.brfr-about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00ffff, #ff0b0b, #00ffff);
  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); }
}

.brfr-features-modern {
  padding: 80px 20px;
  background: #ffffff; /* белый фон */
  color: #111; /* основной текст */
  font-family: 'Arial', sans-serif;
}

.brfr-kicker-gradient {
  display: inline-block;
  font-weight: bold;
  color: #00ffff; /* акцентный цвет */
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.brfr-features-block-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.brfr-features-block-sub {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin-bottom: 50px;
}

/* ===== Сетка фич ===== */
.brfr-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.brfr-feature {
  background: #f0f0f0;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.brfr-feature::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, #00ffff33 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 0;
  transform: rotate(45deg);
}

.brfr-feature:hover::before {
  opacity: 1;
}

.brfr-feature-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

/* ===== Иконки ===== */
.brfr-feature-icon {
  font-size: 3rem;
  color: #00ffff;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  z-index: 1;
  position: relative;
}

.brfr-feature-hover:hover .brfr-feature-icon {
  transform: rotate(15deg) scale(1.2);
}

/* ===== Заголовки и текст ===== */
.brfr-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.brfr-feature p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* ================= FAQ ================= */
.brfr-faq {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(180deg, #000000 0%, #111111 100%);
  color: #ffffff;
  overflow: hidden;
}

.brfr-faq-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  filter: brightness(0.4);
  z-index: 0;
}

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

.brfr-section-title {
  font-size: 36px;
  color: #00ffff;
  margin: 10px 0;
}

.brfr-faq-grid {
  display: grid;
  gap: 20px;
  
  position: relative;
  z-index: 1;
}

.brfr-faq-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid #00ffff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brfr-faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,255,255,0.3);
}

.brfr-faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  font-size: 18px;
  color: #00ffff;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.brfr-faq-question i {
  transition: transform 0.3s ease;
}

.brfr-faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

/* Активный ответ */
.brfr-faq-card.active .brfr-faq-answer {
  max-height: 500px;
  opacity: 1;
}

.brfr-faq-card.active .brfr-faq-question i {
  transform: rotate(45deg);
}
/* ================= FOOTER ================= */
.brfr-footer-creative {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.brfr-footer-parallax {
  background: url('./img/footer-bg.jpg') center/cover no-repeat;
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: brightness(0.5);
  background-attachment: fixed;
}

.brfr-container > * {
  position: relative;
  z-index: 1;
}

/* Верхняя часть футера */
.brfr-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 20px 40px;
  gap: 30px;
}

.brfr-footer-logo-link span {
  font-size: 32px;
  font-weight: 700;
  color: #00ffff;
}

.brfr-footer-desc {
  margin-top: 10px;
  color: #ccc;
  max-width: 300px;
}

.brfr-footer-links {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.brfr-footer-links li {
  margin-bottom: 8px;
}

.brfr-footer-links li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.brfr-footer-links li a:hover {
  color: #00ffff;
}

/* Сетка сертификатов */
.seals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
}

.seal-img {
  max-height: 55px;
  transition: transform 0.3s, filter 0.3s;
}

.seal-img:hover {
  transform: scale(1.15);
  filter: brightness(1.3);
}

/* Средняя часть с преимуществами */
.brfr-footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.brfr-footer-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #00ffff;
  font-weight: 600;
  font-size: 16px;
}

/* Нижняя часть */
.brfr-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  font-size: 14px;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.2);
}
/* ================= POPUPS ================= */
.brfr-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; }
.brfr-popup.active { opacity: 1; pointer-events: all; }
.brfr-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); }
.brfr-popup-close { position: absolute; top: 16px; right: 16px; background: transparent; border:none; font-size:1.3rem; color:#5a3e00; cursor:pointer; }

.brfr-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}


.brfr-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;
}

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

.brfr-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #00ffff;
  text-shadow: 0 0 15px rgb(16 16 16 / 40%);
  margin: 20px 0;
}



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

.brfr-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;
}

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

.brfr-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;
}

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

.brfr-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;
}

.brfr-faq-item.active .brfr-faq-answer {
  max-height: 800px;
  padding: 20px 30px 30px;
}
.brfr-footer-modern {
  background: #00bcd4;
  color: #00ffff;
  font-family: 'Montserrat', sans-serif;
  padding: 60px 20px 30px;
}
.brfr-footer-modern a {
  color: #00ffff;
  text-decoration: none;
  transition: 0.3s;
}
.brfr-footer-modern a:hover { color: #fff59a; }

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

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

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

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

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

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

/* Bottom */
.brfr-footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #fff;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.brfr-age-popup .brfr-popup-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  
}
.brfr-age-popup {
  display: none;
}
.brfr-age-popup.active {
  display: block;
}
/* Карточка попапа */
.brfr-popup-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 450px;
  width: 90%;
  padding: 30px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1000;
  animation: popupFade 0.3s ease-out;
}

/* Кнопка закрытия */
.brfr-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ff4d4d;
  cursor: pointer;
  transition: transform 0.2s;
}

.brfr-popup-close:hover {
  transform: scale(1.2);
}

/* Заголовок и иконка */
.brfr-popup-header {
  margin-bottom: 20px;
}

.brfr-popup-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: radial-gradient(circle, #00ffff, #0066ff);
}

.brfr-popup-icon {
  color: #fff;
}

.brfr-popup-header h2 {
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* Текст попапа */
.brfr-popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Кнопки действий */
.brfr-popup-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.brfr-popup-actions .brfr-btn {
  flex: 1 1 120px;
  padding: 12px 0;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

/* Кнопка "Tenho 18+" */
.brfr-popup-actions .brfr-btn-gold {
  background: linear-gradient(135deg, #00ffff, #0066ff);
  color: #000;
  display: flex;
  justify-content: center;
}

/* Кнопка "Não — Sair" */
.brfr-popup-actions .brfr-btn-outline {
  background: none;
  border: 2px solid #00ffff;
  color: #00ffff;
}

.brfr-popup-actions .brfr-btn:hover {
  transform: scale(1.05);
}

/* Подвал попапа */
.brfr-popup-footer {
  font-size: 0.85rem;
  color: #ccc;
}

/* Анимация появления */
@keyframes popupFade {
  from { opacity: 0; transform: translate(-50%, -55%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.brfr-btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.brfr-btn-gold {
  background: linear-gradient(45deg, #00ffff,#6d8f93);
  color: #00bcd4;
  border: none;
}
.brfr-btn-gold:hover {
  background: linear-gradient(45deg,#6d8f93,#00ffff);
}
.brfr-btn-ghost {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
}
.brfr-btn-ghost:hover {
  background: #00ffff;
  color: #1c1c1c;
}
.brfr-privacy {
  background: radial-gradient(circle at top, #00bcd4 0%, #1f0f0f 90%);
  color: #00ffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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


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

.brfr-privacy-block {
  background: rgba(10, 93, 107, 0.1);
  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;
}

.brfr-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);
}

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

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

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

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

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

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

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

/* Final block */
.brfr-privacy-block.final {
  background: linear-gradient(145deg, rgba(255,215,0,0.1), rgba(107,10,35,0.2));
  border-color: rgba(255, 215, 0, 0.3);
  text-align: center;
}
.brfr-about-text {
  max-width: 420px;
}


/* ================= RESPONSIVE ================= */


@media(max-width:1024px){
  .brfr-footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brfr-footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .brfr-burger {
    display: flex;
  }
  .brfr-about-row {
    flex-direction: column;
    text-align: center;
  }
  .brfr-about-row.brfr-reverse {
    flex-direction: column;
  }
  .brfr-about {
    padding: 60px 0;
  }
  .brfr-about-graph-modern {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

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

  .brfr-contact-card {
    padding: 30px 15px;
  }
  
  .brfr-section-title {
    font-size: 2rem;
  }
  .brfr-offer-title {
    font-size: 1.6rem;
  }
  .brfr-offer-logo {
    width: 120px;
  }
  
}
@media(max-width:480px){
  .brfr-offer-highlight {
    padding: 20px 15px;
  }
  .brfr-offer-features {
    flex-direction: column;
    gap: 6px;
  }
  .brfr-btn-gold {
    width: 100%;
    justify-content: center;
  }
  .brfr-btn{padding:10px 22px;font-size:.95rem}.brfr-feature-card{padding:22px}}
