/* ============================================================
   Fenykepesajandekok.hu - Főstíluslap
   ============================================================ */

/* ---- Google Fonts & Variables ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500&display=swap');

:root {
  --primary:     #e85d04;
  --primary-dark:#c44b00;
  --primary-light:#ff8c42;
  --secondary:   #ffb703;
  --dark:        #1a1a2e;
  --dark2:       #16213e;
  --gray:        #6c757d;
  --light-gray:  #f4f4f8;
  --white:       #ffffff;
  --text:        #333340;
  --border:      #e0e0ec;
  --success:     #28a745;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; line-height: 1.25; color: var(--dark); }
p { margin-bottom: 1rem; }

/* ---- Utility ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-primary { color: var(--primary); }
.bg-light { background: var(--light-gray); }
.bg-dark { background: var(--dark); }
.bg-primary { background: var(--primary); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.fw-600 { font-weight: 600; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: .5rem; }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 2.4rem; font-weight: 700; margin-bottom: .6rem; }
.section-header p { font-size: 1.1rem; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-header .tag {
  display: inline-block;
  background: rgba(232,93,4,.12);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,93,4,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,4,.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--light-gray); transform: translateY(-2px); color: var(--primary); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.10); }

.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}

/* --- Logo --- */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark);
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-logo span { color: var(--primary); }
.site-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
}

/* --- Desktop nav --- */
.main-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin-left: 24px;
  gap: 0;
}
.main-nav > a,
.nav-dropdown > .nav-btn {
  display: flex;
  align-items: center;
  padding: 0 13px;
  font-size: .855rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  height: 100%;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  transition: color .18s;
  gap: 5px;
}
.main-nav > a::after,
.nav-dropdown > .nav-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 13px; right: 13px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform .2s;
}
.main-nav > a:hover::after { transform: scaleX(1); }
.main-nav > a.active { color: var(--primary); }
.main-nav > a.active::after { transform: scaleX(1); }
.main-nav > a:hover { color: var(--primary); }
.nav-dropdown:hover > .nav-btn { color: var(--primary); }
.nav-dropdown.active > .nav-btn { color: var(--primary); }
.nav-dropdown.active > .nav-btn::after,
.nav-dropdown:hover > .nav-btn::after { transform: scaleX(1); }
.nav-btn .nav-chevron {
  font-size: .6rem;
  transition: transform .22s;
  opacity: .7;
}
.nav-dropdown:hover > .nav-btn .nav-chevron { transform: rotate(-180deg); }

/* --- Dropdown --- */
.nav-dropdown { position: relative; height: 100%; display: flex; align-items: stretch; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.13);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s, visibility 0s .18s;
  z-index: 200;
  border-top: 2px solid var(--primary);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .18s, transform .18s;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .845rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background .14s, color .14s;
}
.dropdown-menu a i { color: var(--primary); width: 16px; text-align: center; flex-shrink: 0; }
.dropdown-menu a:hover { background: rgba(232,93,4,.08); color: var(--primary); }

/* --- Header CTA --- */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  text-decoration: none;
  transition: color .15s;
}
.header-phone:hover { color: var(--primary); }
.header-phone i { color: var(--primary); }

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  margin-left: 10px;
  padding: 0;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.hamburger:hover { background: var(--light-gray); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.48);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* --- Mobile Drawer --- */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  min-height: 64px;
}
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all .15s;
  flex-shrink: 0;
}
.drawer-close:hover { background: #fee2e2; border-color: #fca5a5; color: #dc2626; }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.drawer-body > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background .14s, color .14s;
  border-left: 3px solid transparent;
}
.drawer-body > a:hover,
.drawer-body > a.active {
  background: rgba(232,93,4,.06);
  color: var(--primary);
  border-left-color: var(--primary);
}
.drawer-body > a i { color: var(--primary); width: 18px; text-align: center; flex-shrink: 0; }

.drawer-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 20px;
}

/* Drawer accordion sections */
.drawer-section-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .14s;
}
.drawer-section-btn:hover { background: var(--light-gray); }
.drawer-section-btn .d-chevron {
  font-size: .65rem;
  color: var(--text-muted);
  transition: transform .25s;
  flex-shrink: 0;
}
.drawer-section.open .d-chevron { transform: rotate(-180deg); }

.drawer-section-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.drawer-section.open .drawer-section-links { max-height: 600px; }
.drawer-section-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 38px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .14s, color .14s;
}
.drawer-section-links a i { color: var(--primary); width: 16px; text-align: center; flex-shrink: 0; }
.drawer-section-links a:hover { background: rgba(232,93,4,.05); color: var(--primary); }

.drawer-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  background: var(--light-gray);
}
.drawer-footer .drawer-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.drawer-footer .drawer-phone:hover { border-color: var(--primary); color: var(--primary); }
.drawer-footer .drawer-phone i { color: var(--primary); }
.btn-block { width: 100%; justify-content: center; }

/* hide old mobile-nav element if any leftover */
.mobile-nav { display: none !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0f3460 100%);
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::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");
}
.hero-blob {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,93,4,.25) 0%, transparent 70%);
  right: -100px; top: -100px;
  border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,183,3,.15);
  border: 1px solid rgba(255,183,3,.4);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--primary-light); }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.hero-stat-value { font-family: 'Poppins',sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}

/* Page hero (subpages) */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(232,93,4,.15));
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color: var(--primary-light); }
.page-hero .breadcrumb i { font-size: .7rem; }
.page-hero h1 { font-size: 2.8rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; }
.page-hero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero .hero-img {
  position: absolute;
  right: 60px; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.page-hero .hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}
.product-card-badge.new { background: var(--success); }
.product-card-badge.sale { background: #dc3545; }
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-icon {
  width: 44px; height: 44px;
  background: rgba(232,93,4,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.product-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.product-card-body p { font-size: .9rem; color: var(--gray); margin-bottom: 0; flex: 1; }
.product-card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
}
.product-price span { font-size: .8rem; font-weight: 400; color: var(--gray); }

/* ---- Feature cards (icon-based) ---- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(232,93,4,.15), rgba(255,183,3,.1));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 20px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: .9rem; color: var(--gray); margin: 0; }

/* ============================================================
   WHY US / USP STRIP
   ============================================================ */
.usp-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 32px 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.usp-item {
  display: flex; align-items: center; gap: 16px;
  color: var(--white);
}
.usp-item i { font-size: 2rem; opacity: .9; flex-shrink: 0; }
.usp-item-text strong { display: block; font-size: 1rem; font-weight: 700; font-family: 'Poppins',sans-serif; }
.usp-item-text span { font-size: .85rem; opacity: .85; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  opacity: .15;
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.stars { color: var(--secondary); font-size: .9rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .95rem; font-family: 'Poppins', sans-serif; }
.author-location { font-size: .8rem; color: var(--gray); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(232,93,4,.2);
}
.step-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step-item p { font-size: .875rem; color: var(--gray); margin: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #0f3460 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,93,4,.3) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { font-size: 2rem; color: var(--white); font-weight: 700; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.75); margin: 0; font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 1;}

/* ============================================================
   ARTICLE / CONTENT SECTIONS
   ============================================================ */
.article-content { max-width: 820px; min-width: 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
.table-scroll table { border-collapse: collapse; }
.article-content h2 { font-size: 1.8rem; margin-bottom: 1rem; margin-top: 2rem; }
.article-content h3 { font-size: 1.3rem; margin-bottom: .75rem; margin-top: 1.5rem; color: var(--primary); }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: .4rem; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.article-content th { background: var(--primary); color: white; padding: 12px 16px; text-align: left; font-weight: 600; }
.article-content td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.article-content tr:nth-child(even) td { background: var(--light-gray); }

.info-box {
  background: rgba(232,93,4,.07);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 1.5rem 0;
}
.info-box h4 { font-weight: 600; margin-bottom: 6px; color: var(--primary); }
.info-box p { margin: 0; font-size: .95rem; }

.highlight-box {
  background: linear-gradient(135deg, rgba(232,93,4,.08), rgba(255,183,3,.06));
  border: 1px solid rgba(232,93,4,.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 2rem 0;
}

/* Sidebar */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 20px 24px;
}
.sidebar-card-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin: 0; }
.sidebar-card-body { padding: 20px 24px; }
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text);
  transition: all var(--transition);
}
.sidebar-link:last-child { border: none; padding-bottom: 0; }
.sidebar-link i { color: var(--primary); width: 18px; text-align: center; }
.sidebar-link:hover { color: var(--primary); padding-left: 4px; }
.price-display {
  text-align: center;
  padding: 12px 0;
}
.price-display .price-from { font-size: .85rem; color: var(--gray); margin-bottom: 4px; }
.price-display .price-value { font-family: 'Poppins',sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); }
.price-display .price-unit { font-size: .9rem; color: var(--gray); }

/* ============================================================
   CATEGORY GRID (icon pills)
   ============================================================ */
.category-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.category-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .875rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  color: var(--text);
}
.category-pill i { color: var(--primary); font-size: .9rem; }
.category-pill:hover, .category-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(232,93,4,.3);
}
.category-pill:hover i, .category-pill.active i { color: var(--white); }

/* ============================================================
   BANNER / PROMO
   ============================================================ */
.promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex; align-items: flex-end;
}
.promo-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.promo-content {
  position: relative; z-index: 1;
  padding: 28px;
  color: var(--white);
}
.promo-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.promo-content p { font-size: .875rem; opacity: .85; margin-bottom: 14px; }

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--light-gray); }
.accordion-header i { color: var(--primary); transition: transform var(--transition); }
.accordion-header.open i { transform: rotate(180deg); }
.accordion-body {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-body.open { max-height: 400px; padding: 4px 22px 18px; }
.accordion-body p { font-size: .95rem; color: var(--gray); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; opacity: .7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.footer-col ul li a i { color: var(--primary); font-size: .8rem; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex; gap: 12px; margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span { font-size: .875rem; color: rgba(255,255,255,.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   MISC
   ============================================================ */
.rating-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.rating-bar-label { font-size: .85rem; min-width: 50px; color: var(--gray); }
.rating-bar-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--secondary); border-radius: 4px; }

.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
}
.badge-primary { background: rgba(232,93,4,.12); color: var(--primary); }
.badge-success { background: rgba(40,167,69,.12); color: var(--success); }
.badge-warning { background: rgba(255,183,3,.15); color: #b38600; }

.divider { height: 1px; background: var(--border); margin: 2rem 0; }

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

/* ── 1100px: sidebar stack, hero image hide ── */
@media (max-width: 1100px) {
  .hero-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .page-hero .hero-img { display: none; }
}

/* ── 960px: nav → hamburger ── */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .site-logo { font-size: 1.1rem; }
  .site-logo .logo-icon { width: 34px; height: 34px; font-size: .85rem; flex-shrink: 0; }
}

/* ── 900px: 2-col grids ── */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 2.4rem; }
  .products-grid-3, .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header h2 { font-size: 1.9rem; }
}

/* ── 768px: mobile layout ── */
@media (max-width: 768px) {
  /* Base spacing */
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }
  .section-sm { padding: 30px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 1.7rem; }
  .section-header p { font-size: .92rem; }
  .tag { font-size: .75rem; padding: 5px 14px; }

  /* Hero */
  .hero { min-height: 460px; padding: 48px 0; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-stats { gap: 20px; margin-top: 32px; padding-top: 24px; }
  .hero-stat-value { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 40px 0 30px; }
  .page-hero h1 { font-size: 1.65rem; }
  .page-hero p { font-size: .92rem; }
  .page-hero .breadcrumb { flex-wrap: wrap; gap: 4px; }
  .page-hero-actions { flex-direction: column; gap: 10px; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }

  /* Grids → 1 column */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid-3, .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .promo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .usp-grid { grid-template-columns: 1fr; gap: 14px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Product card */
  .product-card-footer { flex-wrap: wrap; gap: 8px; }
  .product-card-footer .btn { width: 100%; justify-content: center; }
  .product-card-img { height: 180px; }

  /* Feature cards */
  .feature-card { padding: 24px 20px; }
  .feature-icon { width: 56px; height: 56px; font-size: 1.4rem; margin-bottom: 14px; }

  /* CTA banner */
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
    gap: 18px;
  }
  .cta-banner h2 { font-size: 1.45rem; }
  .cta-banner p { font-size: .9rem; }
  .cta-actions { width: 100%; flex-direction: column; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Tables */
  .article-content table { font-size: .8rem; }
  .article-content th,
  .article-content td { padding: 8px 10px; }

  /* Article content */
  .article-content { max-width: 100%; }
  .article-content h2 { font-size: 1.45rem; margin-top: 1.5rem; }
  .article-content h3 { font-size: 1.1rem; }
  .highlight-box { padding: 18px 20px; }
  .info-box { padding: 14px 18px; }

  /* Sidebar */
  .sidebar-card-header { padding: 16px 18px; }
  .sidebar-card-body { padding: 16px 18px; }
  .price-display .price-value { font-size: 1.8rem; }

  /* Accordion */
  .accordion-header { padding: 14px 16px; font-size: .9rem; }
  .accordion-body { padding: 0 16px; }
  .accordion-body.open { padding: 4px 16px 14px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr !important; gap: 0; }
  .form-group { margin-bottom: 14px; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr !important; gap: 24px; }

  /* Legal */
  .legal-content { padding: 28px 16px; }
  .legal-toc { padding: 16px 18px; }
  .legal-toc li { font-size: .875rem; }

  /* Stat grid on rolunk page */
  .stat-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }
}

/* ── 540px: small phones ── */
@media (max-width: 540px) {
  .container { padding: 0 12px; }
  .section { padding: 36px 0; }

  .hero-content h1 { font-size: 1.65rem; }
  .hero-actions { gap: 8px; }

  .page-hero h1 { font-size: 1.45rem; }
  .page-hero { padding: 32px 0 24px; }

  .btn-lg { padding: 14px 22px; font-size: .92rem; }
  .btn { font-size: .85rem; }

  .section-header h2 { font-size: 1.5rem; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid-3, .products-grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 22px 16px; }
  .cta-banner h2 { font-size: 1.3rem; }

  .product-card-img { height: 160px; }
  .product-card-body { padding: 14px; }
  .product-card-footer { padding: 12px 14px; }
  .product-card-body h3 { font-size: 1rem; }

  .article-content h2 { font-size: 1.3rem; }
  .article-content h3 { font-size: 1.05rem; }
  .article-content th,
  .article-content td { padding: 6px 8px; font-size: .78rem; }

  .sidebar-card-body { padding: 14px 16px; }
  .sidebar-card-header { padding: 14px 16px; }
  .price-display .price-value { font-size: 1.6rem; }

  .footer-col h4 { font-size: .95rem; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .footer-social { justify-content: flex-start; }

  .stat-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── 380px: very small phones ── */
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.45rem; }
  .section-header h2 { font-size: 1.35rem; }
  .page-hero h1 { font-size: 1.3rem; }
  .stat-grid { grid-template-columns: 1fr !important; }
}
