/* ═══════════════════════════════════════════════
   KEBPRO — Modern Premium CSS (2026)
   @property, scroll-driven animations, container queries,
   glassmorphism, gradient animations, color-mix()
   ═══════════════════════════════════════════════ */

/* ── Animatable custom properties ── */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 135deg;
  inherits: false;
}

@property --glow-opacity {
  syntax: "<number>";
  initial-value: 0;
  inherits: false;
}

@property --shimmer-x {
  syntax: "<percentage>";
  initial-value: -100%;
  inherits: false;
}

/* ── Design tokens ── */
:root {
  --primary: #10243f;
  --primary-strong: #0a182d;
  --primary-light: #1c3a5e;
  --accent: #e09422;
  --accent-glow: rgba(224, 148, 34, 0.35);
  --accent-soft: #fff3e1;
  --text: #182538;
  --muted: #63758c;
  --surface: #ffffff;
  --surface-alt: #f3f6fa;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --border: #d8e1ec;
  --border-hover: #a8bfdc;
  --shadow: 0 12px 28px rgba(10, 24, 45, 0.1);
  --shadow-lg: 0 24px 48px rgba(10, 24, 45, 0.14);
  --shadow-glow: 0 8px 32px var(--accent-glow);
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & base ── */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background: #f5f8fc;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(224, 148, 34, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(16, 36, 63, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(224, 148, 34, 0.03) 0%, transparent 40%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle noise overlay — isolated composite layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  transform: translateZ(0);
}

a { color: inherit; text-decoration: none; }
.container { width: min(1140px, 92vw); margin: 0 auto; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border-bottom: 1px solid rgba(216, 225, 236, 0.45);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  transform: translateZ(0);
}

.site-header:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 30px rgba(10, 24, 45, 0.08);
}

.header-shell { padding: 0; }
.header-main {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.brand:hover { opacity: 1; }

.brand-logo {
  width: 85px;
  height: 67px;
  object-fit: contain;
  transition: transform 0.5s var(--ease-bounce), filter 0.4s var(--ease);
  filter: drop-shadow(0 2px 6px rgba(16, 36, 63, 0.1));
}
.brand:hover .brand-logo {
  transform: rotate(-6deg) scale(1.12);
  filter: drop-shadow(0 4px 12px rgba(224, 148, 34, 0.25));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-cluster,
.header-utilities {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.main-nav > a,
.nav-cluster > a,
.dropdown-toggle {
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.25s var(--ease);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 0;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.nav-cluster > a:hover,
.nav-cluster > a.active,
.nav-dropdown.active > .dropdown-toggle,
.dropdown-toggle:hover {
  color: var(--primary);
  background: rgba(16, 36, 63, 0.05);
}

/* Active nav indicator dot */
.nav-cluster > a.active::after,
.nav-dropdown.active > .dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.nav-dropdown { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.nav-dropdown::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(216, 225, 236, 0.7);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: none;
  overflow: hidden;
  z-index: 50;
  transform-origin: top;
  animation: dropdownReveal 0.25s var(--ease);
}

@keyframes dropdownReveal {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dropdown-menu a {
  display: block;
  padding: 0.72rem 0.9rem;
  border-bottom: 1px solid rgba(237, 242, 248, 0.8);
  color: var(--text);
  transition: all 0.2s var(--ease);
}
.dropdown-menu a:last-child { border-bottom: 0; }
.dropdown-menu a:hover { background: rgba(16, 36, 63, 0.04); padding-left: 1.1rem; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }

.cta-link {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 0.58rem 0.92rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(16, 36, 63, 0.2);
}
.cta-link:hover,
.cta-link.active {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
  box-shadow: 0 6px 24px rgba(16, 36, 63, 0.3);
  transform: translateY(-1px);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.16rem;
  border-radius: 999px;
  background: rgba(242, 246, 251, 0.8);
  border: 1px solid var(--border);
}

.lang-pill {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  font-size: 0.8rem;
  font-weight: 800;
  transition: all 0.25s var(--ease);
}
.lang-pill.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 2px 8px rgba(16, 36, 63, 0.2);
}

.menu-toggle { display: none; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ── Sections ── */
.section {
  padding: 4.8rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
.section.alt {
  background: var(--surface-alt);
  border-top: 1px solid rgba(216, 225, 236, 0.5);
  border-bottom: 1px solid rgba(216, 225, 236, 0.5);
  position: relative;
}

/* ── Hero ── */
.hero { padding: 5.2rem 0 4.4rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.hero-visual-wrap { display: grid; gap: 0.8rem; align-content: start; }
.hero-image {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 225, 236, 0.5);
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.hero-image:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 32px 64px rgba(10, 24, 45, 0.18);
}

.hero h1, .page-hero h1 {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  color: var(--primary-strong);
  text-wrap: balance;
}

/* Hero h1 — plain color, no gradient effect */
.hero h1 {
  color: var(--primary-strong);
  font-size: clamp(2.9rem, 2.55vw, 3.28rem);
  line-height: 1.15;
}

.eyebrow {
  display: inline-block;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9a5f12;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.lead { color: var(--muted); font-size: 1.06rem; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }

/* ── Cards, panels ── */
.hero-card, .panel, .card, .service-item {
  background: #ffffff;
  border: 1px solid rgba(216, 225, 236, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.35s var(--ease);
  position: relative;
}

/* Gradient border glow on hover */
.card::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    var(--gradient-angle),
    transparent 30%,
    rgba(224, 148, 34, 0.3) 50%,
    transparent 70%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.card:hover::before,
.stat-card:hover::before {
  opacity: 1;
  animation: rotateGradient 3s linear infinite;
}

@keyframes rotateGradient {
  to { --gradient-angle: 495deg; }
}

.hero-card { padding: 1.35rem; align-self: center; }
.hero-logo-card { display: grid; grid-template-columns: 64px 1fr; gap: 0.8rem; align-items: start; }
.hero-mini-logo { width: 56px; height: 56px; object-fit: contain; }
.hero-card ul { margin: 0.7rem 0 0; padding-left: 1rem; }

.section-head { max-width: 720px; margin-bottom: 1.5rem; }
.section-head p { color: var(--muted); }
.section-head h2 { text-wrap: balance; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.card {
  padding: 1.4rem;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  padding: 0.82rem 1.2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 18px rgba(16, 36, 63, 0.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow: 0 8px 28px rgba(16, 36, 63, 0.3);
}

/* Shimmer sweep on primary buttons — hover only */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  pointer-events: none;
  transition: none;
}

.btn-primary:hover::after {
  animation: btnShimmer 0.6s var(--ease) forwards;
}

@keyframes btnShimmer {
  from { background-position: 200% 0; }
  to { background-position: -50% 0; }
}

.btn-secondary {
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-strong);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--border-hover);
  box-shadow: 0 6px 20px rgba(16, 36, 63, 0.1);
  background: #fff;
}

/* ── Products intro ── */
.products-intro-text {
  margin-top: 2rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.retail-coming-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 2rem;
  align-items: center;
  overflow: hidden;
}
.retail-coming-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.retail-coming-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #fff8ed, #eef5ff);
  box-shadow: var(--shadow-soft);
}
.retail-coming-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.inline-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.inline-link:hover { text-decoration: underline; }

/* ── CTA panels (quote / order) ── */
.cta-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cta-panel h2 { font-size: 1.35rem; }
.cta-panel p { color: var(--text-muted); flex: 1; }
.cta-panel .btn { align-self: flex-start; }
@media (max-width: 640px) {
  .cta-panels { grid-template-columns: 1fr; }
  .retail-coming-panel { grid-template-columns: 1fr; gap: 1.25rem; }
  .retail-coming-copy h2 { font-size: clamp(1.8rem, 10vw, 3rem); }
}

/* ── CTA strip ── */
.cta-strip-inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f2747 0%, #17396a 50%, #1c4a7e 100%);
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

/* Decorative glow orbs in CTA */
.cta-strip-inner::before,
.cta-strip-inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.cta-strip-inner::before {
  width: 200px;
  height: 200px;
  background: rgba(224, 148, 34, 0.15);
  filter: blur(60px);
  top: -60px;
  right: -40px;
}
.cta-strip-inner::after {
  width: 160px;
  height: 160px;
  background: rgba(29, 155, 125, 0.12);
  filter: blur(50px);
  bottom: -50px;
  left: -20px;
}

.cta-strip-inner .btn { position: relative; z-index: 1; }

/* ── Page hero ── */
.page-hero { padding: 4rem 0 1.5rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}
.breadcrumb a:hover { text-decoration: underline; }
.landing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 1.2rem;
  align-items: start;
}
.landing-content {
  display: grid;
  gap: 1.5rem;
}
.landing-section h2 {
  margin-bottom: 0.7rem;
  color: var(--primary-strong);
}
.landing-section p {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0.55rem 0;
}
.landing-aside {
  position: sticky;
  top: 96px;
}
.landing-aside h2 {
  font-size: 1.2rem;
  color: var(--primary-strong);
  margin-bottom: 0.9rem;
}
.landing-benefits {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0 0 1.2rem;
  list-style: none;
}
.landing-benefits li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.landing-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.panel { padding: 1.5rem; }
.panel.wide { max-width: 100%; }
.service-list { display: grid; gap: 1rem; }
.service-item { display: grid; grid-template-columns: 70px 1fr; gap: 1rem; padding: 1rem; }
.service-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(237, 243, 251, 0.8); font-size: 1.4rem; }

/* ── Contact form ── */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 1.2rem; }
.contact-form { display: grid; gap: 0.45rem; }
.contact-form label { margin-top: 0.65rem; font-weight: 700; font-size: 0.92rem; }

/* ── Contact info cards ── */
.contact-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.contact-info-card { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.5rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); text-decoration: none; color: inherit; }
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* Tel links: clickable on touch devices, plain text on desktop */
.contact-info-body a[href^="tel:"] { color: var(--primary); text-decoration: none; font-weight: 600; transition: color 0.2s; }
@media (hover: hover) and (pointer: fine) {
  .contact-info-body a[href^="tel:"] { color: inherit; font-weight: inherit; cursor: text; pointer-events: none; }
}
.contact-info-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #eef4fb, #e3ecf8); color: var(--primary); display: grid; place-content: center; }
.contact-info-body h3 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--primary); }
.contact-info-body p { font-size: 0.92rem; line-height: 1.55; }
.contact-info-body a { color: var(--primary); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.contact-info-body a:hover { color: var(--accent); }
.contact-fax { color: var(--muted); font-size: 0.85rem !important; margin-top: 0.2rem; }

/* ── Contact map ── */
.contact-map { overflow: hidden; border-radius: var(--radius); padding: 0; }
.contact-map iframe { border-radius: var(--radius); }

/* ── Contact quick links ── */
.contact-quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.contact-quick-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.5rem; gap: 0.8rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.contact-quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-quick-icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: grid; place-content: center; }
.contact-quick-card h3 { font-size: 1.1rem; color: var(--primary); }
.contact-quick-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; flex: 1; }
.contact-quick-card .btn { margin-top: auto; }
.contact-form input, .contact-form textarea, .contact-form select {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: rgba(251, 253, 255, 0.9);
  transition: all 0.3s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(224, 148, 34, 0.12), 0 4px 16px rgba(16, 36, 63, 0.06);
  background: #fff;
}
.required-mark { color: #c77312; font-weight: 900; }
.form-required-hint { margin: 0 0 0.35rem; color: var(--muted); font-size: 0.9rem; }
.form-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -0.15rem 0 0.35rem;
}
.form-brand img {
  width: 46px !important;
  max-width: 46px !important;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(16, 36, 63, 0.1));
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.error { color: #b21f2d; font-size: 0.88rem; }
.alert { margin: 0.75rem 0 1rem; padding: 0.75rem 0.9rem; border-radius: 12px; font-weight: 600; }
.alert.success { background: #e8f8ef; border: 1px solid #a8ddbe; color: #1d6e43; }
.success-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10000;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: center;
  width: min(620px, calc(100vw - 2rem));
  margin: 0;
  padding: 1rem 1.1rem 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(29, 155, 125, 0.25);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 15%, rgba(29, 155, 125, 0.14), transparent 32%),
    linear-gradient(135deg, #f2fff7 0%, #ffffff 100%);
  box-shadow:
    0 24px 70px rgba(10, 24, 45, 0.22),
    0 0 0 9999px rgba(7, 18, 32, 0.2);
  animation: successPop 0.45s var(--ease-bounce) both;
}
.success-toast-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(29, 155, 125, 0.16);
  font-size: 2.25rem;
}
.success-toast strong { display: block; color: #14532d; line-height: 1.35; }
.success-toast span { display: block; margin-top: 0.2rem; color: var(--muted); font-size: 0.92rem; }
.success-toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #1d9b7d, var(--accent));
  transform-origin: left;
  animation: successProgress 6.5s linear forwards;
}
.success-toast.is-hiding {
  opacity: 0;
  transform: translate(-50%, -48%) scale(0.98);
  transition: all 0.35s var(--ease);
  pointer-events: none;
}
@keyframes successPop {
  from { opacity: 0; transform: translate(-50%, -46%) scale(0.98); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes successProgress {
  to { transform: scaleX(0); }
}

.order-products-builder { display: grid; gap: 0.65rem; margin-top: 0.65rem; }
.order-product-rows { display: grid; gap: 0.65rem; }
.order-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(140px, 0.6fr) 44px;
  gap: 0.55rem;
  align-items: center;
}
.order-product-select { width: 100%; }
.order-remove-product {
  width: 44px;
  min-height: 44px;
  padding: 0;
  font-size: 1.25rem;
}
.order-add-product { justify-self: start; }

/* ── About page ── */
.about-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) 260px; gap: 1.5rem; align-items: start; }
.about-intro-text h2 { margin-bottom: 1.25rem; }
.about-intro-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.about-hero-photo {
  padding: 0.7rem;
  overflow: hidden;
  position: static !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  will-change: auto;
}
.about-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}
.about-stats-col { display: flex; flex-direction: column; gap: 0.9rem; }
.about-stat-card { padding: 1.1rem 1.3rem; text-align: center; }
.about-stat-value { display: block; font-size: 1.75rem; font-weight: 800; color: var(--primary-strong); line-height: 1.1; }
.about-stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }

.about-philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.about-philosophy-card { padding: 1.6rem 1.5rem; position: relative; }
.about-philosophy-num { display: block; font-size: 2rem; font-weight: 900; color: var(--accent); opacity: 0.18; line-height: 1; margin-bottom: 0.6rem; font-variant-numeric: tabular-nums; }
.about-philosophy-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary-strong); margin-bottom: 0.5rem; }
.about-philosophy-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── Career gallery ── */
.career-gallery {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
.career-gallery::before {
  content: "";
  position: absolute;
  inset: auto -8% -35% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(224, 148, 34, 0.12);
  pointer-events: none;
}
.career-gallery-copy { display: grid; align-content: center; gap: 0.85rem; position: relative; z-index: 1; }
.career-gallery-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.career-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}
.career-photo { margin: 0; overflow: hidden; border-radius: 22px; min-height: 160px; background: var(--surface-alt); }
.career-photo-large { grid-row: span 2; min-height: 330px; }
.career-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.career-gallery:hover .career-photo img { transform: scale(1.035); }

/* ── Footer ── */
.site-footer {
  margin-top: 2rem;
  background: linear-gradient(180deg, #0e1d33 0%, #091425 100%);
  color: #d2dded;
  padding-top: 2.5rem;
  position: relative;
}

/* Animated gradient border top */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light), var(--accent));
  background-size: 300% 100%;
  animation: footerBorderShift 12s ease infinite;
}

@keyframes footerBorderShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr)); gap: 1rem; }
.footer-grid h3, .footer-grid h4 { color: #fff; }
.footer-grid a, .footer-grid p, .footer-grid h4 { display: block; margin: 0.3rem 0; }

/* Footer link hover underline */
.footer-grid a {
  position: relative;
  transition: color 0.25s var(--ease);
  width: fit-content;
}
.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.footer-grid a:hover { color: #fff; }
.footer-grid a:hover::after { width: 100%; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  padding: 1rem 0;
  font-size: 0.95rem;
}

.center { text-align: center; }

/* ── Scroll animations ── */
.section-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  will-change: opacity, transform;
}
.section-animate.is-visible { opacity: 1; transform: translateY(0); }

/* Page hero always appears instantly — it's already in viewport */
.page-hero.section-animate {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Scroll-driven parallax (progressive enhancement) */
@supports (animation-timeline: view()) {
  .section.alt {
    animation: sectionParallax linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  @keyframes sectionParallax {
    from { background-position: center 0%; }
    to { background-position: center 100%; }
  }
}

/* ── Product explorer ── */
.explorer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.explorer-tab {
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.explorer-tab:hover {
  border-color: var(--border-hover);
  color: var(--primary);
}
.explorer-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(16,36,63,0.2);
}
.explorer-panel {
  display: none;
  animation: explorerFade 0.35s var(--ease);
}
.explorer-panel.active { display: block; }
@keyframes explorerFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.explorer-panel-lead {
  color: var(--muted);
  margin-bottom: 1rem;
}
.explorer-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.explorer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.25s var(--ease);
}
.explorer-item:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 12px rgba(16,36,63,0.06);
}
.explorer-item strong {
  font-size: 0.92rem;
}
.explorer-item-size {
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ── FAQ accordion ── */
.faq-list {
  display: grid;
  gap: 0.6rem;
  max-width: 800px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item[open] {
  border-color: var(--border-hover);
  box-shadow: 0 4px 16px rgba(16,36,63,0.06);
}
.faq-question {
  padding: 1rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.25s var(--ease);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover { color: var(--primary); }
.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  animation: faqReveal 0.3s var(--ease);
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-hidden { display: none; }
.faq-list.faq-expanded .faq-hidden { display: block; }
.faq-toggle { margin-top: 0.3rem; }

/* ── Callback widget ── */
.callback-widget {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 40;
}
.callback-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(16,36,63,0.25);
  transition: all 0.3s var(--ease);
}
.callback-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(16,36,63,0.3);
}
.callback-panel {
  display: none;
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 0;
  width: 280px;
  padding: 1.2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(216,225,236,0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: callbackReveal 0.3s var(--ease);
}
.callback-widget.open .callback-panel { display: block; }
.callback-panel h3 { margin: 0 0 0.8rem; font-size: 1.05rem; }
.callback-form { display: grid; gap: 0.5rem; }
.callback-form input, .callback-form select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font: inherit;
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 0.3s var(--ease);
}
.callback-form input:focus, .callback-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,148,34,0.1);
}
.callback-form .btn { margin-top: 0.3rem; }
.callback-success {
  display: none;
  text-align: center;
  font-weight: 700;
  color: #1d6e43;
  margin: 0.5rem 0 0;
}
.callback-widget.sent .callback-form { display: none; }
.callback-widget.sent .callback-success { display: block; }
@keyframes callbackReveal {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 768px) {
  .callback-toggle-text { display: none; }
  .callback-toggle { padding: 0.75rem; }
  .callback-panel { width: calc(100vw - 2rem); max-width: 300px; }
  .explorer-tabs { gap: 0.35rem; }
  .explorer-tab { font-size: 0.82rem; padding: 0.45rem 0.75rem; }
  .explorer-items { grid-template-columns: 1fr; }
}

/* ── Széchenyi floating badge ── */
.szechenyi-floating {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 40;
  width: min(220px, 30vw);
  transition: transform 0.3s var(--ease);
}
.szechenyi-floating:hover {
  transform: translateY(-4px);
}
.szechenyi-floating-logo { display: block; width: 100%; height: auto; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; margin-bottom: 1rem; border-radius: 12px; }
.product-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.95);
}
.product-table th, .product-table td {
  padding: 0.85rem 0.8rem;
  border-bottom: 1px solid rgba(233, 238, 245, 0.8);
  text-align: left;
}
.product-table th {
  background: linear-gradient(135deg, #eef3fb, #f5f8fd);
  color: var(--primary-strong);
  font-weight: 700;
}
.product-table tr {
  transition: background 0.2s var(--ease);
}
.product-table tbody tr:hover {
  background: rgba(237, 243, 251, 0.5);
}

/* ── Grants ── */
.grant-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.grant-image {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin: 0.8rem 0 1rem;
  transition: transform 0.3s var(--ease);
}
.grant-image:hover { transform: scale(1.02); }

/* ── Forms / Admin ── */
.compact-form { max-width: 620px; }
.inline-form { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.admin-filters { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1rem; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 0.75rem; border-bottom: 1px solid #e6edf6; text-align: left; vertical-align: top; }
.admin-table th { background: #eef3fb; }
.legal-content h2 { margin-top: 1.7rem; }

/* ── Reveal / stagger animations ── */
.reveal-grid [data-stagger], .timeline-item, .region-chip {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transition-delay: var(--stagger-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-grid [data-stagger].is-visible, .timeline-item.is-visible, .region-chip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-visual { animation: heroFloat 5.5s ease-in-out infinite; }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── Logistics ── */
.logistics-layout { display: grid; gap: 1.6rem; }
.logistics-short-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: center; }
.logistics-short-copy .lead { color: var(--text-muted); margin: 1rem 0 1.5rem; line-height: 1.7; }
.logistics-short-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.logistics-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.logistics-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 226, 239, 0.7);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(16, 36, 63, 0.08);
  color: var(--primary);
  font-weight: 700;
  transition: all 0.3s var(--ease);
}
.logistics-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 36, 63, 0.12);
}
.logistics-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(224, 148, 34, 0.12);
}

.logistics-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.stat-card {
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(16, 36, 63, 0.05);
}
.stat-label {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.55rem;
}
.stat-card strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.stat-card p { margin: 0; color: var(--muted); }
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Logistics dashboard ── */
.logistics-dashboard {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(239, 244, 251, 0.9) 0%, rgba(255, 255, 255, 0.95) 52%, rgba(242, 247, 242, 0.9) 100%);
  border-radius: var(--radius-lg);
}
.dashboard-map {
  position: relative;
  align-self: center;
  display: grid;
  place-items: center;
  padding: 10rem 0.9rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(220, 231, 242, 0.7);
  background: radial-gradient(circle at top left, #fdfefe 0%, #eaf1fa 54%, #dde8f5 100%);
}
.dashboard-side { display: grid; gap: 0.9rem; align-content: start; }
.dashboard-glow { position: absolute; border-radius: 999px; filter: blur(50px); opacity: 0.35; }
.dashboard-glow-a { width: 180px; height: 180px; background: rgba(29, 155, 125, 0.22); top: 28px; left: 38px; }
.dashboard-glow-b { width: 200px; height: 200px; background: rgba(224, 148, 34, 0.18); right: 20px; bottom: 45px; }
.hungary-map-shell {
  position: relative;
  width: min(100%, 594px);
  margin: 0 auto;
  aspect-ratio: 3 / 2;
}
.hungary-map-image { width: 100%; height: 100%; object-fit: cover; display: block; filter: drop-shadow(0 18px 35px rgba(15, 39, 71, 0.16)); opacity: 0.96; }
.hungary-route-overlay { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hungary-route { fill: none; stroke: rgba(29, 155, 125, 0.58); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 12 12; }
.strong-route { stroke: rgba(29, 155, 125, 0.78); stroke-width: 8; }
.map-node {
  position: absolute;
  z-index: 2;
  padding: 0;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--primary);
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(15, 39, 71, 0.18);
  transform: translate(-50%, -50%);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.map-node.is-active { background: var(--accent); }
.map-node.emphasis {
  transform: translate(-50%, -50%) scale(1.16);
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(224, 148, 34, 0.14), 0 10px 20px rgba(224, 148, 34, 0.22);
}
.map-origin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #1d9b7d;
  border: 4px solid #fff;
  box-shadow: 0 0 0 5px rgba(29, 155, 125, 0.16), 0 10px 20px rgba(29, 155, 125, 0.25);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.map-origin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(29, 155, 125, 0.35);
  border-radius: inherit;
}
.dashboard-attribution { display: none !important; }
.region-overlay { display: none; }

.dashboard-panel {
  position: absolute;
  z-index: 3;
  width: min(300px, calc(100% - 1.8rem));
  padding: 0.82rem 0.95rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(220, 228, 238, 0.85);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.35s var(--ease);
}
.dashboard-panel h3 { margin: 0 0 0.28rem; font-size: 1.02rem; line-height: 1.08; }
.dashboard-panel p:last-child { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.43; }
.logistics-schedule {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.65rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(224, 148, 34, 0.16), rgba(224, 148, 34, 0.24));
  color: #9a5d00;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-panel.panel-top-left,
.dashboard-panel.panel-top-right,
.dashboard-panel.panel-bottom-left,
.dashboard-panel.panel-bottom-right { margin: 0; }
.dashboard-panel.panel-top-left { left: 1.15rem; right: auto; top: 0.85rem; bottom: auto; }
.dashboard-panel.panel-top-right { right: 1.15rem; left: auto; top: 0.85rem; bottom: auto; }
.dashboard-panel.panel-bottom-left { left: 1.15rem; right: auto; bottom: 0.35rem; top: auto; }
.dashboard-panel.panel-bottom-right { right: 1.15rem; left: auto; bottom: 0.35rem; top: auto; }

.region-card {
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(216, 225, 236, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 0.78rem 0.9rem;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.region-card:hover, .region-card:focus, .region-card.active {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.region-chip-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef4fb, #e3ecf8);
  color: var(--primary);
  font-weight: 800;
  transition: all 0.3s var(--ease);
}
.region-card:hover .region-chip-index,
.region-card.active .region-chip-index {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
}
.region-card-copy { display: grid; gap: 0.32rem; }
.region-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}
.region-card-copy strong { font-size: 1rem; line-height: 1.15; }
.region-card-schedule-wrap {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.55rem;
  min-width: min(230px, 44%);
}
.region-card-schedule-label {
  display: inline-flex;
  justify-content: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(224, 148, 34, 0.13);
  color: #b2720a;
  font-size: 0.83rem;
  white-space: nowrap;
}
.region-card-schedule {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.25rem 0.56rem;
  border-radius: 999px;
  background: rgba(224, 148, 34, 0.14);
  color: #a86600;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.region-card-copy small { color: var(--muted); line-height: 1.55; font-size: 0.9rem; }

/* ── Products ── */
.product-category-nav { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.2rem 0 1.6rem; }
.product-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; margin-bottom: 1.5rem; }
.product-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-card {
  display: grid;
  grid-template-rows: auto auto minmax(72px, 1fr) auto;
  gap: 0.85rem;
  min-height: 100%;
}
.product-hub-card { grid-template-rows: auto auto auto 1fr auto; }
.product-card-link { color: inherit; text-decoration: none; cursor: pointer; }
.product-card-link .text-link { align-self: end; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-image-slot {
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  position: relative;
  background:
    radial-gradient(circle at 50% 42%, rgba(224, 148, 34, 0.1), transparent 38%),
    linear-gradient(135deg, #f7fafc 0%, #eef4f8 100%);
}
.product-slot-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-slot-image { transform: scale(1.03); }
.product-image-slot-elosutott .product-slot-image { object-position: center 54%; }
.product-image-slot-kebab-nyars .product-slot-image { object-position: center 48%; }
.product-placeholder {
  min-height: 164px;
  border-radius: 16px;
  background: linear-gradient(135deg, #17396a 0%, #0f2747 100%);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.product-placeholder::before, .product-placeholder::after { content: ""; position: absolute; border-radius: 999px; background: rgba(255, 255, 255, 0.06); }
.product-placeholder::before { width: 140px; height: 140px; top: -35px; right: -20px; }
.product-placeholder::after { width: 90px; height: 90px; bottom: -20px; left: -15px; }
.product-placeholder span { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.product-placeholder strong { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.35rem; }
.product-placeholder-fallback { display: none; min-height: 164px; }
.product-category-block { margin-top: 1.8rem; scroll-margin-top: 90px; }
.text-link { color: var(--accent); font-weight: 700; transition: color 0.2s; }
.text-link:hover { color: color-mix(in srgb, var(--accent) 80%, var(--primary)); }

/* ── Timeline ── */
.timeline { display: grid; gap: 1rem; position: relative; }
.timeline::before { content: ""; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, rgba(29, 155, 125, 0.7), rgba(15, 39, 71, 0.25)); }
.timeline-item { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; position: relative; }
.timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, #17396a, #0f2747);
  color: #fff;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.12rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 30px rgba(15, 39, 71, 0.18);
  transition: all 0.3s var(--ease);
}
.timeline-content h3 { margin: 0; font-size: 1rem; line-height: 1.55; }

/* ── Status / Admin ── */
.status-form { display: grid; gap: 0.45rem; min-width: 150px; }
.status-select { border: 1px solid var(--border); border-radius: 10px; padding: 0.45rem 0.6rem; background: #fff; font: inherit; }
.status-badge { display: inline-flex; align-items: center; justify-content: center; width: fit-content; padding: 0.28rem 0.55rem; border-radius: 999px; font-size: 0.8rem; font-weight: 800; }
.status-new { background: #edf4ff; color: #224a7d; }
.status-in_progress { background: #fff4de; color: #99610f; }
.status-called_back { background: #e9f8ef; color: #1f7249; }
.status-closed { background: #eef0f4; color: #445266; }
.status-active { background: #d1fadf; color: #166534; border: 1px solid #86efac; }
.status-inactive { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.admin-overview-grid { display: grid; gap: 1rem; }
.admin-db-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.admin-db-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.admin-db-card span { display: inline-block; margin-bottom: 0.45rem; color: var(--accent); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; }
.admin-db-card strong { display: block; font-size: 1.35rem; margin-bottom: 0.35rem; color: var(--primary); }
.admin-db-card small { display: block; color: var(--muted); line-height: 1.5; }
.admin-storage-card { grid-column: span 2; }
.admin-storage-bar { height: 10px; border-radius: 999px; background: #e9f0f8; overflow: hidden; margin: 0.4rem 0 0.5rem; }
.admin-storage-bar span { display: block; height: 100%; margin: 0; border-radius: inherit; background: linear-gradient(90deg, #25b277, #f0a126); }
.admin-db-status-section { padding-top: 0; }
.admin-db-compact {
  padding: 1rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(224, 148, 34, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.admin-db-compact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}
.admin-db-compact-head .eyebrow { margin-bottom: 0.35rem; }
.admin-db-compact-head h2 { margin: 0; font-size: 1.1rem; }
.admin-db-compact-meter {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(216, 225, 236, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
}
.admin-db-compact-meter strong {
  color: var(--primary);
  font-size: 1rem;
}
.admin-db-compact .admin-db-cards {
  grid-template-columns: 0.8fr 0.9fr 1.1fr 1.25fr;
  gap: 0.7rem;
  margin-top: 0.65rem;
}
.admin-db-compact .admin-db-card {
  padding: 0.75rem;
  border-radius: 14px;
  box-shadow: none;
}
.admin-db-compact .admin-db-card span {
  margin-bottom: 0.25rem;
  font-size: 0.66rem;
}
.admin-db-compact .admin-db-card strong {
  font-size: 1rem;
  margin-bottom: 0.18rem;
}
.admin-db-compact .admin-db-card small {
  font-size: 0.78rem;
  line-height: 1.35;
}
.admin-db-compact .admin-storage-card { grid-column: auto; }
.admin-db-compact .admin-storage-bar {
  height: 7px;
  margin: 0.28rem 0 0.35rem;
}
.admin-diagnostics-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.admin-diagnostic-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.admin-diagnostic-label { display: inline-block; margin-bottom: 0.45rem; color: var(--accent); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; }
.admin-diagnostic-card strong { display: block; font-size: 1.35rem; margin-bottom: 0.35rem; }
.admin-diagnostic-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.admin-diagnostic-alert { border-color: #f0c88e; background: linear-gradient(180deg, #fffaf2 0%, #fff 100%); }
.admin-mini-btn { padding: 0.5rem 0.7rem; font-size: 0.86rem; }
.admin-danger-btn { border-color: #fecaca; color: #991b1b; background: #fff7f7; }
.admin-danger-btn:hover { background: #fee2e2; border-color: #fca5a5; }
.admin-table-scroll { overflow: auto; max-height: 620px; border: 1px solid #e6edf6; border-radius: 14px; }
.admin-table-scroll .admin-table { margin: 0; }
.admin-table-scroll .admin-table thead th { position: sticky; top: 0; z-index: 2; }
.admin-applications-scroll { max-height: 520px; }
.admin-db-footer { display: flex; flex-wrap: wrap; gap: 1rem 2rem; padding: 0.75rem 0 1.25rem; border-top: 1px solid var(--border); margin-top: 1rem; }
.admin-db-item { font-size: 0.78rem; color: var(--muted); }
.admin-db-label { opacity: 0.7; }
.admin-db-item strong { font-weight: 700; color: var(--primary); }
.admin-db-ok strong { color: #166534; }
.admin-db-error strong { color: #991b1b; }

.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease);
}
.confirm-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.confirm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 45, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.confirm-modal-card {
  position: relative;
  width: min(430px, 94vw);
  overflow: hidden;
  border: 1px solid rgba(216, 225, 236, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(224, 148, 34, 0.16), transparent 38%),
    #ffffff;
  box-shadow: 0 26px 70px rgba(10, 24, 45, 0.26);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.22s var(--ease);
}
.confirm-modal.is-open .confirm-modal-card {
  transform: translateY(0) scale(1);
}
.confirm-modal-body {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1rem;
}
.confirm-modal-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff3e1;
  color: #a15f0a;
  font-size: 1.45rem;
  box-shadow: inset 0 0 0 1px rgba(224, 148, 34, 0.18);
}
.confirm-modal-title {
  margin: 0 0 0.28rem;
  color: var(--primary-strong);
  font-size: 1.12rem;
}
.confirm-modal-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.confirm-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  padding: 0 1.25rem 1.25rem;
}
.confirm-modal-actions .btn {
  min-width: 110px;
  padding: 0.72rem 1rem;
}
.confirm-modal-danger {
  background: linear-gradient(135deg, #c2410c, #e09422);
  color: #fff;
  box-shadow: 0 10px 24px rgba(194, 65, 12, 0.24);
}
.confirm-modal-danger:hover {
  box-shadow: 0 14px 30px rgba(194, 65, 12, 0.3);
}

/* ── Quality article ── */
.quality-article { display: grid; gap: 1rem; }
.quality-block { padding-bottom: 0.65rem; border-bottom: 1px solid rgba(220, 228, 238, 0.9); }
.quality-block:last-child { border-bottom: 0; padding-bottom: 0; }
.quality-block-head { display: grid; gap: 0.15rem; margin-bottom: 0.45rem; }
.quality-block-chip { display: none; }
.quality-copy-grid { display: grid; gap: 0.45rem; }
.quality-steps-list { margin: 0.2rem 0 0; padding-left: 1.2rem; display: grid; gap: 0.35rem; color: var(--text); }

/* ── Quality timeline ── */
.quality-timeline-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.4rem; align-items: start; }
.timeline-intro { position: sticky; top: 96px; }
.timeline-intro-kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #c77312;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
}
.timeline-checks { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1rem; }
.timeline-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(220,228,238,0.9);
  font-weight: 700;
  color: var(--primary);
  transition: all 0.25s var(--ease);
}
.timeline-check:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(16, 36, 63, 0.08); }
.timeline-check::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }
.timeline-quality-photo {
  margin: 1.15rem 0 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(16, 36, 63, 0.12);
  background: var(--surface-alt);
}
.timeline-quality-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.timeline-advanced { gap: 1.2rem; }
.timeline-advanced::before { left: 28px; background: linear-gradient(180deg, rgba(29, 155, 125, 0.78), rgba(15, 39, 71, 0.18)); }
.timeline-step-card { grid-template-columns: 72px 1fr; gap: 1.1rem; }
.timeline-marker-number { font-size: 0.84rem; font-weight: 800; color: rgba(255,255,255,0.9); }
.timeline-marker-icon { font-size: 0.78rem; font-weight: 800; color: #fff; }
.timeline-step-topline { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 0.8rem; }
.timeline-step-tag {
  display: inline-flex;
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  background: rgba(238, 244, 251, 0.9);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.timeline-step-card .timeline-content { transition: all 0.3s var(--ease); }
.timeline-step-card.is-visible .timeline-content,
.timeline-step-card:hover .timeline-content {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}
.timeline-step-card:hover .timeline-marker {
  transform: scale(1.08);
  box-shadow: 0 16px 36px rgba(15, 39, 71, 0.24);
}
.timeline-step-card .timeline-content h3 { margin: 0; font-size: 1rem; line-height: 1.7; }

/* ═══════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  z-index: 31;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   ANIMATED SVG ICONS
   ═══════════════════════════════════════ */

/* Section icon (logistics truck) */
.section-icon {
  width: 56px;
  height: 32px;
  margin-bottom: 0.5rem;
}

/* Card icons */
.card-icon {
  width: 36px;
  height: 42px;
  margin-bottom: 0.6rem;
}
.icon-snowflake { width: 36px; height: 36px; }
.icon-clipboard { width: 34px; height: 42px; }

/* Shield check — draw-in animation */
.icon-shield .shield-check {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.8s var(--ease);
}
.is-visible .icon-shield .shield-check {
  stroke-dashoffset: 0;
}

/* Snowflake — very slow rotation */
.icon-snowflake {
  animation: snowflakeSpin 20s linear infinite;
}
@keyframes snowflakeSpin {
  to { transform: rotate(360deg); }
}

/* Clipboard lines — stagger in */
.icon-clipboard .clip-line {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.5s var(--ease);
}
.is-visible .icon-clipboard .clip-line-1 { stroke-dashoffset: 0; transition-delay: 0.2s; }
.is-visible .icon-clipboard .clip-line-2 { stroke-dashoffset: 0; transition-delay: 0.4s; }
.is-visible .icon-clipboard .clip-line-3 { stroke-dashoffset: 0; transition-delay: 0.6s; }

/* ═══════════════════════════════════════
   MAP ROUTE ANIMATIONS
   ═══════════════════════════════════════ */
.route-anim {
  stroke-dasharray: 8 6;
  stroke-dashoffset: 0;
  animation: routeFlow 2.5s linear infinite;
}
@keyframes routeFlow {
  to { stroke-dashoffset: -28; }
}

/* ═══════════════════════════════════════
   CARD LIGHT SWEEP (hover)
   ═══════════════════════════════════════ */
.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  pointer-events: none;
  transition: none;
}
.card:hover::after {
  animation: cardSweep 0.6s var(--ease) forwards;
}
@keyframes cardSweep {
  to { left: 125%; }
}

/* ═══════════════════════════════════════
   COUNT-UP (JS handles the number, CSS for style)
   ═══════════════════════════════════════ */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* ── Zip checker ── */
.zip-checker {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.zip-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 260px;
}
.zip-input {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0.72rem 1rem;
  font: inherit;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
  width: 140px;
  transition: all 0.3s var(--ease);
}
.zip-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(224,148,34,0.12);
  background: #fff;
}
.zip-result {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  min-height: 1.2em;
}
.zip-result.zip-error {
  color: var(--muted);
  font-weight: 600;
}
.zip-labels { display: none; }


/* ═══════════════════════════════════════
   RESPONSIVE — 1100px (nav breakpoint)
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .header-main { grid-template-columns: 1fr auto; }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 4vw;
    left: 4vw;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(216, 225, 236, 0.6);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .main-nav.open { display: grid; animation: dropdownReveal 0.3s var(--ease); }
  .nav-cluster, .header-utilities { flex-wrap: wrap; }
  .menu-toggle { display: inline-block; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 980px
   ═══════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-grid, .contact-grid, .contact-info-grid, .contact-quick-grid, .grid-2, .cards, .footer-grid, .grant-grid,
  .logistics-stats, .logistics-dashboard, .product-card-grid, .landing-layout,
  .admin-diagnostics-grid, .admin-db-cards, .quality-timeline-grid { grid-template-columns: 1fr; }
  .admin-storage-card { grid-column: auto; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .landing-aside { position: static; }
  .dashboard-map { min-height: 0; }
  .dashboard-panel { position: static; width: 100%; margin: 0.8rem; }
  .szechenyi-floating { width: min(180px, 34vw); }
  .timeline-intro { position: static; }
  .career-gallery { grid-template-columns: 1fr; }
  .career-photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .career-photo-large { grid-column: 1 / -1; grid-row: auto; min-height: 260px; }
  .career-photo { min-height: 150px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px (tablet/mobile)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 3.4rem 0; }
  .hero { padding: 3.4rem 0 2.8rem; }
  .page-hero { padding: 2.8rem 0 1.2rem; }
  .header-main { gap: 0.8rem; }

  .about-intro-grid { grid-template-columns: 1fr; }
  .about-hero-photo { position: static; order: -1; }
  .about-hero-photo img { aspect-ratio: 16 / 10; }
  .about-stats-col { flex-direction: row; flex-wrap: wrap; }
  .about-stat-card { flex: 1 1 calc(50% - 0.5rem); }
  .about-philosophy-grid { grid-template-columns: 1fr 1fr; }
  .logistics-short-grid { grid-template-columns: 1fr; }
  .logistics-short-stats { grid-template-columns: 1fr 1fr 1fr; }

  .brand { gap: 0.55rem; min-width: 0; }
  .brand-logo { width: 38px; height: 38px; }
  .brand span { font-size: 1rem; line-height: 1.2; }

  .main-nav { max-height: calc(100vh - 90px); overflow-y: auto; }
  .nav-cluster, .header-utilities { width: 100%; gap: 0.55rem; }
  .header-utilities { justify-content: space-between; }
  .lang-switch { flex-wrap: wrap; }

  .hero h1, .page-hero h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .lead { font-size: 1rem; line-height: 1.6; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn, .product-category-nav .btn,
  .admin-filters .btn, .cta-strip-inner .btn { width: 100%; }

  .panel, .card, .hero-card, .service-item,
  .stat-card, .product-card { padding: 1.1rem; }

  .cards, .product-card-grid, .admin-diagnostics-grid,
  .footer-grid, .grant-grid, .logistics-stats,
  .logistics-dashboard, .quality-timeline-grid,
  .hero-grid, .contact-grid, .grid-2 { gap: 0.85rem; }

  .logistics-badges { gap: 0.55rem; }
  .logistics-badge { width: 100%; justify-content: flex-start; padding: 0.65rem 0.85rem; font-size: 0.95rem; }

  .dashboard-map { min-height: 0; padding: 0.75rem; display: grid; gap: 0.8rem; }
  .hungary-map-shell { min-height: 0; height: auto; width: 100%; margin: 0 auto; aspect-ratio: 3 / 2; }
  .hungary-map-image { width: 100%; height: 100%; object-fit: cover; }
  .dashboard-panel { position: static; width: 100%; margin: 0; padding: 0.9rem; border-radius: 16px; }
  .dashboard-panel h3 { font-size: 1.45rem; line-height: 1.05; }
  .dashboard-panel p { font-size: 0.95rem; line-height: 1.5; }
  .dashboard-side { gap: 0.75rem; }
  .region-card { gap: 0.7rem; padding: 0.9rem; }
  .region-card-head { grid-template-columns: 1fr; gap: 0.35rem; }
  .region-card-schedule-wrap { min-width: 0; grid-template-columns: auto auto; justify-content: start; }
  .region-chip-index { width: 36px; height: 36px; font-size: 0.9rem; }
  .region-card-copy strong { font-size: 0.98rem; }
  .region-card-copy small { font-size: 0.88rem; line-height: 1.45; }
  .map-node { width: 16px; height: 16px; border-width: 3px; }
  .service-item { grid-template-columns: 1fr; }
  .service-icon { width: 48px; height: 48px; }

  .product-image-slot, .product-slot-image,
  .product-placeholder, .product-placeholder-fallback { min-height: 190px; height: 190px; }
  .product-slot-image { object-fit: cover; object-position: center; }
  .table-wrap { margin-left: -0.15rem; margin-right: -0.15rem; }
  .product-table, .admin-table { min-width: 720px; }
  .product-table th, .product-table td,
  .admin-table th, .admin-table td { padding: 0.6rem 0.55rem; font-size: 0.9rem; }

  .inline-form { align-items: stretch; }
  .inline-form .btn, .compact-form .btn, .status-form .btn { width: 100%; }
  .status-form { gap: 0.45rem; }
  .order-product-row { grid-template-columns: 1fr; }
  .order-remove-product, .order-add-product { width: 100%; }
  .success-toast { grid-template-columns: 1fr; text-align: left; }

  .timeline-intro, .timeline-step-card .timeline-content { padding: 1rem; }
  .timeline-item, .timeline-step-card { grid-template-columns: 56px 1fr; gap: 0.8rem; }
  .timeline-marker { width: 52px; min-height: 52px; padding: 0.55rem 0.35rem; }
  .quality-article { gap: 0.75rem; }
  .quality-copy-grid p, .quality-steps-list li { line-height: 1.55; }
  .footer-bottom { font-size: 0.88rem; }
  .szechenyi-floating { width: min(145px, 38vw); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 560px (small mobile)
   ═══════════════════════════════════════ */
@media (max-width: 560px) {
  .container { width: min(1120px, 94vw); }
  .site-header { position: sticky; }
  .header-main { grid-template-columns: 1fr auto; }
  .brand span { font-size: 0.95rem; }
  .main-nav { right: 3vw; left: 3vw; padding: 0.85rem; gap: 0.85rem; }
  .nav-cluster > a, .dropdown-toggle, .cta-link { width: 100%; justify-content: flex-start; text-align: left; }
  .lang-switch a { min-width: 40px; height: 40px; }
  .eyebrow { font-size: 0.85rem; padding: 0.32rem 0.65rem; }

  .hero-card, .panel, .card, .service-item,
  .stat-card, .product-card { border-radius: 16px; }
  .logistics-dashboard { padding: 0.75rem; }
  .dashboard-map { padding: 0.55rem; border-radius: 18px; }
  .hungary-map-shell { height: auto; margin: 0 auto; aspect-ratio: 3 / 2; }
  .dashboard-panel h3 { font-size: 1.25rem; }
  .dashboard-panel p, .stat-card p, .region-card-copy small { font-size: 0.92rem; }
  .contact-form input, .contact-form textarea, .status-select { font-size: 16px; }
  .timeline::before { left: 16px; }
  .timeline-item, .timeline-step-card { grid-template-columns: 44px 1fr; gap: 0.7rem; }
  .timeline-marker { width: 40px; min-height: 40px; border-radius: 14px; }
  .timeline-marker-number { font-size: 0.82rem; }
  .timeline-marker-icon { font-size: 0.68rem; }
  .timeline-step-topline { gap: 0.35rem; }
  .timeline-step-topline strong { font-size: 0.92rem; }
  .timeline-step-card .timeline-content h3 { font-size: 0.96rem; line-height: 1.6; }
  .career-gallery { padding: 1rem; }
  .product-card { grid-template-rows: auto auto auto auto; gap: 0.75rem; }
  .product-image-slot, .product-slot-image,
  .product-placeholder, .product-placeholder-fallback { min-height: 180px; height: 180px; }
  .career-photo-large { min-height: 220px; }
  .career-photo { min-height: 130px; }
  .timeline-quality-photo img { aspect-ratio: 16 / 10; }
  .site-footer { padding-top: 1.6rem; }
  .szechenyi-floating { width: min(120px, 34vw); }
}

/* ═══════════════════════════════════════
   HERO PAGE-LOAD ENTRANCE (CSS-only stagger)
   ═══════════════════════════════════════ */
.hero .eyebrow,
.hero h1,
.hero .lead,
.hero .hero-actions,
.hero .hero-visual-wrap {
  opacity: 0;
  transform: translateY(18px);
  animation: heroEntrance 0.7s var(--ease) forwards;
}
.hero .eyebrow      { animation-delay: 0.05s; }
.hero h1            { animation-delay: 0.15s; }
.hero .lead         { animation-delay: 0.28s; }
.hero .hero-actions  { animation-delay: 0.4s; }
.hero .hero-visual-wrap { animation-delay: 0.2s; transform: translateY(24px) scale(0.97); }

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

/* ═══════════════════════════════════════
   ABOUT PAGE — numbered panel decorations
   ═══════════════════════════════════════ */
.grid-2 .panel {
  counter-increment: panel-counter;
  position: relative;
  padding-top: 2.8rem;
}
.grid-2 .panel::before {
  content: "0" counter(panel-counter);
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(16, 36, 63, 0.06);
  line-height: 1;
  pointer-events: none;
}
.grid-2 { counter-reset: panel-counter; }

/* ═══════════════════════════════════════
   QUALITY PAGE — enhanced separators
   ═══════════════════════════════════════ */
.quality-block {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(220, 228, 238, 0.5);
  position: relative;
}
.quality-block::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}
.quality-block:last-child { border-bottom: 0; }
.quality-block:last-child::after { display: none; }

/* Timeline intro panel glow accent */
.timeline-intro {
  border-left: 3px solid var(--accent);
}

/* ═══════════════════════════════════════
   MOBILE TOUCH UX — tap targets & spacing
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .btn { min-height: 48px; }
  .about-philosophy-grid { grid-template-columns: 1fr; }
  .region-card { min-height: 48px; }
  .lang-pill { min-height: 40px; min-width: 40px; display: inline-grid; place-items: center; }
  .nav-cluster > a, .dropdown-toggle, .cta-link { min-height: 44px; display: inline-flex; align-items: center; }
}

/* ═══════════════════════════════════════
   ACCESSIBILITY — Reduced motion
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .section-animate { opacity: 1; transform: none; }
  .reveal-grid [data-stagger], .timeline-item, .region-chip { opacity: 1; transform: none; }
  .floating-visual { animation: none; }
  .hero h1 { -webkit-text-fill-color: unset; background: none; }
  .hero .eyebrow, .hero h1, .hero .lead, .hero .hero-actions, .hero .hero-visual-wrap { opacity: 1; transform: none; }
  .icon-shield .shield-check { stroke-dashoffset: 0; }
  .icon-clipboard .clip-line { stroke-dashoffset: 0; }
  .scroll-progress { display: none; }
}

/* ═══════════════════════════════════════
   HOVER MEDIA — Touch-safe hover states
   ═══════════════════════════════════════ */
@media (hover: hover) {
  .card:hover { transform: translateY(-6px) scale(1.01); }
  .stat-card:hover { transform: translateY(-4px); }
  .product-card:hover { transform: translateY(-5px); }
  .region-card:hover { transform: translateY(-3px); }
}

@media (hover: none) {
  .card:hover, .stat-card:hover, .product-card:hover, .region-card:hover { transform: none; }
}

@media (max-width: 980px) {
  .admin-db-compact-head { align-items: flex-start; flex-direction: column; }
  .admin-db-compact-meter { width: 100%; justify-content: space-between; white-space: normal; }
  .admin-db-compact .admin-db-cards { grid-template-columns: 1fr; }
  .confirm-modal-body { grid-template-columns: 1fr; }
  .confirm-modal-actions { flex-direction: column-reverse; }
  .confirm-modal-actions .btn { width: 100%; }
}
