/* ============================================================
   SPENVEX — styles.css
   Rozšírená paleta: teal dominuje, koral/jantár/mäta ako akcenty.
   Farby a základné hodnoty sú v :root — ľahko sa upravujú.
   ============================================================ */

:root {
  --teal: #0E7C7B;
  --teal-dark: #0A5F5E;
  --ink-teal: #0F3A3A;
  --teal-light: #35A99F;
  --teal-tint: #E7F3F1;
  --coral: #FF6B57;
  --coral-dark: #E4503C;
  --coral-tint: #FFECE8;
  --amber: #F4B740;
  --amber-tint: #FCF3DE;
  --mint: #6FD6C3;
  --mint-tint: #E4F7F2;
  --ink: #1F2933;
  --muted: #52606D;
  --bg: #FFFFFF;
  --cream: #FBF8F2;
  --border: #E2ECEA;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 6px 24px rgba(14, 124, 123, 0.08);
  --shadow-lift: 0 16px 40px rgba(14, 124, 123, 0.14);
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1180px;
}

/* ---------- Reset & základ ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Jemná filmová zrnitosť cez celý web */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.15rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }

a { color: var(--teal); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
  /* obsah nad celostránkovým 3D pozadím (.shapes-canvas) */
  position: relative;
  z-index: 1;
}

/* Celostránkové 3D pozadie — fixné, za obsahom, pred pozadiami sekcií */
.shapes-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.shapes-canvas.is-ready { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .shapes-canvas { display: none; }
}

.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--teal);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 400;
}
.skip-link:focus { top: 0.5rem; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- Glow bloby (dekoratívne pozadia sekcií) ---------- */
.glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
  will-change: transform;
}
.glow--teal  { background: rgba(14, 124, 123, 0.35); }
.glow--mint  { background: rgba(111, 214, 195, 0.45); }
.glow--coral { background: rgba(255, 107, 87, 0.28); }
.glow--amber { background: rgba(244, 183, 64, 0.3); }
.glow--strong { opacity: 0.75; }

/* ---------- Zvlnené oddeľovače ---------- */
.wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  pointer-events: none;
}
.wave svg { display: block; width: 100%; height: clamp(36px, 7vw, 96px); }

/* ---------- Tlačidlá ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  will-change: transform;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 124, 123, 0.28);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 124, 123, 0.3), 0 4px 14px rgba(244, 183, 64, 0.18);
}
.btn--coral {
  background: linear-gradient(120deg, var(--coral), var(--coral-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 107, 87, 0.35);
}
.btn--coral:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 107, 87, 0.42); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal-dark);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--teal); background: var(--teal-tint); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
}
.btn--outline:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }
.btn--sm { padding: 0.55rem 1.2rem; font-size: 0.92rem; }
.btn--lg { padding: 1rem 2.2rem; font-size: 1.08rem; }
.btn--full { width: 100%; }

/* ---------- Navigácia ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(31, 41, 51, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand__mark { width: 34px; height: 37px; flex: none; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand--light .brand__name { color: #fff; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav__links a:not(.btn) {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav__links a:not(.btn):hover { color: var(--teal); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 820px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;                      /* plné nepriehľadné pozadie */
    border-bottom: 1px solid var(--border);
    box-shadow: 0 22px 44px rgba(31, 41, 51, 0.14);
    padding: 0.5rem clamp(1.1rem, 5vw, 1.6rem) 1.1rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.btn) {
    padding: 0.9rem 0.35rem;              /* pohodlné pre palec (>44px) */
    font-size: 1.08rem;
    border-bottom: 1px solid var(--border);
  }
  .nav__links .lang { justify-content: center; margin: 0.8rem 0 0.3rem; }
  .nav__cta {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.95rem 1rem;
    font-size: 1rem;
  }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Sekcie ---------- */
.section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: clip;
}
.section--cream { background: var(--cream); }
.section--wave-bottom { padding-bottom: clamp(6rem, 12vw, 9rem); }
.section__head { position: relative; max-width: 620px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section__lead { color: var(--muted); font-size: 1.1rem; }
.section__cta { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); position: relative; }
.section > .container { position: relative; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.7rem;
}
.eyebrow--light { color: var(--mint); }

.grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* 3D tilt karty — JS nastavuje --rx/--ry */
.tilt {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0));
  transition: transform 0.18s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tilt.is-tilting { transition: box-shadow 0.25s ease, border-color 0.25s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2.2rem, 5vw, 3.6rem) 0 clamp(5rem, 10vw, 7.5rem);
  overflow: clip;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
}

/* Aurora — viacfarebný gradient mesh (teal + mäta + jantár) */
.hero__aurora {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  background:
    radial-gradient(42% 38% at 78% 18%, rgba(111, 214, 195, 0.4), transparent 70%),
    radial-gradient(36% 34% at 12% 24%, rgba(14, 124, 123, 0.18), transparent 70%),
    radial-gradient(30% 30% at 60% 78%, rgba(244, 183, 64, 0.16), transparent 70%),
    radial-gradient(26% 26% at 30% 88%, rgba(255, 107, 87, 0.08), transparent 70%);
  filter: blur(40px);
}

.hero__inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  width: 100%;
}
@media (min-width: 920px) {
  .hero__inner { grid-template-columns: 1.08fr 0.92fr; }
}
.hero__eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: linear-gradient(120deg, var(--mint-tint), var(--amber-tint));
  border: 1px solid rgba(111, 214, 195, 0.4);
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero h1 .accent {
  background: linear-gradient(110deg, var(--teal) 20%, var(--teal-light) 55%, var(--amber) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Po rozdelení nadpisu na slová nesie gradient každé slovo
   (background-clip: text nefunguje cez inline-block potomkov) */
.hero h1.is-split .accent { background: none; color: inherit; }
.hero h1.is-split .accent .w {
  background: linear-gradient(110deg, var(--teal) 20%, var(--teal-light) 60%, var(--amber) 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 32em;
  margin-bottom: 1.8rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__note { margin-top: 1rem; font-size: 0.9rem; color: var(--muted); }

/* Chat v hero + glow „halo" okolo */
.hero__chatwrap {
  position: relative;
  justify-self: center;
  width: min(100%, 470px);
}
.hero__chatwrap::before {
  content: "";
  position: absolute;
  inset: -26px;
  border-radius: 40px;
  background: conic-gradient(from 210deg, rgba(14,124,123,0.35), rgba(111,214,195,0.45), rgba(244,183,64,0.3), rgba(255,107,87,0.2), rgba(14,124,123,0.35));
  filter: blur(34px);
  z-index: -1;
}
.hero__card {
  position: absolute;
  bottom: -24px;
  right: -22px;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  line-height: 1.35;
  z-index: 2;
}
.hero__card strong { display: block; font-family: var(--font-head); font-size: 0.85rem; }
.hero__card span { color: var(--muted); }
.hero__card-icon {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--amber-tint);
  display: grid;
  place-items: center;
}
.hero__card-icon svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 560px) {
  .hero__card { display: none; }
}

/* ---------- Chat ---------- */
.chat {
  /* glassmorphism — ladí s 3D scénou za kartou */
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(10, 60, 60, 0.22);
  color: var(--ink);
  overflow: hidden;
  width: 100%;
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  background: linear-gradient(120deg, var(--ink-teal), var(--teal));
  color: #fff;
}
.chat__head strong { font-family: var(--font-head); font-size: 0.98rem; display: block; }
.chat__avatar {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
}
.chat__avatar svg { width: 21px; height: 23px; }
.chat__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #CDEDE7;
}
.chat__status i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
}
.chat__badge {
  margin-left: auto;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-teal);
  background: linear-gradient(120deg, var(--mint), var(--amber));
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  white-space: nowrap;
}
.chat__body {
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 190px;
  max-height: min(300px, 34svh);
  overflow-y: auto;
  background: rgba(250, 252, 252, 0.6);
}
.chat__msg {
  max-width: 88%;
  padding: 0.65rem 0.95rem;
  border-radius: 16px;
  font-size: 0.93rem;
  line-height: 1.5;
}
.chat__msg--bot {
  align-self: flex-start;
  background: var(--teal-tint);
  border-bottom-left-radius: 6px;
}
.chat__msg--user {
  align-self: flex-end;
  background: var(--teal);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.chat__msg .btn { display: flex; width: max-content; margin-top: 0.7rem; font-size: 0.88rem; padding: 0.55rem 1.1rem; }
.chat__msg--new { animation: msg-in 0.3s ease both; }
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat__typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 5px;
  padding: 0.85rem 1rem;
  background: var(--teal-tint);
  border-radius: 16px;
  border-bottom-left-radius: 6px;
}
.chat__typing i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
  animation: typing 1s infinite;
}
.chat__typing i:nth-child(2) { animation-delay: 0.15s; }
.chat__typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}
.chat__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem 1.1rem;
  border-top: 1px solid rgba(226, 236, 234, 0.7);
  background: rgba(255, 255, 255, 0.55);
}
.chat__chip {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal-dark);
  background: #fff;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.chat__chip:hover:not(:disabled) { background: var(--teal); color: #fff; transform: translateY(-1px); }
.chat__chip:disabled { opacity: 0.35; cursor: default; border-color: var(--border); color: var(--muted); }

/* ---------- Služby ---------- */
.service { padding: 1.8rem; }
.service:hover { box-shadow: var(--shadow-lift); border-color: rgba(14, 124, 123, 0.3); --lift: -6px; }
.service__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}
.service__icon--teal  { background: var(--teal-tint); }
.service__icon--mint  { background: var(--mint-tint); }
.service__icon--coral { background: var(--coral-tint); }
.service__icon--amber { background: var(--amber-tint); }
.service__icon svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service__icon--coral svg { stroke: var(--coral-dark); }
.service__icon--amber svg { stroke: #B07E15; }
.service__icon svg .thin { stroke-width: 1.3; }
.service p { margin: 0; color: var(--muted); }

/* ---------- Kroky ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.step__num {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.step:nth-child(1) .step__num { background: linear-gradient(135deg, var(--teal-light), var(--teal-dark)); }
.step:nth-child(2) .step__num { background: linear-gradient(135deg, var(--mint), var(--teal)); }
.step:nth-child(3) .step__num { background: linear-gradient(135deg, var(--amber), var(--coral)); }
.step p { margin: 0; color: var(--muted); }

/* ---------- AI showcase pás (tmavý ink-teal) ---------- */
.band {
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(14, 124, 123, 0.5), transparent 70%),
    radial-gradient(50% 60% at 10% 90%, rgba(10, 95, 94, 0.6), transparent 70%),
    var(--ink-teal);
  color: #fff;
}
.band__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 920px) {
  .band__inner { grid-template-columns: 1.05fr 0.95fr; }
}
.band h2 { color: #fff; }
.band__lead { color: #CFE9E3; font-size: 1.1rem; }
.band__points {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}
.band__points li {
  position: relative;
  padding-left: 2rem;
  color: #EAF6F3;
  font-weight: 500;
}
.band__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 1.15em; height: 1.15em;
  border-radius: 50%;
  background: rgba(111, 214, 195, 0.22)
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236FD6C3" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-10"/></svg>')
    center / 58% no-repeat;
}
.band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.band__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
}
.band__orb {
  width: min(64%, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 32% 28%, rgba(111, 214, 195, 0.35), rgba(14, 124, 123, 0.15) 55%, rgba(8, 60, 60, 0.4));
  box-shadow:
    inset 0 0 60px rgba(111, 214, 195, 0.25),
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 90px rgba(111, 214, 195, 0.25);
}
.band__orb svg { width: 46%; filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4)); }
.band__bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 16px;
  padding: 0.6rem 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  max-width: 240px;
}
.band__bubble--a { top: 8%; left: 2%; border-bottom-left-radius: 5px; }
.band__bubble--b {
  bottom: 10%; right: 0;
  background: linear-gradient(120deg, var(--mint), #9BE5D6);
  color: var(--ink-teal);
  border-bottom-right-radius: 5px;
}

/* ---------- Ukážky ---------- */
.work { overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.work:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.work__img { aspect-ratio: 3 / 2; overflow: hidden; }
.work__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work:hover .work__img img { transform: scale(1.05); }
.work__body { padding: 1.4rem 1.5rem 1.6rem; }
.work__body p { color: var(--muted); margin-bottom: 1rem; font-size: 0.97rem; }
.work__tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.work__tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-tint);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
}
.work__tags span:nth-child(2) { background: var(--mint-tint); }
.work__tags span:nth-child(3) { background: var(--amber-tint); color: #9A6D0F; }

/* ---------- O mne ---------- */
.about {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 860px) {
  .about { grid-template-columns: 0.9fr 1.1fr; }
}
/* Fotka Olivera */
.about__photo { position: relative; }
.about__photo img {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 24px;
  border: 6px solid #fff;
  box-shadow: 0 24px 50px rgba(14, 124, 123, 0.18);
}
.about__placeholder {
  aspect-ratio: 4 / 5;
  max-width: 400px;
  margin-inline: auto;
  border-radius: 24px;
  border: 2px dashed rgba(14, 124, 123, 0.35);
  background: linear-gradient(160deg, #fff, var(--mint-tint) 70%, var(--amber-tint));
  display: none;                 /* skryté, kým je fotka; onerror ho zobrazí */
  place-content: center;
  gap: 1rem;
  justify-items: center;
  color: var(--muted);
  font-weight: 500;
  width: 100%;
}
.about__photo.is-empty .about__placeholder { display: grid; }
.about__placeholder svg { width: 64px; height: 70px; opacity: 0.8; }
.about__text h2 { margin-bottom: 0.8rem; }
.about__text p { color: var(--muted); }
.about__text .btn { margin-top: 0.6rem; }

/* ---------- Balíky ---------- */
.plans { align-items: stretch; }
.plan {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan:hover { box-shadow: var(--shadow-lift); --lift: -6px; }
.plan__desc { color: var(--muted); }
.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.55rem;
}
.plan__list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.3em;
  width: 1.05em; height: 1.05em;
  border-radius: 50%;
  background: var(--teal-tint)
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230E7C7B" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-10"/></svg>')
    center / 58% no-repeat;
}
.plan__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin: auto 0 1.1rem;
  padding-top: 0.6rem;
}
.plan--featured {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-lift);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(140deg, var(--teal), var(--mint) 55%, var(--amber)) border-box;
  border-color: transparent;
}
@media (min-width: 720px) {
  .plan--featured { margin-top: -10px; margin-bottom: 10px; }
}
.plan__flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--coral), var(--coral-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(255, 107, 87, 0.4);
}

/* ---------- CTA pruh ---------- */
.cta-band {
  position: relative;
  overflow: clip;
  background: linear-gradient(130deg, var(--ink-teal), var(--teal-dark) 45%, var(--teal) 85%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}
.cta-band__inner { position: relative; text-align: center; max-width: 640px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #D9F0EB; margin-bottom: 1.8rem; }

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact { grid-template-columns: 1.3fr 0.7fr; }
}
.contact__form { padding: 2rem 1.8rem; }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.field { display: block; margin-bottom: 1rem; }
.field span {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.15);
}
.form-status { margin: 0.9rem 0 0; font-weight: 500; min-height: 1.4em; }
.form-status.is-ok { color: var(--teal-dark); }
.form-status.is-err { color: #B4232A; }
.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success h3 { color: var(--teal-dark); }
.form-success p { color: var(--muted); margin: 0; }

.contact__info {
  display: grid;
  gap: 1.3rem;
  padding: 0.5rem 0;
}
.contact__label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact__item a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
}
.contact__item a:hover { color: var(--teal); }
.contact__item p { margin: 0; color: var(--ink); font-weight: 500; }
.contact__info .btn { justify-self: start; }

/* ---------- Pätička (ink-teal bookend) ---------- */
.footer {
  background: var(--ink-teal);
  padding: 2.4rem 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.footer .brand__mark { width: 28px; height: 31px; }
.footer .brand__name { font-size: 1.2rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__links a {
  color: #A9CFC8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--mint); }
.footer__copy { margin: 0; color: #7FA9A2; font-size: 0.9rem; }

/* ============================================================
   ANIMÁCIE — všetky gated cez prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Scroll reveal (fade + posun + jemný zoom) */
  .js .reveal {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--stagger, 0s);
  }
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  /* Page-load reveal v hero */
  .js .load-reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: load-in 0.8s ease forwards;
    animation-delay: calc(var(--lr, 0) * 0.13s + 0.1s);
  }
  @keyframes load-in {
    to { opacity: 1; transform: none; }
  }

  /* Aurora — pomalé vlnenie */
  .hero__aurora {
    animation: aurora 16s ease-in-out infinite alternate;
  }
  @keyframes aurora {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(-2.5%, 2%, 0) scale(1.06); }
    100% { transform: translate3d(2%, -2.5%, 0) scale(1.02); }
  }

  /* Glow bloby — jemné dýchanie */
  .glow { animation: glow-drift 14s ease-in-out infinite alternate; }
  .glow--strong { animation-duration: 18s; }
  @keyframes glow-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(4%, 6%, 0) scale(1.12); }
  }

  /* Plávajúce prvky */
  .float-a { animation: float-a 7s ease-in-out infinite; }
  .float-b { animation: float-b 8s ease-in-out 1s infinite; }
  @keyframes float-a {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  @keyframes float-b {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }

  /* Halo okolo chatu — pomalá rotácia odtieňov */
  .hero__chatwrap::before { animation: halo 12s linear infinite; }
  @keyframes halo {
    from { filter: blur(34px) hue-rotate(0deg); }
    to   { filter: blur(34px) hue-rotate(28deg); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .card, .pain, .step, .work, .plan, .chat__chip, .tilt { transition: none; }
  .btn:hover, .pain:hover, .service:hover, .step:hover, .work:hover, .plan:hover { transform: none; }
  .chat__typing i, .chat__msg--new { animation: none; }
  .marquee__track { animation: none; }
  .spark, .orb3d, .btn--pulse { animation: none; }
}

/* ============================================================
   INTERAKTÍVNE PRVKY — veľké S, častice, orby, marquee, glóbus,
   vlastný kurzor, ripple, pulz CTA, nadpis po slovách
   ============================================================ */

/* ---------- Veľké „S" za obsahom hero ---------- */
.hero__bigS {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vh, 620px);
  transform: translate(-50%, -52%) perspective(1100px) rotateX(var(--bsx, 0deg)) rotateY(var(--bsy, 0deg));
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 30px 40px rgba(14, 124, 123, 0.35));
  will-change: transform;
}
.hero__bigS svg { width: 100%; height: auto; display: block; }
@media (max-width: 919px) {
  .hero__bigS { width: min(80vw, 420px); opacity: 0.07; }
}

/* ---------- Plávajúce častice (myšací parallax) ---------- */
.spark {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.spark--mint  { width: 14px; height: 14px; background: var(--mint);  opacity: 0.55; box-shadow: 0 0 18px rgba(111, 214, 195, 0.8); }
.spark--amber { width: 10px; height: 10px; background: var(--amber); opacity: 0.55; box-shadow: 0 0 14px rgba(244, 183, 64, 0.7); }
.spark--coral { width: 12px; height: 12px; background: var(--coral); opacity: 0.4;  box-shadow: 0 0 16px rgba(255, 107, 87, 0.6); }
.spark--teal  { width: 8px;  height: 8px;  background: var(--teal);  opacity: 0.35; }
.spark--ring  { width: 26px; height: 26px; background: transparent; border: 2.5px solid rgba(111, 214, 195, 0.55); }

/* ---------- 3D-vyzerajúce gule a prstene v sekciách ---------- */
.orb3d {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  will-change: transform;
}
.orb3d--teal  { background: radial-gradient(circle at 30% 28%, #8AD4CC, var(--teal) 62%, var(--teal-dark)); box-shadow: 0 18px 32px rgba(14, 124, 123, 0.28), inset -6px -8px 16px rgba(0, 0, 0, 0.18); }
.orb3d--mint  { background: radial-gradient(circle at 30% 28%, #DFF9F2, var(--mint) 62%, #3FB39D); box-shadow: 0 16px 28px rgba(111, 214, 195, 0.35), inset -5px -7px 14px rgba(0, 0, 0, 0.12); }
.orb3d--amber { background: radial-gradient(circle at 30% 28%, #FDE6B4, var(--amber) 62%, #D69420); box-shadow: 0 16px 28px rgba(244, 183, 64, 0.3), inset -5px -7px 14px rgba(0, 0, 0, 0.12); }
.orb3d--ring {
  background: conic-gradient(from 130deg, var(--mint), var(--teal) 40%, var(--amber) 75%, var(--mint));
  -webkit-mask: radial-gradient(farthest-side, transparent 56%, #000 59%);
  mask: radial-gradient(farthest-side, transparent 56%, #000 59%);
  box-shadow: none;
  opacity: 0.7;
}

/* ---------- Marquee pás odvetví ---------- */
.marquee {
  position: relative;
  z-index: 1;
  background: var(--cream);
  padding: 1.1rem 0 0.4rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  white-space: nowrap;
}
.marquee__track span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.04em;
  color: var(--teal-dark);
  opacity: 0.45;
}
.marquee__track i {
  font-style: normal;
  color: var(--coral);
  opacity: 0.6;
}

/* ---------- Zemeguľa v sekcii O mne ---------- */
.about__globe {
  grid-column: 1 / -1;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.globe {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 1;
  margin-inline: auto;
  cursor: grab;
  touch-action: pan-y;
}
.globe:active { cursor: grabbing; }
.globe__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.globe__canvas.is-ready { opacity: 1; }
.globe__fallback {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(111, 214, 195, 0.75), rgba(14, 124, 123, 0.9) 62%, var(--teal-dark));
  box-shadow: 0 24px 60px rgba(14, 124, 123, 0.35), inset -12px -16px 34px rgba(0, 0, 0, 0.28);
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.globe__fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(circle at 35% 30%, #000 40%, transparent 78%);
  mask-image: radial-gradient(circle at 35% 30%, #000 40%, transparent 78%);
}
.globe__canvas.is-ready ~ .globe__fallback { opacity: 0; }
.about__globe-caption {
  margin: 1.2rem 0 0;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--muted);
}

/* ---------- Vlastný kurzor (JS ho aktivuje len na desktope) ---------- */
html.custom-cursor, html.custom-cursor * { cursor: none !important; }
html.custom-cursor input,
html.custom-cursor textarea,
html.custom-cursor select { cursor: text !important; }
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 400;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--teal);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(14, 124, 123, 0.6);
  transition: opacity 0.3s ease, width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.cursor-ring.is-hover {
  width: 54px; height: 54px;
  border-color: rgba(111, 214, 195, 0.9);
  background: rgba(111, 214, 195, 0.12);
}
html.cursor-active .cursor-dot,
html.cursor-active .cursor-ring { opacity: 1; }

/* ---------- Ripple na tlačidlách ---------- */
.btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 107, 87, 0.45); /* teal → koral záblesk */
  transform: translate(-50%, -50%) scale(0);
}
.ripple--light { background: rgba(255, 255, 255, 0.55); }

@media (prefers-reduced-motion: no-preference) {
  .ripple { animation: ripple 0.65s ease-out forwards; }
  @keyframes ripple {
    to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
  }

  /* Pulz hlavných CTA */
  .btn--pulse { animation: cta-pulse 2.8s ease-out infinite; }
  @keyframes cta-pulse {
    0%   { box-shadow: 0 8px 20px rgba(14, 124, 123, 0.28), 0 0 0 0 rgba(14, 124, 123, 0.4); }
    70%  { box-shadow: 0 8px 20px rgba(14, 124, 123, 0.28), 0 0 0 16px rgba(14, 124, 123, 0); }
    100% { box-shadow: 0 8px 20px rgba(14, 124, 123, 0.28), 0 0 0 0 rgba(14, 124, 123, 0); }
  }
  .btn--pulse-coral { animation-name: cta-pulse-coral; }
  @keyframes cta-pulse-coral {
    0%   { box-shadow: 0 8px 22px rgba(255, 107, 87, 0.35), 0 0 0 0 rgba(255, 107, 87, 0.45); }
    70%  { box-shadow: 0 8px 22px rgba(255, 107, 87, 0.35), 0 0 0 16px rgba(255, 107, 87, 0); }
    100% { box-shadow: 0 8px 22px rgba(255, 107, 87, 0.35), 0 0 0 0 rgba(255, 107, 87, 0); }
  }

  /* Marquee beh */
  .marquee__track { animation: marquee 26s linear infinite; }
  @keyframes marquee {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }

  /* Hero nadpis po slovách (spany vytvára JS) */
  .js .hero h1 .w {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.55em);
    animation: word-in 0.55s cubic-bezier(0.22, 0.9, 0.35, 1) forwards;
    animation-delay: calc(0.35s + var(--wi, 0) * 0.07s);
  }
  @keyframes word-in {
    to { opacity: 1; transform: none; }
  }

  /* Jemné vznášanie častíc a orbov */
  .spark { animation: spark-float 9s ease-in-out infinite alternate; }
  .spark:nth-of-type(odd) { animation-duration: 12s; animation-delay: -4s; }
  .orb3d { animation: spark-float 11s ease-in-out infinite alternate; }
  @keyframes spark-float {
    from { transform: translateY(0); }
    to   { transform: translateY(-16px); }
  }
}

/* ============================================================
   PREPÍNAČ JAZYKA (SK / EN s vlajkami)
   ============================================================ */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: transparent;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  opacity: 0.5;                       /* neaktívna vlajka jemne stlmená */
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.lang__btn:hover { opacity: 0.85; }
.lang__btn.is-active {               /* aktívna vlajka zvýraznená */
  opacity: 1;
  color: var(--ink);
  background: var(--teal-tint);
  border-color: rgba(14, 124, 123, 0.25);
}
.lang__flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  display: block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.lang__code { letter-spacing: 0.03em; }

/* ============================================================
   KOMPAKTNÝ MOBILNÝ DIZAJN — menej scrollovania, čistejší vzhľad
   ============================================================ */
@media (max-width: 720px) {
  /* Hero: bez veľkej prázdnej plochy pod hlavičkou, obsah hneď hore */
  .hero {
    min-height: auto;
    padding: 1.5rem 0 2.4rem;
  }
  .hero__inner { gap: 1.6rem; }
  .hero__sub { font-size: 1.02rem; margin-bottom: 1.3rem; }
  .hero__eyebrow { margin-bottom: 0.9rem; }
  .hero__actions { gap: 0.6rem; }
  .hero__actions .btn { width: 100%; }        /* palcové tlačidlá */
  .hero__card { display: none; }              /* dekoratívny badge preč na mobile */
  .hero__chatwrap { width: 100%; }

  /* Hutnejšie sekcie a nadpisy */
  .section { padding: 2.5rem 0; }
  .section__head { margin-bottom: 1.5rem; }
  .section__lead { font-size: 1rem; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.3rem); line-height: 1.18; }
  h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  /* Kompaktné karty a menšie medzery */
  .grid { gap: 0.9rem; }
  .card { border-radius: 16px; }
  .service, .step { padding: 1.3rem; }
  .plan { padding: 1.5rem 1.4rem; }
  .work__body { padding: 1.1rem 1.2rem 1.3rem; }
  .plan--featured { margin: 0.5rem 0; }        /* zruš desktopové vysunutie */

  /* Marquee a pásy tesnejšie */
  .marquee { padding: 0.7rem 0 0.2rem; }
  .cta-band { padding: 2.6rem 0; }
  .band__actions .btn,
  .section__cta .btn { width: 100%; }
  .band__points { margin: 1.2rem 0 1.6rem; }

  /* Kontakt a formulár */
  .contact__form { padding: 1.5rem 1.3rem; }
  .contact { gap: 1.4rem; }

  /* Väčšie plochy prepínača jazyka pre dotyk */
  .lang__btn { padding: 0.5rem 0.7rem; font-size: 0.9rem; }
  .lang__flag { width: 24px; height: 16px; }
}

/* Veľmi malé telefóny — istota proti pretečeniu */
@media (max-width: 380px) {
  .container { padding-inline: 1rem; }
  .chat__quick { gap: 0.4rem; }
  .chat__chip { font-size: 0.82rem; padding: 0.42rem 0.8rem; }
}
