:root {
  --bg: #f4f5f8;
  --surface: #ffffff;
  --text: #0f1729;
  --muted: #5a6478;
  --line: #e4e8f0;
  --navy: #0f1729;
  --accent: #3d52c7;
  --accent-strong: #2a3a9e;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 32px rgba(15, 23, 41, 0.08);
  --shadow-hover: 0 16px 40px rgba(15, 23, 41, 0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.75rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5.3vw, 4rem);
}

h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
  background: #fff;
  color: #111;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  z-index: 2000;
}

.loader-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(246, 246, 247, 0.95);
  backdrop-filter: blur(6px);
  z-index: 2000;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.loader-ring {
  width: 44px;
  height: 44px;
  border: 3px solid #dfe2ef;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loader-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--text);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 22px rgba(18, 19, 22, 0.05);
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: 0;
}

.navbar-center {
  display: none;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.lang-btn img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  pointer-events: none;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  border-color: #cfd4de;
  outline: none;
}

.lang-btn:active {
  transform: scale(0.96);
}

.lang-btn--active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(57, 72, 180, 0.22);
}

.lang-switcher--drawer {
  justify-content: center;
  gap: 0.75rem;
  padding: 0.35rem 0 0.85rem;
  width: 100%;
}

.lang-switcher--drawer .lang-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.lang-switcher--drawer .lang-btn img {
  width: 26px;
  height: 26px;
  border-radius: 5px;
}

.lang-switcher--drawer .lang-btn:hover,
.lang-switcher--drawer .lang-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.2);
}

.lang-switcher--drawer .lang-btn--active {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.mobile-lang-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.15rem;
}

.brand {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-links a,
.mobile-menu-inner a,
.footer-links a {
  color: #232733;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.mobile-menu-inner a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover {
  border-color: #cfd4de;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 8px;
  background: #20232c;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Teljes képernyős mobil menü (homályos háttér + éles menütartalom) */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1.25rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1.25rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear 0.22s;
  isolation: isolate;
}

.mobile-menu-overlay.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear 0s;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  /* Homályos „üveg” — nem fekete folt; a tartalom mögötte elmosódik */
  background: rgba(28, 30, 38, 0.34);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.mobile-menu-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: min(100vh, 100dvh);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transform: translateZ(0);
  filter: none;
}

.mobile-menu-brand {
  margin: 0 0 0.35rem;
  padding: 0 0.5rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: clamp(1.85rem, 8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.mobile-menu-overlay.open .mobile-menu-brand {
  animation: none;
}

.mobile-menu-overlay.open.menu-ready .mobile-menu-brand {
  animation: mobileNavStagger 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
}

.mobile-nav-item {
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.mobile-menu-overlay.open .mobile-nav-item {
  animation: none;
}

.mobile-menu-overlay.open.menu-ready .mobile-nav-item {
  animation: mobileNavStagger 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.mobile-menu-overlay.open.menu-ready .mobile-nav-item:nth-child(1) {
  animation-delay: 0.02s;
}
.mobile-menu-overlay.open.menu-ready .mobile-nav-item:nth-child(2) {
  animation-delay: 0.05s;
}
.mobile-menu-overlay.open.menu-ready .mobile-nav-item:nth-child(3) {
  animation-delay: 0.08s;
}
.mobile-menu-overlay.open.menu-ready .mobile-nav-item:nth-child(4) {
  animation-delay: 0.11s;
}
.mobile-menu-overlay.open.menu-ready .mobile-nav-item:nth-child(5) {
  animation-delay: 0.14s;
}

.mobile-menu-overlay.open.menu-ready .mobile-nav-item:nth-child(6) {
  animation-delay: 0.17s;
}

.mobile-menu-overlay.open.menu-ready .mobile-nav-item:nth-child(7) {
  animation-delay: 0.2s;
}

.mobile-menu-overlay.open.menu-ready .mobile-nav-item:nth-child(8) {
  animation-delay: 0.23s;
}

@keyframes mobileNavStagger {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.mobile-menu-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0.7rem 0.5rem 0.95rem;
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease, color 0.25s ease, border-color 0.25s ease, letter-spacing 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-inner a:hover,
.mobile-menu-inner a:focus-visible {
  opacity: 1;
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  outline: none;
}

.mobile-menu-inner a:active {
  opacity: 0.85;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.mobile-nav-close-item {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu-close {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  opacity: 0.92;
  transform: scale(1.08);
  outline: none;
}

.mobile-menu-close:active {
  opacity: 0.75;
  transform: scale(0.96);
}

.mobile-menu-close-line {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.mobile-menu-close-line:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close-line:last-child {
  transform: rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* Fejléc a homályos réteg fölött, átlátszó */
body.menu-open .site-header {
  z-index: 10000;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  pointer-events: none;
}

/* Nyitott menüben a márka csak a menüpanelben látszik (nagy), a fejlécben rejtve */
body.menu-open .site-header .brand {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Nyitott menüben a hamburger rejtve — bezárás a Kapcsolat alatti X gomb */
body.menu-open .menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  background: linear-gradient(110deg, rgba(18, 19, 22, 0.78) 12%, rgba(18, 19, 22, 0.28) 60%, rgba(18, 19, 22, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: #fff;
}

.hero-content .eyebrow {
  color: #d4ddff;
}

.hero-content h1,
.hero-content .hero-subheadline {
  color: #fff;
}

.hero-subheadline {
  max-width: 54ch;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: 2rem;
}

.hero-subheadline--mobile {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.85rem 1.45rem;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-accent {
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 22px rgba(57, 72, 180, 0.25);
  border: 1px solid rgba(57, 72, 180, 0.22);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(57, 72, 180, 0.32);
}

.btn-accent:active {
  transform: translateY(0) scale(0.98);
}

.btn-submit {
  position: relative;
  width: 100%;
}

.btn-submit.is-loading {
  pointer-events: none;
  opacity: 0.92;
}

.btn-submit.is-loading .btn-label {
  opacity: 0;
}

.btn-submit.is-loading::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}

@keyframes stepPop {
  0% {
    opacity: 0;
    transform: scale(0.65);
  }
  65% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 1.6rem;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  object-fit: cover;
}

.section-head {
  margin-bottom: 1.6rem;
}

.product-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

/* Vágott törlőrongy + törlőkendő: lazább „zoom”, teljes kép látható */
.product-card--feature > img {
  display: block;
  height: clamp(220px, 28vw, 300px);
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f2f4f9 0%, #e8ecf4 100%);
}

/* Márkás ruházat (póló, pulóver, nadrág, vegyes): teljes kép, nem szoros nagyítás */
#apparel .product-card > img {
  display: block;
  height: clamp(220px, 28vw, 300px);
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f2f4f9 0%, #e8ecf4 100%);
}

.card-body {
  padding: 1.2rem 1.2rem 1.3rem;
}

.product-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-hover);
  border-color: #eceef6;
}

.brand-block {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid #eceef6;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.brand-block h3 {
  margin-bottom: 1rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.brand-card {
  background: #fafbff;
  border: 1px solid #e7eaf4;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 56px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.brand-card img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.brand-card-logo--guess {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-card span {
  color: #2a2f3a;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-card:hover {
  transform: translateY(-2px);
  border-color: #d9dff0;
  box-shadow: 0 8px 18px rgba(18, 19, 22, 0.08);
}

.tech-grid .tech-card {
  justify-content: center;
}

.tech-grid .tech-card span {
  font-size: 0.95rem;
}

.section-lead {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--muted);
  text-align: center;
}

.contact-list--profile li {
  align-items: flex-start;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
}

.products--alt {
  background: #f0f1f5;
}

.product-grid--duo {
  grid-template-columns: 1fr;
}

.product-card--feature .card-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.card-list {
  margin: 0.65rem 0 0.85rem;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-list li + li {
  margin-top: 0.25rem;
}

.card-meta {
  margin: 0;
  font-size: 0.9rem;
  color: #3a4050;
}

.type-grid .type-card {
  justify-content: center;
  min-height: 52px;
}

.type-grid .type-card span {
  text-align: center;
  font-size: 0.86rem;
}

.about--profile {
  background: var(--surface);
}

.profile-tech {
  margin-top: 1.25rem;
}

.section-head .section-lead {
  margin-top: 0.35rem;
}

.process-grid {
  display: grid;
  gap: 1rem;
}

.process-step {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid #eceef6;
  padding: 1.25rem;
  box-shadow: 0 5px 20px rgba(18, 19, 22, 0.04);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: #eef1ff;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.88rem;
}

.contact-info,
.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid #eceef6;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.contact {
  background: #f3f4f6;
}

.contact-head {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.contact-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}

.info-title {
  margin-bottom: 0.95rem;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.55rem;
}

.info-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
}

.contact-info {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcff 100%);
  border: 1px solid #e7eaf3;
  box-shadow: 0 14px 34px rgba(18, 19, 22, 0.08);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0.72rem;
  background: #f8f9ff;
  border: 1px solid #e7eaf4;
  border-radius: 12px;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.contact-list li + li {
  margin-top: 0.62rem;
}

.contact-list li:hover {
  border-color: #d8def0;
  background: #f4f6ff;
  transform: translateX(2px);
}

.contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  line-height: 1;
  background: #ecefff;
  color: var(--accent-strong);
  flex-shrink: 0;
}

.contact-list a {
  color: var(--accent-strong);
}

.contact-map {
  margin-bottom: 0.95rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dde3f0;
  box-shadow: 0 14px 28px rgba(18, 19, 22, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 100%;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.93rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d8deeb;
  border-radius: 12px;
  padding: 0.82rem 0.9rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 185px;
  flex: 1 1 auto;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(91, 108, 255, 0.14);
}

.contact-form .btn {
  margin-top: auto;
  margin-bottom: 0.2rem;
}

.form-status {
  margin: 0.35rem 0 0;
  min-height: 1.4em;
  font-weight: 600;
}

.form-status.error {
  color: #c22743;
}

.form-status.success {
  color: #1d8f5e;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #101114;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1.2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  font-size: 0.93rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-facebook svg {
  flex-shrink: 0;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 120ms;
}

/* Kapcsolat szekció egyedi bejövő animációja */
.contact-reveal-left {
  transform: translateX(-34px) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.95s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.95s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.95s ease;
}

.contact-reveal-right {
  transform: translateX(34px) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.95s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.95s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.95s ease;
  transition-delay: 80ms;
}

.contact-reveal-left.in-view,
.contact-reveal-right.in-view {
  transform: translateX(0) scale(1);
  filter: blur(0);
}

/* Mobil / tablet: prémium, mobile-first UX — csak 899px alatt */
@media (max-width: 899px) {
  .site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(233, 235, 239, 0.75);
    box-shadow: 0 4px 24px rgba(18, 19, 22, 0.06);
  }

  .site-header.scrolled {
    box-shadow: 0 6px 28px rgba(18, 19, 22, 0.08);
  }

  .navbar {
    min-height: 60px;
    padding: 0.4rem 0;
  }

  .lang-switcher--header {
    display: none;
  }

  .brand {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--text);
    flex: 1;
    min-width: 0;
    padding-right: 0.75rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 14px;
    border-color: #d8dce6;
    background: #fff;
    box-shadow: 0 4px 14px rgba(18, 19, 22, 0.08);
  }

  .menu-toggle span {
    width: 20px;
    height: 2.5px;
    background: #121316;
  }

  .hero.hero.section {
    min-height: min(100dvh, 920px);
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 9, 12, 0.35) 0%, rgba(8, 9, 12, 0.55) 38%, rgba(8, 9, 12, 0.88) 72%, rgba(8, 9, 12, 0.94) 100%);
  }

  .hero-content {
    padding: 5.75rem 0 2.75rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    max-width: 100%;
    width: 100%;
  }

  .hero-content .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-content h1 {
    font-size: clamp(1.65rem, 4.5vw + 0.85rem, 2.35rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: min(36rem, 100%);
    text-wrap: balance;
  }

  .hero-subheadline--desktop {
    display: none;
  }

  .hero-subheadline--mobile {
    display: block;
  }

  .hero-subheadline,
  .hero-subheadline--mobile {
    font-size: clamp(1rem, 2.4vw + 0.55rem, 1.12rem);
    line-height: 1.65;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 2rem;
    max-width: min(40rem, 100%);
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-cta {
    order: 1;
    width: 100%;
    max-width: none;
    min-height: 54px;
    padding: 1.05rem 1.65rem;
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(57, 72, 180, 0.42);
  }

  .hero-cta-secondary {
    order: 2;
    width: 100%;
    max-width: none;
    min-height: 52px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
  }

  .hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.75);
  }

  .section {
    padding: 4.5rem 0;
  }

  .section.about {
    padding-top: 3.25rem;
    padding-bottom: 4.75rem;
  }

  .about-text h2 {
    font-size: clamp(1.65rem, 6vw, 2rem);
    line-height: 1.22;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
  }

  .about-text p {
    font-size: 1.05rem;
    line-height: 1.78;
    margin-bottom: 1.35rem;
    color: var(--muted);
  }

  .about-text p:last-child {
    margin-bottom: 0;
  }

  .about-grid {
    gap: 2rem;
  }

  .about-image img {
    min-height: 260px;
    border-radius: 18px;
  }

  .section-head {
    margin-bottom: 1.75rem;
    text-align: left;
  }

  .section-head h2 {
    font-size: clamp(1.55rem, 5.5vw, 1.9rem);
    line-height: 1.25;
  }

  .section-head .section-lead {
    text-align: left;
    margin-left: 0;
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .container {
    width: min(1120px, 92%);
  }

  .product-card .card-body p,
  .process-step p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .reveal {
    transition-duration: 0.45s;
  }

  .reveal-delay {
    transition-delay: 0.08s;
  }

  .contact-reveal-left,
  .contact-reveal-right {
    transition-duration: 0.45s;
  }

  .contact-form .btn {
    min-height: 54px;
    font-size: 1.0625rem;
    padding: 1.05rem 1.5rem;
  }

  .scroll-top {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    right: 1.15rem;
    bottom: 1.15rem;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--navy), var(--accent-strong));
    box-shadow: 0 12px 28px rgba(15, 23, 41, 0.35);
    font-size: 1.2rem;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.25s ease;
  }

  .scroll-top.visible {
    transform: translateY(0) scale(1);
  }

  .scroll-top:active {
    transform: translateY(0) scale(0.94);
  }

  .hero-bg {
    background-image: url("img/bg.jpg");
    background-position: center 40%;
    transform: scale(1.28);
  }

  .hero-cta {
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  }

  .hero-cta:active {
    transform: scale(0.97);
    box-shadow: 0 8px 20px rgba(42, 58, 158, 0.35);
  }

  .hero-cta-secondary:active {
    transform: scale(0.98);
  }

  .about-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 41, 0.12);
  }

  .about-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    object-fit: cover;
    object-position: center 32%;
  }

  .product-card {
    border: 1px solid #e8ecf4;
    box-shadow: 0 12px 36px rgba(15, 23, 41, 0.09);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    -webkit-tap-highlight-color: transparent;
  }

  .product-card img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .product-card--feature > img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 220px;
    max-height: 320px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, #f2f4f9 0%, #e8ecf4 100%);
  }

  #apparel .product-card > img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 220px;
    max-height: 340px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, #f2f4f9 0%, #e8ecf4 100%);
  }

  .product-card .card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text);
  }

  .product-card:active {
    transform: scale(1.02);
    box-shadow: 0 18px 44px rgba(15, 23, 41, 0.14);
  }

  .product-card--feature .card-body {
    padding: 1.25rem 1.3rem 1.4rem;
  }

  .brand-block {
    padding: 1.35rem;
    border-radius: 20px;
    margin-top: 2.25rem;
  }

  .type-card,
  .brand-card {
    transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .type-card:active,
  .brand-card:active {
    transform: scale(1.04);
    box-shadow: 0 10px 24px rgba(15, 23, 41, 0.1);
  }

  #apparel .product-grid {
    gap: 1.15rem;
  }

  .process-grid {
    gap: 1.15rem;
  }

  .process-step {
    padding: 1.45rem 1.35rem;
    border-radius: 18px;
    border-color: #e8ecf4;
    box-shadow: 0 12px 32px rgba(15, 23, 41, 0.07);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  }

  .process-step .icon {
    width: 48px;
    height: 48px;
    font-size: 0.92rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #eef1ff, #e2e8ff);
    transform: scale(0.85);
    opacity: 0.7;
  }

  .process-step.in-view .icon {
    animation: stepPop 0.55s var(--ease-out) forwards;
  }

  .process-step:nth-child(2).in-view .icon {
    animation-delay: 0.06s;
  }

  .process-step:nth-child(3).in-view .icon {
    animation-delay: 0.12s;
  }

  .process-step:nth-child(4).in-view .icon {
    animation-delay: 0.18s;
  }

  .process-step h3 {
    font-size: 1.1rem;
    color: var(--text);
  }

  .contact {
    background: #eef0f5;
  }

  .contact-map {
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(15, 23, 41, 0.12);
  }

  .contact-map iframe {
    height: 220px;
  }

  .contact-info {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .contact-form {
    padding: 1.25rem;
    border-radius: 20px;
    gap: 0.75rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.95rem 1rem;
    font-size: 1rem;
    border-radius: 14px;
    background: #fafbfd;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(61, 82, 199, 0.16);
    transform: translateY(-1px);
  }

  .contact-form .btn-submit {
    min-height: 56px;
    font-size: 1.08rem;
    font-weight: 800;
    margin-top: 0.35rem;
    box-shadow: 0 14px 32px rgba(42, 58, 158, 0.38);
  }

  .contact-form .btn-submit:active:not(.is-loading) {
    transform: scale(0.98);
  }

  .eyebrow {
    color: var(--accent-strong);
    font-size: 0.72rem;
  }
}

@media (max-width: 899px) and (min-width: 680px) {
  .hero-content h1 {
    max-width: min(38rem, 100%);
    font-size: clamp(1.75rem, 2.8vw + 1rem, 2.25rem);
    line-height: 1.2;
    margin-bottom: 1.6rem;
  }

  .hero-content {
    text-align: left;
    max-width: min(40rem, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .hero-subheadline--mobile {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    max-width: min(40rem, 100%);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-cta,
  .hero-cta-secondary {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-overlay {
    transition: opacity 0.2s ease;
    transform: none !important;
  }

  body.menu-open .site-header {
    transition: none;
  }

  .mobile-menu-overlay.open .mobile-nav-item,
  .mobile-menu-overlay.open.menu-ready .mobile-nav-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mobile-menu-overlay.open .mobile-menu-brand,
  .mobile-menu-overlay.open.menu-ready .mobile-menu-brand {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal,
  .contact-reveal-left,
  .contact-reveal-right {
    transition-duration: 0.35s !important;
  }

  .hero-bg {
    transform: scale(1.22) !important;
    transition: none !important;
  }

  .process-step.in-view .icon {
    animation: none !important;
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .product-card:active,
  .brand-card:active,
  .type-card:active {
    transform: none !important;
  }
}

@media (min-width: 680px) {
  .product-grid,
  .product-grid--duo {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .section {
    padding: 5.8rem 0;
  }

  .container {
    width: min(1120px, 92%);
  }

  .site-header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .navbar {
    min-height: 72px;
    padding: 0;
  }

  .brand {
    font-size: 1.12rem;
  }

  .navbar-center {
    display: flex;
    justify-content: center;
    flex: 1;
    min-width: 0;
  }

  .nav-links {
    display: flex;
  }

  .navbar-end {
    gap: 0.85rem;
  }

  .lang-switcher--header .lang-btn {
    width: 42px;
    height: 42px;
  }

  .lang-switcher--header .lang-btn img {
    width: 28px;
    height: 28px;
  }

  .menu-toggle,
  .mobile-menu-overlay {
    display: none;
  }

  .hero {
    min-height: 88vh;
    place-items: center;
    justify-items: center;
  }

  .hero .hero-content.container {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: min(720px, 92%);
    width: 100%;
  }

  .hero-content h1 {
    margin-bottom: 1rem;
  }

  .hero .hero-subheadline {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.65;
    max-width: 54ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-cta,
  .hero-cta-secondary {
    display: inline-flex;
    width: auto;
    max-width: none;
    min-height: unset;
    margin-left: 0;
    margin-right: 0;
    padding: 0.85rem 1.45rem;
    font-size: inherit;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    align-items: stretch;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-map iframe {
    height: 320px;
  }
}
