:root {
  --ink: #0c1a1f;
  --ink-soft: #1e3a44;
  --text: #f0fdfa;
  --muted: rgba(204, 230, 225, 0.72);
  --surface: #ffffff;
  --surface-2: #f0fdfa;
  --surface-3: #e6fffa;
  --line: rgba(13, 148, 136, 0.18);
  --teal: #0d9488;
  --teal-light: #2dd4bf;
  --teal-dark: #0b3d3d;
  --mint: #5eead4;
  --gold: #c4a35a;
  --shadow: 0 24px 60px rgba(11, 61, 61, 0.12);
  --shadow-sm: 0 8px 24px rgba(11, 61, 61, 0.08);
  --radius: 16px;
  --max: 1140px;
  --header-h: 108px;
  --mobile-bar-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--surface-2);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

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

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding-inline: 0;
}

h1, h2, h3, .display {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--mint));
  border-radius: 2px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0.65rem 0 0.85rem;
  color: var(--ink);
}

.section-head p { color: #476067; }

section { padding: 4.5rem 0; }

.section-alt {
  background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.28);
}

.btn-primary:hover { box-shadow: 0 14px 34px rgba(13, 148, 136, 0.34); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.08); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
}

.btn-whatsapp svg,
.whatsapp-float svg {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.42);
  color: #fff;
}

@media (max-width: 960px) {
  .whatsapp-float { display: none; }
}

/* Mobil alsó gyors CTA sáv */
.mobile-action-bar {
  display: none;
}

@media (max-width: 960px) {
  .mobile-action-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    min-height: var(--mobile-bar-h);
    padding: 0.45rem 0.5rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(11, 61, 61, 0.1);
  }

  .mobile-action-bar__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-height: 48px;
    padding: 0.35rem 0.25rem;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink-soft);
    text-align: center;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-action-bar__btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .mobile-action-bar__btn--call { color: var(--teal-dark); }
  .mobile-action-bar__btn--wa { color: #128c7e; }
  .mobile-action-bar__btn--primary {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    color: #fff;
  }

  body.has-mobile-bar {
    padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px) + 0.5rem);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo--nav {
  height: 36px;
  max-width: min(140px, 32vw);
  border-radius: 8px;
}

.hero-logo-blend {
  position: relative;
  width: calc(100% + 3rem);
  margin: -0.75rem -1.5rem 1.15rem;
  aspect-ratio: 1024 / 539;
  line-height: 0;
  isolation: isolate;
  overflow: hidden;
  border-radius: 20px 20px 14px 14px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(45, 212, 191, 0.2), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(13, 148, 136, 0.14), transparent 55%),
    linear-gradient(165deg, #062a2a 0%, #0b3d3d 42%, #0f766e 100%);
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.1),
    0 0 32px rgba(45, 212, 191, 0.32),
    0 0 64px rgba(13, 148, 136, 0.2);
}

.hero-logo-glow {
  position: absolute;
  left: 50%;
  top: 40%;
  z-index: 0;
  width: 78%;
  height: 75%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(94, 234, 212, 0.55) 0%,
    rgba(45, 212, 191, 0.28) 32%,
    rgba(13, 148, 136, 0.1) 55%,
    transparent 72%
  );
  filter: blur(20px);
  animation: heroLogoGlow 5s ease-in-out infinite;
}

@keyframes heroLogoGlow {
  0%, 100% { opacity: 0.82; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

.hero-logo-blend::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 108% 102% at 50% 48%,
    transparent 52%,
    rgba(6, 42, 42, 0.18) 78%,
    rgba(6, 42, 42, 0.65) 100%
  );
  box-shadow: inset 0 0 42px 22px rgba(6, 42, 42, 0.45);
}

.brand-logo--hero {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transform-origin: center;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(
    ellipse 98% 94% at 50% 47%,
    #000 68%,
    rgba(0, 0, 0, 0.85) 82%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 98% 94% at 50% 47%,
    #000 68%,
    rgba(0, 0, 0, 0.85) 82%,
    transparent 100%
  );
  filter: drop-shadow(0 0 18px rgba(94, 234, 212, 0.35));
}

.hero-card .hero-logo-blend {
  margin-top: -0.75rem;
}

.hero-card:has(.hero-logo-blend) {
  padding-top: 0.75rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 95% 75% at 50% 0%, rgba(45, 212, 191, 0.1), transparent 58%),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(94, 234, 212, 0.12);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.22),
    0 0 48px rgba(45, 212, 191, 0.08);
}

.hero-card:has(.hero-logo-blend) .hero-card__stats {
  margin-top: 0;
}

.brand-logo--footer {
  height: 40px;
  max-width: 150px;
  margin-bottom: 0.85rem;
  border-radius: 8px;
}

.brand-logo--page {
  height: 72px;
  max-width: 240px;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.15rem;
  text-decoration: none;
}

.site-footer .footer-brand {
  color: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links a,
.nav-dropdown__toggle {
  font-size: 0.9rem;
  font-weight: 500;
  color: #35515a;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-links a.is-active { color: var(--teal-dark); }

/* Rólunk almenü */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0;
  min-height: 2.5rem;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle,
.nav-dropdown__toggle.is-active {
  color: var(--teal-dark);
}

.nav-dropdown__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 12.5rem;
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 120;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 961px) {
  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.6rem 0.85rem;
  min-height: 0;
  border-radius: 9px;
  font-size: 0.88rem;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.is-active {
  background: var(--surface-3);
  color: var(--teal-dark);
}

@media (min-width: 961px) and (max-width: 1280px) {
  .nav-brand small { display: none; }
  .nav-links { gap: 0.15rem 0.75rem; }
  .nav-links a,
  .nav-dropdown__toggle { font-size: 0.82rem; }
  .nav-cta .btn { padding: 0.45rem 0.65rem; font-size: 0.78rem; }
}

/* Desktop: logo + CTA felül, menü alul (max. 2 sor, nincs átfedés) */
@media (min-width: 961px) {
  .site-header .nav-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.3rem 1rem;
    padding-block: 0.55rem 0.65rem;
    min-height: unset;
  }

  .nav-brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex: unset;
    width: 100%;
    justify-content: center;
    min-width: 0;
    padding-top: 0.35rem;
    border-top: 1px solid var(--line);
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.2rem 1rem;
    width: 100%;
    max-height: calc(2.5rem * 2 + 0.35rem);
    overflow: visible;
  }

  .nav-links a,
  .nav-dropdown__toggle {
    padding-inline: 0.15rem;
  }
}

.nav-cta { display: flex; gap: 0.45rem; align-items: center; flex-shrink: 0; }

/* Egy nyelvválasztó — csak a .nav-cta-ban */

.site-header .nav-bar { position: relative; }

nav { position: relative; flex: 1; display: flex; justify-content: center; min-width: 0; }

.nav-links .nav-menu-cta {
  display: none;
  list-style: none;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0.35rem 0.15rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--line);
}

.nav-links .nav-menu-cta .btn { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  min-height: 44px;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 8px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle::after {
  content: "Menü";
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  color: var(--teal-dark);
  font-family: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(45, 212, 191, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(13, 148, 136, 0.14), transparent 55%),
    linear-gradient(165deg, #062a2a 0%, #0b3d3d 42%, #0f766e 100%);
  color: var(--text);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, var(--surface-2), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  margin: 1rem 0 1.1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--mint);
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(236, 254, 255, 0.88);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-lang-hint {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--mint);
  background: rgba(94, 234, 212, 0.1);
  border: 1px solid rgba(94, 234, 212, 0.22);
  max-width: 36rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.hero-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1rem;
}

.stat-box strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  color: var(--mint);
}

.stat-box span { font-size: 0.82rem; color: var(--muted); }

.hero-image {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.15), rgba(13, 148, 136, 0.35)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Crect fill='%230b3d3d' width='800' height='600'/%3E%3Cg fill='%232dd4bf' opacity='.08'%3E%3Ccircle cx='120' cy='120' r='80'/%3E%3Ccircle cx='680' cy='480' r='120'/%3E%3Crect x='300' y='180' width='200' height='240' rx='12'/%3E%3C/g%3E%3C/svg%3E") center/cover;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.hero-image__label {
  background: rgba(12, 26, 31, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #ecfeff;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 0;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
  gap: 2.5rem;
}

.marquee span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b7a82;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Service details — kártyás megjelenés képpel */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

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

.service-card--shine::after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -60%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(18deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.service-card--shine:hover::after {
  transform: translateX(280%) rotate(18deg);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--teal-dark);
}

.service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.service-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.service-card__body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  color: var(--teal-dark);
  margin-bottom: 0.55rem;
}

.service-card__body > p {
  color: #476067;
  font-size: 0.94rem;
  margin-bottom: 0.85rem;
  line-height: 1.6;
}

.service-card__body h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.45rem;
}

.service-card__body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #516b73;
  font-size: 0.9rem;
}

.service-card__body li { margin-bottom: 0.3rem; }
.service-card__body li::marker { color: var(--teal-light); }

/* Színes háttér zóna hero alatt — motivum + effektek */
.theme-zone {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(45, 212, 191, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 20%, rgba(13, 148, 136, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(94, 234, 212, 0.15), transparent 55%),
    linear-gradient(180deg, #e6fffa 0%, #f0fdfa 35%, #ecfdf5 70%, #f0fdfa 100%);
}

.theme-zone__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.theme-zone > *:not(.theme-zone__fx) {
  position: relative;
  z-index: 1;
}

.theme-zone .marquee-wrap {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.theme-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.theme-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(45, 212, 191, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: bubble-float 14s ease-in-out infinite;
}

.theme-bubble:nth-child(1) { width: 120px; height: 120px; left: 5%; top: 12%; animation-delay: 0s; }
.theme-bubble:nth-child(2) { width: 80px; height: 80px; right: 8%; top: 22%; animation-delay: -3s; }
.theme-bubble:nth-child(3) { width: 60px; height: 60px; left: 40%; top: 8%; animation-delay: -6s; }
.theme-bubble:nth-child(4) { width: 100px; height: 100px; right: 25%; top: 45%; animation-delay: -2s; }
.theme-bubble:nth-child(5) { width: 50px; height: 50px; left: 15%; top: 55%; animation-delay: -8s; }

@keyframes bubble-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.55; }
  50% { transform: translateY(-18px) scale(1.04); opacity: 0.85; }
}

.theme-sparkles {
  position: absolute;
  inset: 0;
}

.theme-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.8);
  animation: sparkle-pulse 3s ease-in-out infinite;
}

.theme-sparkle:nth-child(1) { top: 18%; left: 22%; animation-delay: 0s; }
.theme-sparkle:nth-child(2) { top: 35%; right: 18%; animation-delay: -1s; width: 4px; height: 4px; }
.theme-sparkle:nth-child(3) { top: 60%; left: 12%; animation-delay: -2s; }
.theme-sparkle:nth-child(4) { top: 75%; right: 30%; animation-delay: -0.5s; width: 5px; height: 5px; }
.theme-sparkle:nth-child(5) { top: 28%; left: 55%; animation-delay: -1.5s; }
.theme-sparkle:nth-child(6) { top: 48%; right: 8%; animation-delay: -2.5s; }

@keyframes sparkle-pulse {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.theme-drops {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%230d9488' opacity='.12'%3E%3Cpath d='M30 10c0 12-15 22-15 34a15 15 0 1030 0c0-12-15-22-15-34z'/%3E%3Cpath d='M90 50c0 8-10 14-10 22a10 10 0 1020 0c0-8-10-14-10-22z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.theme-zone .section-alt {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}

/* Almoldalak */
.page-hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(165deg, #062a2a 0%, #0b3d3d 50%, #0f766e 100%);
  color: var(--text);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0.75rem 0;
}

.page-hero p {
  color: rgba(236, 254, 255, 0.88);
  max-width: 36rem;
}

.testimonial-grid,
.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.testimonial-card,
.reference-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover,
.reference-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: #476067;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card cite {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
  font-style: normal;
}

.testimonial-stars {
  color: #c4a35a;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.reference-card__tag {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.reference-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}

.reference-card p {
  font-size: 0.92rem;
  color: #516b73;
}

.nav-links a.is-active {
  color: var(--teal-dark);
  font-weight: 600;
}

.service-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.65rem;
  box-shadow: var(--shadow-sm);
}

.service-detail h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: var(--teal-dark);
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.service-detail > p {
  color: #476067;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-detail h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.55rem;
}

.service-detail ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #516b73;
  font-size: 0.94rem;
}

.service-detail li { margin-bottom: 0.35rem; }
.service-detail li::marker { color: var(--teal-light); }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--surface-3);
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

.card p { font-size: 0.94rem; color: #516b73; }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.why-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.why-list .num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.why-list h3 { font-size: 1rem; margin-bottom: 0; font-weight: 600; line-height: 1.45; }
.why-list p { font-size: 0.9rem; color: #516b73; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.process-step h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.process-step p { font-size: 0.88rem; color: #516b73; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-panel {
  background: linear-gradient(145deg, var(--teal-dark), #0f766e);
  color: #ecfeff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.about-panel ul {
  margin-top: 1rem;
  padding-left: 1.1rem;
}

.about-panel li { margin-bottom: 0.45rem; color: rgba(236, 254, 255, 0.9); }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.area-tags span {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* FAQ */
.faq-list { display: grid; gap: 0.75rem; max-width: 780px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--teal);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  padding: 0 1.15rem 1rem;
  color: #516b73;
  font-size: 0.94rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  background: linear-gradient(160deg, var(--teal-dark), #115e59);
  color: #ecfeff;
  border-radius: 24px;
  padding: 2rem;
}

.contact-info a { color: var(--mint); font-weight: 600; }

.contact-info ul {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
}

.contact-info li {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-field { display: grid; gap: 0.35rem; }
.form-field.full { grid-column: 1 / -1; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  background: var(--surface-2);
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(13, 148, 136, 0.35);
  border-color: var(--teal);
}

textarea { min-height: 120px; resize: vertical; }

.form-intro {
  margin-bottom: 1.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.form-intro p {
  color: #476067;
  font-size: 0.94rem;
  margin-bottom: 0.55rem;
}

.form-intro ul {
  margin: 0 0 0.85rem 1.1rem;
  color: #476067;
  font-size: 0.94rem;
}

.form-intro li { margin-bottom: 0.3rem; }

.form-intro__note {
  font-weight: 600;
  color: var(--teal-dark) !important;
  margin-bottom: 0 !important;
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: #647a82;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--teal-dark);
  font-weight: 500;
}

.form-success.is-visible { display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), #0f766e);
  color: #ecfeff;
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 1.25rem; }

.cta-band .btn-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(236, 254, 255, 0.82);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.85rem;
}

.footer-grid ul { list-style: none; display: grid; gap: 0.45rem; }
.footer-grid a { color: rgba(236, 254, 255, 0.72); font-size: 0.92rem; }
.footer-grid a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: rgba(236, 254, 255, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cta-band .btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.cta-band .btn-whatsapp:hover { background: #20bd5a; }

/* —— Tablet / mobil —— */
@media (max-width: 960px) {
  .container { width: min(var(--max), calc(100% - 1.25rem)); }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 200;
  }

  .site-header .nav-bar {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    padding-block: 0;
  }

  nav {
    border-top: none;
    padding-top: 0;
  }

  .nav-links {
    max-height: none;
    flex-wrap: nowrap;
  }

  .nav-bar {
    min-height: 60px;
    gap: 0.5rem;
  }

  .brand-logo--nav {
    height: 32px;
    max-width: min(120px, 30vw);
  }

  .nav-brand {
    font-size: 0.92rem;
    min-width: 0;
    flex: 1;
  }

  .nav-brand > span:last-child {
    min-width: 0;
    overflow: hidden;
  }

  .nav-brand small { display: none; }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    z-index: 202;
    position: relative;
  }

  nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 201;
    flex: none;
  }

  .nav-links {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0.35rem 0.625rem 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: var(--shadow);
    display: none;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 201;
  }

  .nav-links.is-open { display: flex; }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(11, 61, 61, 0.4);
    z-index: 199;
  }

  .nav-links a {
    padding: 0.85rem 0.75rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    white-space: normal;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.75rem;
    min-height: 48px;
    border-radius: 10px;
    white-space: normal;
  }

  .nav-dropdown__toggle:active { background: var(--surface-3); }

  .nav-dropdown__menu {
    position: static;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 0 0 0.25rem 0.75rem;
    padding: 0.15rem 0 0.15rem 0.5rem;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    pointer-events: auto;
    max-height: 12rem;
  }

  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown__menu a {
    padding: 0.75rem 0.65rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-links a:active { background: var(--surface-3); }

  .nav-cta {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    order: 2;
    margin-left: auto;
    margin-right: 0.35rem;
    gap: 0;
  }

  .nav-cta .btn {
    display: none;
  }

  .nav-cta .lang-switch {
    display: inline-flex;
  }

  .nav-toggle {
    order: 3;
    margin-left: 0;
  }

  .nav-links .nav-menu-cta { display: grid; }

  section { padding: 2.75rem 0; }

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

  .section-head h2 { font-size: clamp(1.45rem, 6vw, 2rem); }

  .hero {
    padding: 2.25rem 0 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
    margin-top: 0.75rem;
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero-ctas .btn { width: 100%; }

  .hero-trust {
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.84rem;
  }

  .hero-visual { order: -1; }

  .hero-logo-blend {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: 0.85rem;
  }

  .hero-card { padding: 1rem; border-radius: 18px; }

  .hero-image { aspect-ratio: 16 / 10; margin-bottom: 0.75rem; }

  .hero-image__label {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    text-align: center;
    max-width: calc(100% - 1rem);
  }

  .hero-card__stats { gap: 0.55rem; }

  .stat-box { padding: 0.75rem; }

  .stat-box strong { font-size: 1.35rem; }

  .stat-box span { font-size: 0.76rem; line-height: 1.35; }

  .services-grid,
  .testimonial-grid,
  .reference-grid,
  .why-grid,
  .about-grid,
  .contact-grid,
  .card-grid,
  .process-steps,
  .footer-grid { grid-template-columns: 1fr; }

  .service-detail { padding: 1.25rem; }

  .service-detail h3 { font-size: 1.2rem; }

  .why-list li { padding: 0.9rem; }

  .why-list h3 { font-size: 0.94rem; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 0.65rem; }

  .process-step { padding: 1rem; }

  .about-panel { padding: 1.5rem; border-radius: 18px; }

  .area-tags span { font-size: 0.78rem; }

  .faq-item summary {
    padding: 0.95rem 1rem;
    font-size: 0.94rem;
    min-height: 48px;
  }

  .contact-info,
  .form-card {
    padding: 1.35rem;
    border-radius: 18px;
  }

  .form-grid { grid-template-columns: 1fr; }

  .cta-band {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .cta-band .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band .btn-row .btn { width: 100%; }

  .site-footer { padding: 2.25rem 0 1.25rem; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }
}

@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    flex-wrap: wrap;
  }

  .marquee span { font-size: 0.74rem; }
}

@media (max-width: 380px) {
  .nav-brand small { display: none; }

  .nav-brand > span:last-child > :not(.nav-brand__mark) {
    font-size: 0.82rem;
  }
}


/* Nyelvváltó + jogi oldal + cookie */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-width: 2.5rem;
  padding: 0.35rem 0.55rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  color: #35515a;
  cursor: pointer;
  font-family: inherit;
}

.lang-flag {
  display: inline-flex;
  line-height: 0;
}

.lang-flag__svg {
  display: block;
  width: 1.125rem;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.lang-code {
  letter-spacing: 0.02em;
}

.lang-switch__btn.is-active {
  background: var(--teal-dark);
  color: #fff;
}

.legal-content {
  padding: 2.5rem 0 4rem;
  max-width: 46rem;
}

.legal-content .legal-updated {
  font-size: 0.88rem;
  color: #5a737a;
  margin-bottom: 1.75rem;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--teal-dark);
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #476067;
  margin-bottom: 0.65rem;
}

.legal-content ul {
  margin: 0.35rem 0 0.65rem 1.2rem;
}

.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content .legal-back {
  margin-top: 2.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(11, 61, 61, 0.12);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: #476067;
  max-width: 42rem;
  flex: 1 1 16rem;
}

body.has-mobile-bar .cookie-banner {
  bottom: calc(56px + env(safe-area-inset-bottom, 0px));
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee { animation: none; }
  .btn:hover, .card:hover, .service-card:hover { transform: none; }
  .theme-bubble, .theme-sparkle, .hero-logo-glow { animation: none; }
}
