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

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #fafafa;

}

.header-cfi {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #FFB84D 0%, #FF8A00 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.header-cfi__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.header-cfi__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
}

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

.header-cfi__nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-cfi__nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: opacity 0.25s ease;
}

.header-cfi__nav a:hover,
.header-cfi__nav a.active {
  opacity: 0.85;
}

.header-cfi__btn {
  background: #fff;
  color: #FF8A00;
  font-weight: 700;
  border: none;
  padding: 10px 28px;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255,255,255,0.3);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.header-cfi__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.4);
}

/* ===== BURGER ===== */
.header-cfi__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.header-cfi__burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .header-cfi__nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #FFB84D 0%, #FF8A00 100%);
    padding: 20px 0;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .header-cfi__nav.active {
    display: flex;
  }

  .header-cfi__nav ul {
    flex-direction: column;
    gap: 18px;
  }

  .header-cfi__btn {
    display: none;
  }

  .header-cfi__burger {
    display: flex;
  }
}
.hero-cfi {
  position: relative;
  overflow: hidden;
  padding: 140px 24px 100px;
  background: linear-gradient(180deg, #FFF4DC 0%, #FFE3A1 100%);
}

.hero-cfi__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-cfi__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(10px);
}

.hero-cfi__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* === ТЕКСТ === */
.hero-cfi__text {
  max-width: 700px;
  margin: 0 auto 60px;
}

.hero-cfi__text h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: #FF8A00;
  margin-bottom: 18px;
}

.hero-cfi__text span {
  color: #FF5C00;
}

.hero-cfi__text p {
  font-size: 1.15rem;
  color: #5c4934;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cfi__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-cfi__btn {
  background: linear-gradient(90deg, #FF8A00, #FFB84D);
  color: #fff;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255,138,0,0.35);
  transition: transform .25s ease, box-shadow .3s ease;
}

.hero-cfi__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,138,0,0.45);
}

.hero-cfi__link {
  color: #FF8A00;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px dashed rgba(255,138,0,0.5);
}

.hero-cfi__link:hover {
  border-color: transparent;
}

/* === ИНТЕРАКТИВНЫЕ КАРТОЧКИ === */
.hero-cfi__interactive {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-cfi__card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform .3s ease, box-shadow .3s ease;
}

.hero-cfi__card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 10px;
}

.hero-cfi__card span {
  display: block;
  font-weight: 600;
  color: #4a3928;
  font-size: 0.95rem;
}

.hero-cfi__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 40px rgba(255,138,0,0.25);
}

/* === СТАТИСТИКА === */
.hero-cfi__stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.hero-cfi__stats div {
  text-align: center;
}

.hero-cfi__stats b {
  display: block;
  font-size: 2rem;
  color: #FF8A00;
}

.hero-cfi__stats span {
  color: #6c5a42;
  font-weight: 500;
}

/* === АДАПТИВ === */
@media (max-width: 900px) {
  .hero-cfi {
    padding: 100px 20px 80px;
  }

  .hero-cfi__text h1 {
    font-size: 2.2rem;
  }

  .hero-cfi__interactive {
    gap: 20px;
  }

  .hero-cfi__card {
    width: 160px;
  }

  .hero-cfi__stats {
    gap: 40px;
  }
}
.about-cfi {
  background: #FFF8ED;
  padding: 120px 24px;
}

.about-cfi__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.about-cfi__visual {
  flex: 1 1 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-cfi__text {
  flex: 1 1 500px;
}

.about-cfi__text h2 {
  font-size: 2.4rem;
  color: #FF8A00;
  margin-bottom: 20px;
}

.about-cfi__text p {
  color: #5c4934;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-cfi__btn {
  display: inline-block;
  background: linear-gradient(90deg, #FF8A00, #FFB84D);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 34px;
  border-radius: 40px;
  box-shadow: 0 8px 18px rgba(255,138,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.about-cfi__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255,138,0,0.4);
}

/* адаптив */
@media (max-width: 900px) {
  .about-cfi__inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }

  .about-cfi__text h2 {
    font-size: 2rem;
  }
}
.taste-cfi {
  background: #FFF5E6;
  padding: 120px 24px;
  text-align: center;
}

.taste-cfi__inner {
  max-width: 1150px;
  margin: 0 auto;
}

.taste-cfi h2 {
  font-size: 2.6rem;
  color: #FF8A00;
  margin-bottom: 16px;
}

.taste-cfi__subtitle {
  color: #5c4934;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.taste-cfi__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.taste-cfi__item {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.taste-cfi__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(255,138,0,0.2);
}

.taste-cfi__item svg {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.taste-cfi__item:hover svg {
  transform: scale(1.1);
}

.taste-cfi__item h3 {
  font-size: 1.3rem;
  color: #FF8A00;
  margin-bottom: 10px;
}

.taste-cfi__item p {
  color: #5c4934;
  font-size: 1rem;
  line-height: 1.6;
}

/* адаптив */
@media (max-width: 768px) {
  .taste-cfi {
    padding: 80px 20px;
  }

  .taste-cfi__subtitle {
    margin-bottom: 40px;
  }
}
.island-cfi {
  background: #FFF8ED;
  padding: 120px 24px;
}

.island-cfi__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

/* Изображение */
.island-cfi__image {
  flex: 1 1 500px;
  position: relative;
}

.island-cfi__image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(255,138,0,0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.island-cfi__image img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 45px rgba(255,138,0,0.35);
}

/* Контент */
.island-cfi__content {
  flex: 1 1 500px;
}

.island-cfi__content h2 {
  font-size: 2.5rem;
  color: #FF8A00;
  margin-bottom: 18px;
}

.island-cfi__content p {
  font-size: 1.1rem;
  color: #5c4934;
  line-height: 1.7;
  margin-bottom: 20px;
}

.island-cfi__content ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.island-cfi__content li {
  font-size: 1rem;
  color: #4b3b29;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.island-cfi__content li::before {
  content: "•";
  color: #FF8A00;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  line-height: 1;
}

.island-cfi__btn {
  display: inline-block;
  background: linear-gradient(90deg, #FF8A00, #FFB84D);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 38px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255,138,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.island-cfi__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,138,0,0.4);
}

/* Адаптив */
@media (max-width: 900px) {
  .island-cfi__inner {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .island-cfi__content h2 {
    font-size: 2rem;
  }

  .island-cfi__content ul {
    text-align: left;
    display: inline-block;
  }
}
.circle-cfi {
  background: radial-gradient(circle at 50% 20%, #FFF6E2 0%, #FFE7B5 100%);
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.circle-cfi__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.circle-cfi h2 {
  font-size: 2.6rem;
  color: #FF8A00;
  margin-bottom: 16px;
}

.circle-cfi__subtitle {
  color: #5c4934;
  font-size: 1.1rem;
  margin-bottom: 80px;
}

/* === SCENE === */
.circle-cfi__scene {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto 80px;
}

.circle-cfi__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-cfi__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: orbit 16s linear infinite;
}

.circle-cfi__orbit span {
  background: #fff;
  border: 2px solid #FFB84D;
  border-radius: 40px;
  padding: 10px 20px;
  font-weight: 600;
  color: #4a3928;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.circle-cfi__orbit--1 {
  transform: rotate(0deg) translateX(160px) rotate(0deg);
  animation-delay: 0s;
}
.circle-cfi__orbit--2 {
  transform: rotate(90deg) translateX(160px) rotate(-90deg);
  animation-delay: -4s;
}
.circle-cfi__orbit--3 {
  transform: rotate(180deg) translateX(160px) rotate(-180deg);
  animation-delay: -8s;
}
.circle-cfi__orbit--4 {
  transform: rotate(270deg) translateX(160px) rotate(-270deg);
  animation-delay: -12s;
}

@keyframes orbit {
  0% { transform: rotate(0deg) translateX(160px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}

/* === BUTTON === */
.circle-cfi__btn {
  background: linear-gradient(90deg, #FF8A00, #FFB84D);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255,138,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.circle-cfi__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,138,0,0.4);
}

/* === ADAPTIVE === */
@media (max-width: 900px) {
  .circle-cfi__scene {
    width: 300px;
    height: 300px;
  }

  .circle-cfi__orbit span {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
.faq-cfi {
  background: #FFF8ED;
  padding: 120px 24px;
}

.faq-cfi__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cfi h2 {
  font-size: 2.6rem;
  color: #FF8A00;
  margin-bottom: 12px;
}

.faq-cfi__subtitle {
  color: #5c4934;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.faq-cfi__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.faq-cfi__item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-cfi__item.active {
  box-shadow: 0 10px 30px rgba(255,138,0,0.2);
}

.faq-cfi__question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  padding: 22px 28px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FF8A00;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-cfi__question:hover {
  background: #FFF2D6;
}

.faq-cfi__icon {
  font-size: 1.6rem;
  color: #FFB84D;
  transition: transform 0.3s ease;
}

.faq-cfi__item.active .faq-cfi__icon {
  transform: rotate(45deg);
}

.faq-cfi__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-cfi__item.active .faq-cfi__answer {
  max-height: 300px;
  padding: 10px 28px 24px;
}

.faq-cfi__answer p {
  color: #5c4934;
  line-height: 1.6;
  font-size: 1rem;
}

/* адаптив */
@media (max-width: 768px) {
  .faq-cfi {
    padding: 80px 20px;
  }

  .faq-cfi h2 {
    font-size: 2.2rem;
  }

  .faq-cfi__question {
    font-size: 1.05rem;
    padding: 18px 22px;
  }
}
.footer-cfi {
  background: linear-gradient(180deg, #FFF4DC 0%, #FFD68C 100%);
  padding: 80px 24px 40px;
  color: #5c4934;
  text-align: center;
}

.footer-cfi__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

.footer-cfi__brand {
  flex: 1 1 280px;
}

.footer-cfi__brand img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.footer-cfi__brand p {
  font-size: 0.95rem;
  color: #5c4934;
}

.footer-cfi__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-cfi__nav a {
  color: #5c4934;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-cfi__nav a:hover {
  color: #FF8A00;
}

.footer-cfi__social {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.footer-cfi__bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,138,0,0.25);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-cfi__bottom p {
  font-size: 0.9rem;
  color: #6b573f;
}

.footer-cfi__top {
  background: #FF8A00;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-cfi__top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,138,0,0.3);
}

/* адаптив */
@media (max-width: 900px) {
  .footer-cfi__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-cfi__nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .footer-cfi__bottom {
    flex-direction: column;
  }
}
.kitchen-cfi {
  background: linear-gradient(180deg, #FFF7E3 0%, #FFE7B5 100%);
  color: #5c4934;
  padding-bottom: 100px;
}

.kitchen-cfi__intro {
  text-align: center;
  padding: 120px 24px 80px;
}

.kitchen-cfi__intro h1 {
  font-size: 2.8rem;
  color: #FF8A00;
  margin-bottom: 16px;
}

.kitchen-cfi__intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* === SCENE === */
.kitchen-cfi__scene {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.kitchen-cfi__visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(255,138,0,0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.kitchen-cfi__visual img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(255,138,0,0.35);
}

.kitchen-cfi__svg {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  pointer-events: none;
}

/* === DESCRIPTION === */
.kitchen-cfi__desc {
  grid-column: span 2;
  text-align: center;
  margin-top: 80px;
}

.kitchen-cfi__desc h2 {
  font-size: 2rem;
  color: #FF8A00;
  margin-bottom: 16px;
}

.kitchen-cfi__desc p {
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.kitchen-cfi__btn {
  display: inline-block;
  background: linear-gradient(90deg, #FF8A00, #FFB84D);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 38px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255,138,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.kitchen-cfi__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,138,0,0.4);
}

/* === ADAPTIVE === */
@media (max-width: 900px) {
  .kitchen-cfi__scene {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kitchen-cfi__desc h2 {
    font-size: 1.8rem;
  }

  .kitchen-cfi__intro {
    padding: 100px 20px 60px;
  }
}
.characters-cfi {
  background: linear-gradient(180deg, #FFF8ED 0%, #FFE9BA 100%);
  color: #4a3928;
  padding-bottom: 100px;
}

/* === INTRO === */
.characters-cfi__intro {
  text-align: center;
  padding: 120px 24px 80px;
}

.characters-cfi__intro h1 {
  font-size: 2.8rem;
  color: #FF8A00;
  margin-bottom: 20px;
}

.characters-cfi__intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}

/* === STORIES === */
.characters-cfi__story {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.characters-cfi__block h2 {
  font-size: 1.8rem;
  color: #FF8A00;
  margin-bottom: 14px;
}

.characters-cfi__block p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #5c4934;
  text-align: justify;
}

/* === CTA === */
.characters-cfi__cta {
  text-align: center;
  margin-top: 120px;
  padding: 0 24px;
}

.characters-cfi__cta h2 {
  font-size: 2.2rem;
  color: #FF8A00;
  margin-bottom: 16px;
}

.characters-cfi__cta p {
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.characters-cfi__btn {
  display: inline-block;
  background: linear-gradient(90deg, #FF8A00, #FFB84D);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 38px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255,138,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.characters-cfi__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,138,0,0.4);
}

/* === ADAPTIVE === */
@media (max-width: 900px) {
  .characters-cfi__intro {
    padding: 100px 20px 60px;
  }

  .characters-cfi__intro h1 {
    font-size: 2.4rem;
  }

  .characters-cfi__block h2 {
    font-size: 1.6rem;
  }

  .characters-cfi__block p {
    font-size: 1rem;
  }
}
.download-cfi {
  background: linear-gradient(180deg, #FFF8ED 0%, #FFE8B3 100%);
  color: #5c4934;
  padding-bottom: 100px;
}

/* === INTRO === */
.download-cfi__intro {
  text-align: center;
  padding: 120px 24px 80px;
}

.download-cfi__intro h1 {
  font-size: 2.8rem;
  color: #FF8A00;
  margin-bottom: 20px;
}

.download-cfi__intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* === FORM === */
.download-cfi__form {
  text-align: center;
  padding: 80px 24px;
  background: #FFF4DC;
}

.download-cfi__form h2 {
  font-size: 2rem;
  color: #FF8A00;
  margin-bottom: 16px;
}

.download-cfi__form p {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

#downloadForm {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}

#email {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border: 2px solid #FFB84D;
  border-radius: 40px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

#email:focus {
  border-color: #FF8A00;
}

#downloadForm button {
  background: linear-gradient(90deg, #FF8A00, #FFB84D);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#downloadForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,138,0,0.3);
}

.download-cfi__error {
  width: 100%;
  color: #FF5C00;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* === INFO === */
.download-cfi__info {
  max-width: 900px;
  margin: 100px auto 0;
  padding: 0 24px;
}

.download-cfi__info h2 {
  font-size: 2.2rem;
  color: #FF8A00;
  margin-bottom: 20px;
}

.download-cfi__info p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.download-cfi__info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.download-cfi__info li {
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.download-cfi__info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #FF8A00;
  font-size: 1.4rem;
}

/* === POPUP === */
.download-cfi__popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.download-cfi__popup.active {
  display: flex;
}

.download-cfi__popup-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px 50px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  max-width: 420px;
}

.download-cfi__popup-content h3 {
  color: #FF8A00;
  margin-bottom: 10px;
}

.download-cfi__popup-content p {
  color: #5c4934;
  margin-bottom: 24px;
}

.download-cfi__popup-content button {
  background: linear-gradient(90deg, #FF8A00, #FFB84D);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.download-cfi__popup-content button:hover {
  transform: translateY(-2px);
}

/* === ADAPTIVE === */
@media (max-width: 768px) {
  .download-cfi__intro {
    padding: 100px 20px 60px;
  }

  .download-cfi__form {
    padding: 60px 20px;
  }

  .download-cfi__popup-content {
    padding: 30px 25px;
  }
}
.privacy-cfi {
  background: linear-gradient(180deg, #FFF8ED 0%, #FFE9B8 100%);
  color: #4a3928;
  padding-bottom: 100px;
}

/* === INTRO === */
.privacy-cfi__intro {
  text-align: center;
  padding: 120px 24px 80px;
}

.privacy-cfi__intro h1 {
  font-size: 2.8rem;
  color: #FF8A00;
  margin-bottom: 20px;
}

.privacy-cfi__intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* === CONTENT === */
.privacy-cfi__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-cfi__content h2 {
  font-size: 1.6rem;
  color: #FF8A00;
  margin-top: 50px;
  margin-bottom: 14px;
}

.privacy-cfi__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-cfi__content ul {
  list-style: none;
  margin: 10px 0 20px;
  padding: 0;
}

.privacy-cfi__content li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #5c4934;
}

.privacy-cfi__content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #FF8A00;
  font-size: 1.3rem;
}

/* === ADAPTIVE === */
@media (max-width: 768px) {
  .privacy-cfi__intro {
    padding: 100px 20px 60px;
  }

  .privacy-cfi__intro h1 {
    font-size: 2.4rem;
  }

  .privacy-cfi__content h2 {
    font-size: 1.4rem;
  }
}
