/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
  --color-bg-primary: #070806;
  --color-bg-secondary: #0d0e0c;
  --color-bg-tertiary: #131410;
  --color-bg-cream: #f5efe2;

  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-border-default: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.12);

  --color-text-primary: #fafafa;
  --color-text-secondary: #d4d4d8;
  --color-text-muted: #a1a1aa;
  --color-text-tertiary: #71717a;
  --color-text-disabled: #52525b;
  --color-text-on-cream: #1a1a1a;

  --color-brand-cyan: #00eaff;
  --color-brand-purple: #5535dd;
  --color-brand-purple-deep: #5535dd;
  --color-accent-green: #37e247;
  --color-accent-amber: #fbbf24;
  --color-success: #22c55e;
  --color-danger: #dc2626;

  --gradient-headline: linear-gradient(90deg, #ffffff 0%, #00eaff 100%);
  --gradient-accent: linear-gradient(315deg, #5535dd 0%, #00eaff 100%);

  --card-bg-overlay: rgba(255, 255, 255, 0.03);

  --svc-c1-bg: linear-gradient(135deg, #dc2626 0%, #7c2d12 100%);
  --svc-c2-bg: #f5f5f4;
  --svc-c3-bg: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
  --svc-c4-bg: #fafafa;
  --svc-c5-bg: #0f0f0f;

  /* Áttetsző overlay rétegek a hero-videó / poster fölé — alpha értékek,
     hogy a háttér átlátszhasson, de a szöveg olvasható maradjon. */
  --hero-gradient: linear-gradient(135deg, rgba(7,26,31,0.35) 0%, rgba(10,42,48,0.30) 30%, rgba(6,32,32,0.35) 60%, rgba(7,8,6,0.55) 100%);
  --hero-overlay: linear-gradient(180deg, rgba(7,8,6,0.25) 0%, rgba(7,8,6,0.60) 100%);
  --header-gradient: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0) 100%);

  --container-max: 1280px;
  --container-px: clamp(1rem, 4vw, 2.5rem);
  --section-py: clamp(2.5rem, 6vw, 5rem);

  --text-display: clamp(2rem, 5vw + 1rem, 4rem);
  --text-h2: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);

  --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Bruno Ace SC', Georgia, serif;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--color-bg-primary);
}
body {
  font-family: var(--font-sans);
  background: transparent;
  color: var(--color-text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(7, 8, 6, 0.55);
  z-index: -1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .bg-video { display: none; }
}
img:not(.hero-poster), picture, video:not(.bg-video):not(.hero-video) { max-width: 100%; display: block; }
img.hero-poster { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; }

.hero-title,
.about-title,
.services-title,
.portfolio-title,
.reviews-title,
.faq-title,
.contact-title,
.notforyou-title,
.form-h,
.booking-h,
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   LOGO
   ========================================================================== */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}
.logo-img {
  display: block;
  height: 32px;
  width: auto;
  object-fit: contain;
}
.footer-brand .logo-img {
  height: 40px;
}
.drawer-head .logo-img {
  height: 32px;
}

/* ==========================================================================
   HEADER (pill-shaped glass, fixed top)
   ========================================================================== */
.header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.header-pill {
  pointer-events: auto;
  width: 100%;
  max-width: 1200px;
  background: rgba(40, 40, 40, 0.55);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 60px;
  padding: 10px 14px 10px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.header-nav {
  display: none;
  gap: 28px;
  font-size: 14px;
  color: #fff;
  align-items: center;
  justify-self: center;
}
.header-nav > a,
.dropdown-trigger {
  color: #fff;
  text-decoration: none;
  transition: opacity 200ms;
}
.header-nav > a:hover,
.dropdown-trigger:hover { opacity: 0.7; }

.header-nav-dropdown {
  position: relative;
}
/* Invisibilis "bridge" a trigger BB-je alatt: kiterjeszti a .header-nav-dropdown
   hit area-ját lefelé, így amikor az egér áthalad a 16px-es vizuális hézagon
   a panelhez, a :hover folytonos marad (különben a panel bezáródna). */
.header-nav-dropdown::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 100%;
  height: 24px;
}
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.dropdown-arrow {
  transition: transform 200ms;
}
.header-nav-dropdown:hover .dropdown-arrow,
.header-nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 280px;
  background: rgba(30, 30, 30, 0.92);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms, visibility 200ms, transform 200ms;
  /* Hit-testinghez fölé kerüljön a header-pill belsejének */
  z-index: 1;
}
.header-nav-dropdown:hover .dropdown-panel,
.header-nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel a {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: background 150ms;
}
.dropdown-panel a:hover { background: rgba(255,255,255,0.06); }
.dropdown-panel a strong {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 2px;
}
.dropdown-panel a span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.header-cta {
  display: none;
  background: var(--color-accent-green);
  color: #101010;
  font-weight: 600;
  font-size: 13px;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: box-shadow 200ms;
  justify-self: end;
}
.header-cta:hover {
  box-shadow: 0 0 24px rgba(55,226,71,0.4);
}

.header-burger {
  display: flex;
  justify-self: end;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--color-brand-cyan);
  cursor: pointer;
  padding: 0;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
  .header-cta { display: inline-block; }
  .header-burger { display: none; }
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 16px;
  bottom: 16px;
  right: 16px;
  width: calc(100% - 32px);
  max-width: 380px;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 250ms, visibility 250ms, transform 250ms;
  pointer-events: none;
}
.mobile-drawer.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.drawer-panel {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.drawer-close {
  background: transparent;
  border: none;
  color: var(--color-brand-cyan);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
}
.drawer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer-services { display: flex; flex-direction: column; gap: 12px; }
.drawer-services h3 {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-weight: 400;
}
.drawer-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.drawer-services-grid a {
  display: flex;
  flex-direction: column;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.drawer-services-grid a strong {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}
.drawer-services-grid a span {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}
.drawer-cta {
  margin-top: auto;
  background: var(--color-accent-green);
  color: #101010;
  font-weight: 600;
  padding: 14px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-pill-white {
  display: inline-block;
  background: var(--color-accent-green);
  color: #101010;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 10px 20px;
  border-radius: 50px;
  transition: transform 200ms, box-shadow 200ms;
}
.btn-pill-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(55, 226, 71, 0.35);
}
.btn-pill-dark {
  display: inline-block;
  background: var(--color-bg-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 50px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: clamp(7.26rem, 19.36vh, 10.89rem) var(--container-px) clamp(4.84rem, 12.1vh, 7.26rem);
  /* TELJES hero magasság +10% (637px → ~700px @ 930px viewport).
     75vh adja a ~10% növelést a megelőző ~68vh-hoz képest.
     A flexbox center vertikálisan rendezi a tartalmat — a paddingok adják
     a minimum spacinget, a flex pedig az extra teret eloszlja fent és lent. */
  min-height: clamp(620px, 75vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-bg-primary);
}
/* Stacking sorrend a hero-ban:
   .hero-poster  (z:0) — backup img, mindig betöltődik (Safari autoplay-block ellen)
   .hero-video   (z:1) — Tihany drónvideó, ha autoplay engedélyezett
   .hero-bg      (z:2) — áttetsző sötét overlay az olvashatóságért
   .hero-content (z:3) — szöveg + CTA
*/
.hero-poster,
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  mask-image:
    radial-gradient(
      ellipse 90% 95% at center,
      black 35%,
      rgba(0,0,0,0.85) 55%,
      rgba(0,0,0,0.5) 75%,
      rgba(0,0,0,0.15) 90%,
      transparent 100%
    );
  -webkit-mask-image:
    radial-gradient(
      ellipse 90% 95% at center,
      black 35%,
      rgba(0,0,0,0.85) 55%,
      rgba(0,0,0,0.5) 75%,
      rgba(0,0,0,0.15) 90%,
      transparent 100%
    );
}
.hero-poster { z-index: 0; }
.hero-video  { z-index: 1; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    var(--hero-overlay),
    var(--hero-gradient);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,200,150,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 60%, rgba(150,100,200,0.12) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  /* a poster marad — statikus képhez nincs motion-igény */
}
.hero-eyebrow {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--color-text-primary);
  margin: 0 auto 22px;
  max-width: 780px;
  display: grid;
  place-items: center;
}
.rotating-word {
  grid-area: 1 / 1;
  animation: word-cycle 9s infinite;
  opacity: 0;
}
.rotating-word.word-1 { animation-delay: 0s; }
.rotating-word.word-2 { animation-delay: 3s; }
.rotating-word.word-3 { animation-delay: 6s; }
@keyframes word-cycle {
  0%   { opacity: 0; transform: translateY(8px); }
  5%   { opacity: 1; transform: translateY(0); }
  30%  { opacity: 1; transform: translateY(0); }
  35%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .rotating-word { animation: none; }
  .rotating-word.word-1 { opacity: 1; }
  .rotating-word.word-2,
  .rotating-word.word-3 { display: none; }
}
.hero-lead {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto;
}
.hero-cta-wrap {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-cta-mail {
  font-size: 11px;
  color: var(--color-text-tertiary);
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.stat {
  text-align: center;
  /* Oldalsó padding, hogy az oszlopok közti border-left vonalig
     ne érjen a "300 000+" — esztétikus belső térrel, reszponzívan */
  padding: 0 clamp(10px, 1.8vw, 24px);
}
.stat-num {
  /* Csökkentett font-size, hogy a "300 000+" elférjen az 5 oszlopos
     desktop gridben is, kényelmes tartalékkal a paddingen belül.
     Tartomány: 24px (mobile) → ~30px (1280px+ desktop).
     Az 1024-1280px köztes viewporton is min. ~15px/oldal slack van. */
  font-size: clamp(1.5rem, 1.8vw + 0.3rem, 1.875rem);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--color-text-primary);
  font-variant-numeric: tabular-nums;
  /* A "300 000+" különben a thousand-separator szóköznél tördelhetne */
  white-space: nowrap;
}
.stat-num sup {
  font-size: 0.5em;
  color: var(--color-text-muted);
  font-weight: 400;
}
.stat-lbl {
  font-size: 13px;
  color: var(--color-text-tertiary);
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .stat + .stat { border-left: 1px solid var(--color-border-subtle); }
}

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partners {
  padding: var(--section-py) 0;
}
.partners-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
  text-align: center;
  margin: 0 0 48px;
  line-height: 1.15;
}
.partners-stage {
  position: relative;
  overflow: hidden;
}
.partners-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  height: 420px;
  background: radial-gradient(
    ellipse closest-side at center,
    rgba(0, 234, 255, 0.40) 0%,
    rgba(0, 234, 255, 0.24) 18%,
    rgba(0, 234, 255, 0.14) 35%,
    rgba(0, 234, 255, 0.06) 55%,
    rgba(0, 234, 255, 0.02) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}
.partner-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 44s linear infinite;
}
.partner-item {
  flex: 0 0 auto;
  padding: 0 clamp(28px, 4vw, 56px);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 200ms;
}
.partner-item img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.partner-item:hover { opacity: 1; }
@keyframes partner-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none; transform: translateX(0); }
}

/* ==========================================================================
   PULL QUOTE
   ========================================================================== */
.pull-quote {
  padding: 36px var(--container-px);
  text-align: center;
  font-size: 16px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-wrap {
  padding: 0 0 var(--section-py);
}
.about {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--color-text-primary);
  border-radius: 24px;
  padding: 36px 32px 0;
  text-align: center;
  overflow: hidden;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.about-title {
  font-size: var(--text-h2);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  color: var(--color-text-primary);
  line-height: 1.15;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.about-body {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 14px;
}
.about-cta {
  display: inline-block;
  background: var(--color-accent-green);
  color: #101010;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 50px;
  margin: 18px 0 28px;
  text-decoration: none;
  transition: box-shadow 200ms, transform 200ms;
}
.about-cta:hover {
  box-shadow: 0 0 24px rgba(55,226,71,0.4);
  transform: translateY(-1px);
}
.team-photo {
  /* 60%-os méretarány: az eredeti clamp(280px, 50vw, 420px) értékek
     0.6-szorosa — kompaktabb, de a kép arányát megőrzi (object-fit: contain). */
  height: clamp(168px, 30vw, 252px);
  background:
    radial-gradient(ellipse 60% 70% at 50% 55%, rgba(0, 234, 255, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, rgba(7,8,6,0.0) 0%, rgba(7,8,6,0.25) 100%);
  border-radius: 16px 16px 0 0;
  margin: 0 -32px;
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  /* contain = a teljes körkörös portré látszódjon, ne vágódjon le */
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

/* ==========================================================================
   CASE STUDIES
   ========================================================================== */
.case-studies {
  padding: 0 0 var(--section-py);
}
.case-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: clamp(56px, 8vw, 96px) clamp(32px, 6vw, 80px);
  text-align: center;
}
.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.case-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 0 auto 24px;
  color: var(--color-text-primary);
  line-height: 1.15;
  max-width: 640px;
}
.case-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  color: var(--color-text-primary);
  max-width: 560px;
  margin: 0 auto 18px;
  line-height: 1.45;
}
.case-body {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 14px;
}
.case-cta {
  display: inline-block;
  margin-top: 18px;
  background: #37e247;
  color: #101010;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.case-cta:hover {
  box-shadow: 0 0 24px rgba(55,226,71,0.4);
  transform: translateY(-1px);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: var(--section-py) 0;
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.services-intro-col {
  margin-bottom: 8px;
}
.services-title {
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  max-width: 460px;
}
.services-intro-p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 460px;
}
.services-cta {
  display: inline-block;
  background: var(--color-accent-green);
  color: #101010;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 50px;
  transition: transform 200ms, box-shadow 200ms;
}
.services-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(55, 226, 71, 0.35); }
.services-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .services-layout {
    grid-template-columns: 0.9fr 1.5fr;
    gap: 36px;
  }
  .services-intro-col {
    position: sticky;
    top: 100px;
  }
}

.service-card {
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 240px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--color-text-primary);
}
.service-card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.service-card-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--color-text-primary);
}
.service-card-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}
.service-card-bullets {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}
.service-card-bullets li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 4px 0;
}
.service-card-bullets li::before {
  content: "+";
  font-weight: 500;
  flex-shrink: 0;
  color: var(--color-brand-cyan);
}
.service-card-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}
.service-quote-btn {
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
}
.service-time {
  font-size: 11px;
  color: var(--color-text-tertiary);
}
.service-card-img {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border-left: 1px solid rgba(255,255,255,0.06);
}

.service-card.c1,
.service-card.c2,
.service-card.c3,
.service-card.c4,
.service-card.c5 {
  background: rgba(255,255,255,0.04);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .service-card { grid-template-columns: 1fr 1.1fr; min-height: 220px; }
  .service-card-img { min-height: 0; }
}

.svc-img-tiktok {
  background: radial-gradient(circle at 50% 60%, rgba(255,255,255,0.1) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
}
/* Eredeti placeholder, már nincs használva — de hagyom hátha valami visszaállna */
.phone-mock {
  width: 50%;
  max-width: 140px;
  aspect-ratio: 9/16;
  background: #1a1a1a;
  border-radius: 18px;
  border: 4px solid #2a2a2a;
}
/* TikTok service kártya videó-tile-ja (a phone-mock helyettesítője) —
   ugyanaz mint a portfolio .video-tile, de fix méretű, nem flex-elemként.
   A meglévő initVideoModal() automatikusan kezeli a data-video-src miatt. */
.service-video-tile {
  flex: 0 0 auto;
  width: 50%;
  max-width: 140px;
  border-radius: 18px;
  border: 4px solid #2a2a2a;
}
.service-video-tile:hover,
.service-video-tile:focus-visible {
  border-color: rgba(0, 234, 255, 0.6);
}
.service-video-tile .video-tile-play svg {
  width: 36px;
  height: 36px;
  padding: 9px;
}
.svc-img-social {
  background: linear-gradient(135deg, #27272a 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
}
.camera-mock {
  width: 60%;
  max-width: 220px;
  aspect-ratio: 4/3;
  background: #0a0a0a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.camera-mock::before {
  content: "";
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 30%, #27272a 60%, #0a0a0a 100%);
  border: 3px solid #3f3f46;
}
.svc-img-ads {
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
}
.dashboard-mock {
  width: 70%;
  aspect-ratio: 4/3;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 4px;
}
.dashboard-mock .bar { height: 4px; background: #0c4a6e; border-radius: 2px; width: 60%; }
.dashboard-mock .bar.short { width: 40%; }
.dashboard-mock .chart {
  flex: 1;
  margin-top: 8px;
  background: linear-gradient(180deg, transparent 50%, #bfdbfe 100%);
  border-bottom: 2px solid #1d4ed8;
  border-radius: 0 0 6px 6px;
}
.svc-img-influencer {
  background: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
}
.pro-cam {
  width: 65%;
  aspect-ratio: 4/3;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-cam::before {
  content: "";
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #0a0a0a 25%, #27272a 60%);
  border: 4px solid #1a1a1a;
  box-shadow: inset 0 0 0 8px #0a0a0a;
}
.svc-img-web {
  background: var(--color-bg-primary);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* A service card image-tartalom (PNG/JPG).
   Mobile (1-oszlopos service-card): cover, kitölti a containert.
   Desktop (2-oszlopos): a kép a saját aspect-ratio-ját tartja, a keret szigorúan
   a renderelt méretet veszi körül, nem a containert. */
.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--color-border-strong);
}
@media (min-width: 768px) {
  .service-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
.web-mock {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: #1a1a1a;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  padding: 10px;
}
.web-mock .topbar { height: 8px; background: var(--color-border-strong); border-radius: 3px; margin-bottom: 8px; }
.web-mock .row { height: 4px; background: #3f3f46; border-radius: 2px; margin-bottom: 4px; }
.web-mock .row:nth-child(2) { width: 80%; }
.web-mock .row:nth-child(3) { width: 65%; }
.web-mock .row:nth-child(4) { width: 90%; }

/* ==========================================================================
   NOT FOR YOU
   ========================================================================== */
.notforyou {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--color-border-subtle);
}
.notforyou-head {
  text-align: center;
  margin-bottom: 48px;
}
.notforyou-eyebrow {
  font-size: 11px;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.notforyou-title {
  font-weight: 400;
  font-size: var(--text-h2);
  letter-spacing: -0.5px;
  line-height: 1.15;
  max-width: 600px;
  margin: 0 auto 16px;
}
.notforyou-lead {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.notforyou-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.notforyou-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
  padding: 26px;
  transition: background 200ms, transform 200ms;
}
.notforyou-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}
.notforyou-card-label {
  font-size: 11px;
  color: var(--color-danger);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.notforyou-card-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-text-primary);
}
.notforyou-card-body {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.notforyou-foot {
  text-align: center;
  margin-top: 40px;
}
.notforyou-foot p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 18px;
}

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.portfolio {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--color-border-subtle);
}
.portfolio-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.portfolio-title {
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  max-width: 460px;
}
.portfolio-cta {
  display: inline-block;
  background: var(--color-accent-green);
  color: #101010;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 50px;
  margin-top: 18px;
  transition: transform 200ms, box-shadow 200ms;
}
.portfolio-desc + .portfolio-cta { margin-top: 18px; }
.portfolio-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(55, 226, 71, 0.35); }
.portfolio-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 4px;
}
.portfolio-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.portfolio-strip::-webkit-scrollbar { display: none; }
.video-tile {
  /* button reset */
  font: inherit;
  color: inherit;
  padding: 0;
  cursor: pointer;
  /* tile look */
  flex: 0 0 150px;
  aspect-ratio: 9/16;
  border-radius: 14px;
  border: 1px solid var(--color-border-strong);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--color-bg-secondary);
  transition: transform 200ms, border-color 200ms, box-shadow 200ms;
}
.video-tile:hover,
.video-tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 234, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 234, 255, 0.15);
  outline: none;
}
.video-tile-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.video-tile-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.video-tile-play svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  padding: 14px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: transform 200ms, background 200ms, border-color 200ms;
  box-sizing: content-box;
}
.video-tile:hover .video-tile-play svg,
.video-tile:focus-visible .video-tile-play svg {
  transform: scale(1.08);
  background: rgba(0, 234, 255, 0.25);
  border-color: var(--color-brand-cyan);
}
@media (min-width: 1024px) {
  .portfolio-layout { grid-template-columns: 0.85fr 1.5fr; gap: 36px; }
  .video-tile { flex: 0 0 130px; }
  .video-tile-play svg {
    width: 44px;
    height: 44px;
    padding: 11px;
  }
}

/* Portfolio strip wrapper + scroll nav nyilak (jobb alsó sarokban) */
.portfolio-strip-wrap {
  position: relative;
  /* min-width: 0 megakadályozza, hogy a grid cell a strip min-content
     szélességére nyúljon — a strip overflow-x: auto-val görgethető marad */
  min-width: 0;
}
.portfolio-strip { min-width: 0; }
.portfolio-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}
.portfolio-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 200ms, border-color 200ms, transform 200ms, opacity 200ms;
}
.portfolio-nav-btn:hover:not([disabled]),
.portfolio-nav-btn:focus-visible:not([disabled]) {
  background: rgba(0, 234, 255, 0.15);
  border-color: rgba(0, 234, 255, 0.5);
  color: var(--color-brand-cyan);
  transform: scale(1.05);
  outline: none;
}
.portfolio-nav-btn[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ==========================================================================
   VIDEO LIGHTBOX MODAL
   ========================================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 250ms, visibility 250ms;
  padding: 24px;
}
.video-modal.open {
  visibility: visible;
  opacity: 1;
}
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  padding: 0;
}
.video-modal-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 540px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-modal-player {
  display: block;
  width: 100%;
  max-height: 85vh;
  border-radius: 14px;
  background: #000;
  outline: none;
}
.video-modal-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 200ms, border-color 200ms;
  z-index: 2;
}
.video-modal-close:hover,
.video-modal-close:focus-visible {
  background: rgba(0, 234, 255, 0.2);
  border-color: var(--color-brand-cyan);
  outline: none;
}
@media (max-width: 640px) {
  .video-modal { padding: 16px; }
  .video-modal-close { top: -48px; }
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--color-border-subtle);
}
.reviews-title {
  font-size: var(--text-h2);
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.reviews-intro {
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.reviews-stage {
  position: relative;
  overflow: hidden;
}
.reviews-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.review-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 16px 0;
  animation: review-scroll 60s linear infinite;
}
.review-track:hover { animation-play-state: paused; }
@keyframes review-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .review-track { animation: none; transform: translateX(0); }
}

.review-card {
  flex: 0 0 auto;
  width: 360px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
  padding: 22px;
  transition: transform 200ms, background 200ms;
}
.review-card:hover { transform: translateY(-2px); background: rgba(255,255,255,0.07); }
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
}
.review-avatar.b { background: linear-gradient(135deg, #fbbf24 0%, #dc2626 100%); }
.review-avatar.c { background: linear-gradient(135deg, #22c55e 0%, #0c4a6e 100%); }
.review-avatar.d { background: linear-gradient(135deg, #ec4899 0%, #831843 100%); }
.review-avatar.e { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); }
.review-avatar.f { background: linear-gradient(135deg, #f97316 0%, #7c2d12 100%); }
.review-meta { flex: 1; min-width: 0; }
.review-name {
  font-size: 13px;
  color: var(--color-text-primary);
  font-weight: 500;
  line-height: 1.2;
}
.review-date {
  font-size: 11px;
  color: var(--color-text-tertiary);
  line-height: 1.3;
  margin-top: 2px;
}
.review-context {
  font-size: 11px;
  color: var(--color-brand-cyan);
  line-height: 1.3;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.1px;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.review-stars .star {
  color: var(--color-accent-amber);
  font-size: 14px;
  line-height: 1;
}
.review-body {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}
@media (max-width: 480px) {
  .review-card { width: 300px; padding: 18px; }
  .review-track { animation-duration: 50s; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--color-border-subtle);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.faq-title {
  font-size: var(--text-h2);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.faq-intro-p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 420px;
}
.faq-mail-card {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
  padding: 14px 20px;
}
.faq-mail-label {
  font-size: 11px;
  color: var(--color-text-tertiary);
}
.faq-mail-value {
  font-size: 13px;
  color: var(--color-text-primary);
  margin-top: 2px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
}
.faq-item summary {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--color-text-primary);
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-border-default);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 200ms;
}
.faq-item[open] .faq-item-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 20px 16px;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.65;
}
@media (min-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   BOOKING
   ========================================================================== */
.booking {
  padding: var(--section-py) 0;
  text-align: center;
}
.booking-intro {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.booking-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
  padding: 14px 22px 14px 14px;
  text-align: left;
}
.booking-portrait {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(160deg, #3a3a3a 0%, #1a1a1a 100%);
  flex-shrink: 0;
  overflow: hidden;
}
.booking-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.booking-h {
  font-size: 13px;
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: 4px;
}
.booking-sub {
  font-size: 11px;
  color: var(--color-text-tertiary);
}
.booking-cta { margin-top: 24px; }
.booking-foot {
  font-size: 11px;
  color: var(--color-text-disabled);
  margin-top: 10px;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--color-border-subtle);
}
.contact-title {
  font-size: var(--text-h2);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.contact-intro {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.info-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
  padding: 22px;
}
.info-card-h {
  font-size: 13px;
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: 6px;
}
.info-card-d {
  font-size: 12px;
  color: var(--color-text-tertiary);
  line-height: 1.55;
  margin-bottom: 12px;
}
.info-card-link {
  font-size: 13px;
  color: var(--color-brand-cyan);
}
.form-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
  padding: 24px;
}
.form-h {
  font-size: 17px;
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 12px;
  color: var(--color-text-tertiary);
  margin-bottom: 18px;
  line-height: 1.5;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-input {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--color-text-primary);
  width: 100%;
  transition: border-color 200ms;
}
.form-input::placeholder { color: var(--color-text-disabled); }
.form-input:focus {
  outline: none;
  border-color: var(--color-brand-cyan);
}
.form-input.full { grid-column: 1 / -1; }
.form-field { margin-bottom: 10px; }
.form-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: 14px;
}
.form-agree {
  font-size: 11px;
  color: var(--color-text-tertiary);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.form-submit {
  background: var(--color-accent-green);
  color: #101010;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 11px 26px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 200ms, box-shadow 200ms, opacity 200ms;
}
.form-submit:hover:not([disabled]) { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(55, 226, 71, 0.35); }
.form-submit[disabled] { opacity: 0.6; cursor: progress; }

/* Inline status banner (siker / hiba a form fölött) */
.form-status {
  display: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.form-status:not(:empty) { display: block; }
.form-status--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}
.form-status--error {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #fca5a5;
}
.form-status a {
  color: inherit;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .form-foot { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 0.85fr 1.3fr; gap: 24px; }
}

/* ==========================================================================
   THANK YOU PAGE (koszonjuk.html)
   ========================================================================== */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(7rem, 16vh, 10rem) var(--container-px) clamp(3rem, 8vh, 5rem);
}
.thank-you-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 64px) clamp(28px, 5vw, 56px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.thank-you-icon {
  display: inline-flex;
  margin: 0 auto 28px;
  color: var(--color-brand-cyan);
}
.thank-you-icon svg {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 0 32px rgba(0, 234, 255, 0.5));
  animation: thank-you-pulse 2.4s ease-in-out infinite;
}
@keyframes thank-you-pulse {
  0%, 100% { filter: drop-shadow(0 0 28px rgba(0, 234, 255, 0.4)); }
  50%      { filter: drop-shadow(0 0 44px rgba(0, 234, 255, 0.7)); }
}
@media (prefers-reduced-motion: reduce) {
  .thank-you-icon svg { animation: none; }
}
.thank-you-eyebrow {
  font-size: 11px;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.thank-you-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: 18px;
}
.thank-you-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 14px;
}
.thank-you-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 32px;
}
.thank-you-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.thank-you-phone {
  font-size: 13px;
  color: var(--color-brand-cyan);
  font-weight: 500;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: opacity 200ms;
}
.thank-you-phone:hover { opacity: 0.7; }

/* ==========================================================================
   COOKIE CONSENT (GDPR + Google Consent Mode v2)
   ========================================================================== */

/* --- OVERLAY (soft consent gate — kötelező a választás) --- */
.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 799;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}
.consent-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* --- BANNER (modal-stílus, középre, scroll-lock) --- */
.consent-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 800;
  width: calc(100% - 32px);
  max-width: 540px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 350ms ease, transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.consent-banner.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.consent-banner-text { min-width: 0; }
.consent-banner-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.consent-banner-title svg {
  width: 16px;
  height: 16px;
  color: var(--color-brand-cyan);
  flex-shrink: 0;
}
.consent-banner-body {
  font-size: 12.5px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}
.consent-banner-body a {
  color: var(--color-brand-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-banner-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.consent-btn {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 10px 18px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: transform 180ms, box-shadow 180ms, background 180ms, border-color 180ms;
  text-align: center;
  white-space: nowrap;
}
.consent-btn--primary {
  background: var(--color-accent-green);
  color: #101010;
}
.consent-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(55, 226, 71, 0.35);
}
.consent-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--color-border-strong);
}
.consent-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.consent-btn--tertiary {
  background: transparent;
  color: var(--color-text-muted);
  padding: 10px 14px;
  border: 1px solid transparent;
}
.consent-btn--tertiary:hover {
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.04);
}
/* Banner modal-stílusú — mindig 1-oszlopos gomb-stack,
   nincs külön desktop layout (a banner max-width 540px) */

/* --- PREFERENCE CENTER MODAL --- */
.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 250ms, visibility 250ms;
}
.consent-modal.open {
  visibility: visible;
  opacity: 1;
}
.consent-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;
  padding: 0;
}
.consent-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.consent-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.consent-modal-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  color: var(--color-text-primary);
  margin: 0;
  letter-spacing: -0.3px;
}
.consent-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 200ms, border-color 200ms;
}
.consent-modal-close:hover {
  background: rgba(0, 234, 255, 0.15);
  border-color: var(--color-brand-cyan);
}
.consent-modal-body {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 18px;
}
.consent-modal-body a {
  color: var(--color-brand-cyan);
  text-decoration: underline;
}
.consent-categories {
  overflow-y: auto;
  margin: 0 -28px 18px;
  padding: 0 28px;
  flex: 1 1 auto;
}
.consent-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-default);
}
.consent-category:last-child { border-bottom: none; }
.consent-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.consent-category-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}
.consent-category-desc {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}
.consent-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 200ms, border-color 200ms;
}
.consent-toggle::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 20px;
  height: 20px;
  background: #d4d4d8;
  border-radius: 50%;
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), background 200ms;
}
.consent-toggle.on {
  background: rgba(0, 234, 255, 0.25);
  border-color: var(--color-brand-cyan);
}
.consent-toggle.on::before {
  transform: translateX(20px);
  background: var(--color-brand-cyan);
}
.consent-toggle[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.consent-modal-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-default);
}
@media (min-width: 480px) {
  .consent-modal-actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- FLOATING SETTINGS BUTTON (a beleegyezés után) --- */
.consent-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 234, 255, 0.35);
  color: var(--color-brand-cyan);
  cursor: pointer;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 250ms, transform 250ms, background 200ms, border-color 200ms;
  pointer-events: none;
}
.consent-fab.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.consent-fab:hover {
  background: rgba(20, 20, 20, 0.98);
  border-color: var(--color-brand-cyan);
  transform: scale(1.06);
  box-shadow: 0 0 24px rgba(0, 234, 255, 0.3);
}
.consent-fab svg { width: 20px; height: 20px; }

/* ==========================================================================
   LEGAL PAGES (adatvedelem.html, suti-kezeles.html)
   ========================================================================== */
.legal-page {
  padding: clamp(7rem, 14vh, 9rem) var(--container-px) clamp(3rem, 6vh, 5rem);
}
.legal-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 56px);
  max-width: 920px;
  margin: 0 auto;
}
.legal-eyebrow {
  font-size: 11px;
  color: var(--color-text-tertiary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.legal-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.875rem, 3vw + 0.5rem, 2.75rem);
  letter-spacing: -1px;
  color: var(--color-text-primary);
  margin-bottom: 14px;
  line-height: 1.15;
}
.legal-subtitle {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--color-brand-cyan);
  letter-spacing: 0.5px;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.legal-intro {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  padding: 16px 20px;
  background: rgba(0, 234, 255, 0.04);
  border-left: 2px solid rgba(0, 234, 255, 0.4);
  border-radius: 4px 12px 12px 4px;
}
.legal-section {
  margin-bottom: 36px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.4vw + 0.2rem, 1.5rem);
  letter-spacing: -0.3px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}
.legal-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 18px;
  margin-bottom: 8px;
}
.legal-section p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 14px;
}
.legal-section ul li {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
.legal-section ul li::before {
  content: "•";
  color: var(--color-brand-cyan);
  font-weight: 700;
  position: absolute;
  left: 8px;
}
.legal-section ol {
  padding-left: 28px;
  margin: 0 0 14px;
}
.legal-section ol li {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 6px;
}
.legal-section ol li::marker {
  color: var(--color-brand-cyan);
  font-weight: 600;
}
.legal-section a {
  color: var(--color-brand-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 234, 255, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 200ms;
}
.legal-section a:hover {
  text-decoration-color: var(--color-brand-cyan);
}
.legal-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}
.legal-definitions {
  margin: 14px 0;
}
.legal-definitions dt {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 14px;
  margin-top: 14px;
}
.legal-definitions dd {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0 0 6px;
  padding-left: 0;
}
.legal-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-default);
  text-align: center;
}

/* Form checkbox link */
.form-agree a {
  color: var(--color-brand-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 234, 255, 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color 200ms;
}
.form-agree a:hover { text-decoration-color: var(--color-brand-cyan); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 80px 0 28px;
  position: relative;
  background-color: var(--color-bg-primary);
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.025) 12%,
    rgba(255, 255, 255, 0.008) 25%,
    transparent 45%
  );
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer-brand .logo {
  color: var(--color-text-primary);
}
.footer-tagline {
  font-size: 14px;
  color: var(--color-text-tertiary);
  margin: 14px 0 22px;
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 234, 255, 0.10);
  border: 1px solid rgba(0, 234, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-cyan);
  text-decoration: none;
  transition: background 200ms, transform 200ms, border-color 200ms;
}
.social-icon:hover {
  background: rgba(0, 234, 255, 0.20);
  border-color: rgba(0, 234, 255, 0.55);
  transform: translateY(-2px);
}
.social-icon svg {
  width: 15px;
  height: 15px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin: 0 0 18px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list a {
  font-size: 13px;
  color: var(--color-text-tertiary);
  text-decoration: none;
  line-height: 1.4;
  transition: color 200ms;
}
.footer-list a:hover { color: var(--color-text-primary); }

.footer-divider {
  position: relative;
  height: 80px;
  margin: 48px 0 24px;
}
.footer-divider::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(80, 140, 255, 0.4) 20%,
    rgba(180, 220, 255, 1) 50%,
    rgba(80, 140, 255, 0.4) 80%,
    transparent 100%
  );
}
.footer-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 60px;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 230, 255, 0.85) 0%,
    rgba(120, 180, 255, 0.45) 12%,
    rgba(60, 120, 255, 0.22) 30%,
    rgba(30, 80, 200, 0.06) 60%,
    transparent 100%
  );
  filter: blur(5px);
  pointer-events: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 12px;
  color: var(--color-text-disabled);
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.footer-copyright p {
  margin: 0 0 4px;
}
.footer-legal {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.footer-legal a {
  color: var(--color-text-tertiary);
  text-decoration: none;
  transition: color 200ms;
}
.footer-legal a:hover { color: var(--color-text-primary); }

@media (min-width: 640px) {
  .footer-legal { flex-direction: row; }
}
@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.3fr 1fr 1.5fr 1.2fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
