/* Robotfunyiros.hu - Design-gazdag verzió */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700&display=swap');

:root {
  /* Logó színek: grass green #387c2c */
  --foszineg: #387c2c;
  --foszineg-light: #4a9438;
  --foszineg-dark: #2d5e22;
  --foszineg-glow: rgba(56, 124, 44, 0.4);
  --accent: #4a9438;
  --accent-gold: #9cb84a;
  --vilagos: #f7faf5;
  --feher: #ffffff;
  --szoveg: #1a1a1a;
  --szoveg-light: #4a4a4a;
  --shadow: 0 4px 24px rgba(56, 124, 44, 0.12);
  --shadow-hover: 0 12px 48px rgba(56, 124, 44, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.7;
  color: var(--szoveg);
  background-color: var(--vilagos);
  overflow-x: hidden;
}

/* Scrollhoz kötött robotfűnyíró */
.scroll-mower {
  position: fixed;
  bottom: 2rem;
  left: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100px) scale(0.9);
  transition: transform 0.12s ease-out, opacity 0.4s ease;
}

.scroll-mower.visible {
  opacity: 0.55;
}

.scroll-mower img {
  width: 56px;
  height: 56px;
  animation: mowerWobble 2s ease-in-out infinite;
}

@keyframes mowerWobble {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-4px) rotate(2deg); }
}

@media (max-width: 768px) {
  .scroll-mower img {
    width: 44px;
    height: 44px;
  }
  .scroll-mower {
    bottom: 1.5rem;
  }
}

h1, h2, h3, .font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ========== NAVBAR ========== */
.navbar {
  background: rgba(45, 94, 34, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.navbar .logo img,
.footer .logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--feher);
}

/* ========== HERO + ANIMATED BACKGROUND ========== */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--feher);
  overflow: hidden;
}

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 94, 34, 0.92) 0%, rgba(56, 124, 44, 0.88) 50%, rgba(45, 94, 34, 0.94) 100%),
    url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1920&q=80') center/cover no-repeat;
  animation: heroBgPulse 8s ease-in-out infinite;
}

@keyframes heroBgPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.98; transform: scale(1.02); }
}

/* Floating grass blades / particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15));
  border-radius: 2px;
  animation: floatParticle 12s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 14s; transform: rotate(-15deg); }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 11s; transform: rotate(10deg); }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 16s; transform: rotate(-8deg); }
.particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 13s; transform: rotate(5deg); }
.particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 15s; transform: rotate(-12deg); }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 10s; transform: rotate(7deg); }
.particle:nth-child(7) { left: 15%; bottom: 20%; animation-delay: 6s; transform: rotate(20deg); }
.particle:nth-child(8) { left: 60%; bottom: 30%; animation-delay: 7s; transform: rotate(-18deg); }
.particle:nth-child(9) { right: 20%; top: 40%; animation-delay: 2.5s; transform: rotate(15deg); }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); opacity: 0.4; }
  50% { transform: translateY(-30px) rotate(var(--r, 0deg)); opacity: 0.9; }
}

/* Gradient orb animation */
.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 148, 56, 0.2) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-primary {
  background: var(--feher);
  color: var(--foszineg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--feher);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--feher);
  transform: translateY(-3px);
}

/* ========== CONTAINER & SECTIONS ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--foszineg);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--szoveg-light);
  font-size: 1.1rem;
}

/* ========== CARDS ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--feher);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.08);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(56, 124, 44, 0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover .card-image-overlay {
  opacity: 1;
}

.card-body {
  padding: 2rem;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--foszineg), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1.35rem;
  color: var(--foszineg);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--szoveg-light);
  font-size: 0.98rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.3s;
}

.card-link:hover {
  gap: 0.75rem;
}

/* ========== FEATURED IMAGE SECTION ========== */
.featured-section {
  position: relative;
  padding: 0;
}

.featured-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
  margin: 0 2rem;
}

.featured-image {
  position: relative;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(56, 124, 44, 0.3) 100%);
}

.featured-content {
  background: linear-gradient(135deg, var(--foszineg) 0%, var(--foszineg-dark) 100%);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--feher);
}

.featured-content h2 {
  color: var(--feher);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.featured-content p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.featured-list {
  list-style: none;
}

.featured-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.featured-list li::before {
  content: '✓';
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

/* ========== STATS ========== */
.stats-section {
  background: linear-gradient(135deg, var(--foszineg) 0%, var(--foszineg-dark) 100%);
  color: var(--feher);
  padding: 4rem 2rem;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ========== BRANDS ========== */
.brands-section {
  background: var(--feher);
  padding: 5rem 2rem;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.brand-item {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--szoveg-light);
  opacity: 0.7;
  transition: color 0.3s, opacity 0.3s;
}

.brand-item:hover {
  color: var(--foszineg);
  opacity: 1;
}

/* ========== PROCESS / STEPS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.4;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--foszineg), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--feher);
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(56, 124, 44, 0.3);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--szoveg-light);
}

/* ========== TESTIMONIALS ========== */
.testimonial {
  background: var(--feher);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--szoveg);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--foszineg), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--feher);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--foszineg) 0%, var(--foszineg-dark) 100%);
  color: var(--feher);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite;
}

.cta-banner h2 {
  color: var(--feher);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
footer {
  background: var(--foszineg-dark);
  color: var(--feher);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  opacity: 0.85;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.95);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--feher);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ========== FORM ========== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--szoveg);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e0e8e2;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--foszineg);
  box-shadow: 0 0 0 4px rgba(56, 124, 44, 0.1);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, var(--foszineg), var(--accent));
  color: var(--feher);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(56, 124, 44, 0.35);
}

/* ========== PAGE HEADER ========== */
.page-header {
  position: relative;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, rgba(56, 124, 44, 0.95) 0%, rgba(45, 94, 34, 0.98) 100%),
    url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1920&q=80') center/cover;
  color: var(--feher);
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-header h1 {
  position: relative;
  font-size: clamp(2rem, 4vw, 3rem);
  z-index: 1;
}

.page-header p {
  position: relative;
  opacity: 0.95;
  margin-top: 0.5rem;
  z-index: 1;
}

/* ========== BLOG ========== */
.blog-list {
  list-style: none;
}

.blog-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  background: var(--feher);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-item-image {
  height: 240px;
}

.blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item-content {
  padding: 2rem;
}

.blog-item .meta {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.blog-item p {
  color: var(--szoveg-light);
  font-size: 0.98rem;
}

.blog-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Blog kategóriaszűrő */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.blog-filter-btn {
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--foszineg);
  background: transparent;
  color: var(--foszineg);
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--foszineg);
  color: var(--feher);
}

.blog-item[data-category].hidden {
  display: none !important;
}

/* Blog post oldal */
.blog-post-header {
  position: relative;
  margin-bottom: 3rem;
}

.blog-post-hero {
  height: 400px;
  overflow: hidden;
  background: var(--foszineg);
}

.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.blog-post-header .container {
  position: relative;
  margin-top: -120px;
  background: var(--feher);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
  margin-left: auto;
  margin-right: auto;
}

.back-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--foszineg);
}

.blog-post-meta {
  display: block;
  color: var(--szoveg-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-post-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--foszineg);
}

.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.blog-post-content .lead {
  font-size: 1.2rem;
  color: var(--szoveg);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.blog-post-content h2 {
  font-size: 1.5rem;
  color: var(--foszineg);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-post-content p {
  margin-bottom: 1.25rem;
  color: var(--szoveg);
}

.blog-post-content .btn {
  margin-top: 1rem;
}

/* Tudtad-e / Érdekességek szekció */
.fun-facts {
  background: var(--feher);
  padding: 4rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.fun-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.fun-fact-item {
  padding: 1.5rem;
  background: var(--vilagos);
  border-radius: 16px;
  border-left: 4px solid var(--accent);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.fun-fact-item h4 {
  color: var(--foszineg);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.fun-fact-item p {
  color: var(--szoveg-light);
  font-size: 0.95rem;
  margin: 0;
}

a.fun-fact-item:hover {
  border-left-color: var(--foszineg);
  box-shadow: 0 4px 12px rgba(56, 124, 44, 0.12);
  transform: translateX(4px);
}

/* FAQ szekció */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--feher);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--foszineg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--vilagos);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--szoveg-light);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Több tartalom - bővebb szöveg dobozok */
.content-block {
  background: var(--feher);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.content-block h3 {
  color: var(--foszineg);
  margin-bottom: 1rem;
}

.content-block p {
  color: var(--szoveg);
  line-height: 1.8;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.visible {
  animation: revealIn 0.8s ease-out forwards;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .featured-wrap {
    grid-template-columns: 1fr;
  }
  
  .featured-content {
    padding: 3rem 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Kapcsolat oldal grid */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .featured-wrap {
    margin: 0 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .brands-grid {
    gap: 2rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-item {
    grid-template-columns: 1fr;
  }
  
  .blog-item-image {
    height: 200px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    margin: 0 auto;
  }
}
