/* BUTEYKO - FŐOLDAL */

/* ===== ALAP SZEKCIÓK ===== */

.bf-services,
.bf-testimonials,
.bf-who,
.bf-process,
.bf-about,
.bf-faq {
  padding: 96px 20px;
}

.bf-services,
.bf-who,
.bf-about {
  background: #ffffff;
}

.bf-testimonials,
.bf-process,
.bf-faq {
  background: #f7f3ee;
}

.bf-final {
  padding: 112px 20px;
  background: linear-gradient(
    135deg,
    rgba(127,162,0,0.95),
    rgba(127,162,0,0.85)
  );
  text-align: center;
  margin-bottom: 0 !important;
}

/* ===== KÖZÖS CÍM- ÉS SZÖVEGSTÍLUS ===== */

.bf-testimonials-head h2,
.bf-who h2,
.bf-process-head h2,
.bf-about-head h2,
.bf-faq h2 {
  font-family: "Marcellus", serif !important;
  font-size: 44px;
  line-height: 1.16;
  font-weight: 400;
  color: #333;
  margin: 0 0 18px 0;
  text-align: center;
}

.bf-testimonials-head p,
.bf-who-intro,
.bf-process-head p,
.bf-about-head p {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #666;
  margin: 0 0 44px 0;
  text-align: center;
}

/* ===== SERVICES ===== */

.bf-services-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.bf-service-card {
  flex: 1 1 320px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.bf-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.11);
}

.bf-service-image {
  height: 220px;
  overflow: hidden;
}

.bf-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.bf-cover-image img {
  object-fit: cover;
  object-position: center;
}

.bf-service-content {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bf-service-content h2,
.bf-service-content h3 {
  margin: 0 0 14px 0;
  color: #333;
  font-family: "Marcellus", serif !important;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  min-height: 72px;
}

.bf-service-content p {
  margin: 0 0 18px 0;
  color: #666;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  flex-grow: 1;
}

.bf-service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 48px;
  background: #7fa200;
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bf-service-button:hover {
  background: #6f8f00;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* ===== TESTIMONIALS ===== */

.bf-testimonials {
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.03);
}

.bf-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(127,162,0,0) 0%,
    rgba(127,162,0,0.10) 20%,
    rgba(127,162,0,0.20) 50%,
    rgba(127,162,0,0.10) 80%,
    rgba(127,162,0,0) 100%
  );
}

.bf-testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.bf-testimonials-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.bf-testimonial-card {
  flex: 1 1 320px;
  max-width: 360px;
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bf-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.09);
}

.bf-testimonial-text {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 16px 0;
  flex: 1 1 auto;
}

.bf-testimonial-name {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #7fa200;
  margin-top: 0;
}

.bf-testimonials-cta {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bf-testimonials-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 290px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 28px !important;
  background: #7fa200;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 12px;
  font-family: "Lato", sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
  box-sizing: border-box;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bf-testimonials-button:hover {
  background: #6f8f00;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* ===== KINEK SZÓL ===== */

.bf-who-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.bf-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bf-who-item {
  background: #f8f6f2;
  padding: 20px 22px 20px 52px;
  border-radius: 14px;
  text-align: left;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-who-item::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 22px;
  height: 22px;
  background: #7fa200;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bf-who-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* ===== HOGYAN ZAJLIK ===== */

.bf-process {
  border-top: 1px solid rgba(0,0,0,0.03);
}

.bf-process-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.bf-process-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.bf-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bf-process-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.08);
}

.bf-process-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #7fa200;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.bf-process-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
}

.bf-process-card p {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

.bf-process-cta {
  margin-top: 46px;
  text-align: center;
}

.bf-process-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  background: #7fa200;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 12px;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bf-process-button:hover {
  background: #6f8f00;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* ===== RÓLATOK ===== */

.bf-about-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.bf-about-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.bf-about-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  align-items: stretch;
}

.bf-about-card {
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  text-align: left;
  transition: 0.2s ease;
}

.bf-about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.08);
}

.bf-about-card img {
  width: 100%;
  height: 340px !important;
  object-fit: cover !important;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 18px;
}

.bf-about-card h3 {
  font-family: "Marcellus", serif;
  font-size: 26px;
  margin: 0 0 6px 0;
  color: #333;
}

.bf-about-role {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #7fa200;
  margin-bottom: 14px;
}

.bf-about-card p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 12px 0;
}

/* ===== GYIK ===== */

.bf-faq {
  border-top: 1px solid rgba(0,0,0,0.03);
}

.bf-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bf-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.bf-faq-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  transition: 0.2s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.bf-faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.bf-faq-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #333;
}

.bf-faq-card p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

.bf-faq-cta {
  margin-top: 40px;
  text-align: center;
}

.bf-faq-cta a {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #7fa200;
  text-decoration: none;
}

.bf-faq-cta a:hover {
  text-decoration: underline;
}

/* ===== ZÁRÓ CTA ===== */

.bf-final-inner {
  max-width: 760px;
  margin: 0 auto;
}

.bf-final h2 {
  font-family: "Marcellus", serif;
  font-size: 42px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.bf-final p {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  margin: 0 0 40px 0;
}

.bf-final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.bf-final-primary,
.bf-final-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border-radius: 12px;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-final-primary {
  background: #ffffff;
  color: #7fa200 !important;
}

.bf-final-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.bf-final-secondary {
  border: 2px solid rgba(255,255,255,0.7);
  color: #ffffff !important;
  background: transparent;
}

.bf-final-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* ===== HERO GOMBOK ===== */

.bf-hero-links {
  margin: 0 0 34px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bf-hero-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.24);
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 16px 24px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-hero-link:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  text-decoration: none !important;
}

.bf-hero-main-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #7fa200;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 18px 34px;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-hero-main-button:hover {
  background: #6f8f00;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.22);
  text-decoration: none !important;
}