/* ============================================================
   MAKÁČ — makac.eu
   ============================================================ */

:root {
  --cream: #f6f4ee;
  --cream-2: #efede4;
  --ink: #0c241c;
  --ink-soft: #3d5249;
  --green: #0e3b2c;
  --green-2: #12503b;
  --lime: #c9f04b;
  --lime-dark: #a5d31e;
  --amber: #f4c04a;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --font-head: "Bricolage Grotesque", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow-card: 0 18px 50px -18px rgba(12, 36, 28, 0.25);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--lime); color: var(--ink); }

.container {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 26px -10px rgba(14, 59, 44, 0.55);
}
.btn--primary:hover { background: var(--green-2); transform: translateY(-2px); }
.btn--lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 26px -10px rgba(165, 211, 30, 0.6);
}
.btn--lime:hover { background: var(--lime-dark); transform: translateY(-2px); }
.btn--small { padding: 10px 22px; font-size: 0.92rem; }
.btn:active { transform: translateY(0) scale(0.98); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav--scrolled {
  background: rgba(246, 244, 238, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(12, 36, 28, 0.08);
}
.nav__inner {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo__mark {
  width: 42px;
  height: 42px;
  display: block;
  transform: rotate(-4deg);
  transition: transform 0.3s var(--ease-out);
  filter: drop-shadow(0 6px 14px rgba(12, 36, 28, 0.28));
}
.logo__mark svg { display: block; width: 100%; height: 100%; }
.logo:hover .logo__mark { transform: rotate(4deg) scale(1.06); }
.logo__text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.logo__dot { color: var(--lime-dark); font-size: 0.85em; }

.nav__links { display: flex; gap: 34px; }
.nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  background: var(--lime-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 auto 0;
  z-index: 99;
  background: rgba(246, 244, 238, 0.97);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px 32px;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease-out);
  border-bottom: 1px solid rgba(12, 36, 28, 0.08);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(12, 36, 28, 0.07);
}
.mobile-menu a.btn { border-bottom: none; margin-top: 14px; justify-content: center; color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 0;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.hero__blob--1 {
  width: 560px; height: 560px;
  background: var(--lime);
  top: -200px; right: -120px;
}
.hero__blob--2 {
  width: 420px; height: 420px;
  background: #b7e3d0;
  bottom: -100px; left: -140px;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(12, 36, 28, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 36, 28, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
}

.hero__inner {
  position: relative;
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 96px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid rgba(12, 36, 28, 0.1);
  border-radius: 100px;
  padding: 8px 18px 8px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 4px 14px -6px rgba(12, 36, 28, 0.15);
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime-dark);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(165, 211, 30, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(165, 211, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(165, 211, 30, 0); }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.9rem, 6.4vw, 5.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 26px 0 22px;
}
.hero__title em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, var(--green) 20%, var(--lime-dark) 90%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__sub {
  font-size: 1.13rem;
  color: var(--ink-soft);
  max-width: 30rem;
  margin-bottom: 32px;
}

.hero__form {
  display: flex;
  gap: 10px;
  max-width: 28rem;
}
.hero__form input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 1rem;
  padding: 15px 22px;
  border: 1.5px solid rgba(12, 36, 28, 0.16);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero__form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(14, 59, 44, 0.1);
}
.hero__form input::placeholder { color: #93a39c; }
.hero__note { font-size: 0.84rem; color: #7b8d85; margin-top: 12px; }

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(12, 36, 28, 0.1);
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green);
}
.stat span { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.35; display: block; max-width: 9rem; }

/* --- Hero app preview (phone mockup) --- */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 30px 0 20px;
}
.hero__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 480px; height: 480px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 240, 75, 0.4), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.phone {
  position: relative;
  width: 302px;
  background: var(--ink);
  border-radius: 46px;
  padding: 11px;
  box-shadow:
    0 40px 80px -30px rgba(12, 36, 28, 0.5),
    0 0 0 1px rgba(12, 36, 28, 0.15);
  transform: rotate(2.5deg);
  z-index: 2;
}
.phone__notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 22px;
  background: var(--ink);
  border-radius: 100px;
  z-index: 3;
}
.phone__screen {
  background: var(--cream);
  border-radius: 36px;
  padding: 58px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 520px;
}
.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}
.app-top__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.app-top__logo svg { width: 26px; height: 26px; border-radius: 8px; }
.app-top__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
}
.app-chips { display: flex; gap: 6px; padding: 2px 4px 4px; }
.app-chip {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid rgba(12, 36, 28, 0.1);
  color: var(--ink-soft);
}
.app-chip--active { background: var(--green); border-color: var(--green); color: var(--white); }
.app-card {
  background: var(--white);
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(12, 36, 28, 0.07);
  box-shadow: 0 8px 20px -12px rgba(12, 36, 28, 0.25);
}
.app-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 8px 0 10px;
  color: var(--ink);
}
.app-card__tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 100px;
}
.tag--green { background: #dff3e8; color: var(--green); }
.tag--violet { background: #e9e3fb; color: #5b3fa8; }
.tag--blue { background: #e0edfb; color: #1d5aa8; }
.app-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  border-top: 1px dashed rgba(12, 36, 28, 0.12);
}
.app-card__row strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--green);
}
.app-card__row span { font-size: 0.72rem; font-weight: 600; color: var(--ink-soft); }

.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(12, 36, 28, 0.07);
  z-index: 3;
}
.hero__chip strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.15;
}
.hero__chip span { font-size: 0.72rem; color: var(--ink-soft); }
.hero__chip-stars { color: var(--amber); font-size: 1rem; letter-spacing: 1px; }
.hero__chip-check {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.hero__chip--rating { top: 4%; right: -5%; transform: rotate(-3deg); }
.hero__chip--applied { bottom: 12%; left: -7%; transform: rotate(2deg); }

.float-a { animation: floaty 6s ease-in-out infinite; }
.float-b { animation: floaty 7s ease-in-out 0.8s infinite; }
.float-c { animation: floaty 8s ease-in-out 1.6s infinite; }
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section--dark { background: var(--green); color: var(--cream); }

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: #dff3e8;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section__eyebrow--light { background: rgba(201, 240, 75, 0.16); color: var(--lime); }

.section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 54px;
}
.section__title em {
  font-style: normal;
  color: var(--lime-dark);
}

/* --- Paths (Ako to funguje) --- */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.path {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(12, 36, 28, 0.08);
  border-radius: calc(var(--radius) + 6px);
  padding: 46px 40px 40px;
  box-shadow: 0 10px 40px -22px rgba(12, 36, 28, 0.3);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.path:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.path--alt { background: var(--green); color: var(--cream); }
.path__num {
  position: absolute;
  top: -24px; left: 36px;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 16px;
  transform: rotate(-6deg);
  box-shadow: 0 8px 18px -8px rgba(165, 211, 30, 0.7);
}
.path h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 26px;
}
.path__steps { list-style: none; }
.path__steps li {
  position: relative;
  padding: 0 0 24px 34px;
}
.path__steps li:last-child { padding-bottom: 0; }
.path__steps li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 240, 75, 0.25);
}
.path__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5.5px; top: 24px; bottom: 2px;
  width: 1.5px;
  background: rgba(12, 36, 28, 0.12);
}
.path--alt .path__steps li:not(:last-child)::after { background: rgba(246, 244, 238, 0.2); }
.path__steps strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.path__steps span { font-size: 0.92rem; color: var(--ink-soft); }
.path--alt .path__steps span { color: rgba(246, 244, 238, 0.72); }

/* --- Categories --- */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(246, 244, 238, 0.06);
  border: 1px solid rgba(246, 244, 238, 0.14);
  border-radius: var(--radius);
  padding: 24px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  transition: background 0.3s, transform 0.3s var(--ease-out), border-color 0.3s;
  cursor: default;
}
.cat span { font-size: 1.5rem; }
.cat:hover {
  background: rgba(201, 240, 75, 0.12);
  border-color: rgba(201, 240, 75, 0.4);
  transform: translateY(-4px);
}

/* --- Audience --- */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.aud {
  border: 1.5px solid rgba(12, 36, 28, 0.12);
  border-radius: calc(var(--radius) + 6px);
  padding: 42px 40px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.aud:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.aud--green { background: #e9f5ee; border-color: rgba(14, 59, 44, 0.18); }
.aud h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.aud ul { list-style: none; }
.aud li {
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  border-bottom: 1px dashed rgba(12, 36, 28, 0.1);
}
.aud li:last-child { border-bottom: none; }
.aud li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 11px;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50%;
}

/* ---------- CTA / Pre-registration ---------- */
.cta { padding: 40px 0 120px; }
.cta__inner {
  position: relative;
  overflow: hidden;
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: calc(var(--radius) + 12px);
  padding: 90px 40px;
  text-align: center;
}
.cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 240, 75, 0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(201, 240, 75, 0.12), transparent 40%);
  pointer-events: none;
}
.cta__title {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.cta__sub {
  position: relative;
  color: rgba(246, 244, 238, 0.72);
  max-width: 32rem;
  margin: 0 auto 42px;
  font-size: 1.05rem;
}

.prereg {
  position: relative;
  max-width: 30rem;
  margin-inline: auto;
}
.prereg__roles {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}
.role input { position: absolute; opacity: 0; pointer-events: none; }
.role span {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(246, 244, 238, 0.3);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  user-select: none;
}
.role input:checked + span {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.role span:hover { border-color: var(--lime); }

.prereg__row { display: flex; gap: 10px; }
.prereg__row input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 1rem;
  padding: 15px 22px;
  border: 1.5px solid rgba(246, 244, 238, 0.25);
  border-radius: 100px;
  background: rgba(246, 244, 238, 0.08);
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.prereg__row input::placeholder { color: rgba(246, 244, 238, 0.45); }
.prereg__row input:focus { border-color: var(--lime); background: rgba(246, 244, 238, 0.12); }
.prereg__hint { font-size: 0.8rem; color: rgba(246, 244, 238, 0.45); margin-top: 16px; }

.prereg__success {
  position: relative;
  max-width: 26rem;
  margin-inline: auto;
  padding: 30px;
}
.prereg__success h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 18px 0 8px;
}
.prereg__success p { color: rgba(246, 244, 238, 0.72); }
.success-check { width: 76px; height: 76px; margin-inline: auto; }
.success-check svg { width: 100%; height: 100%; }
.success-check circle {
  stroke: var(--lime);
  stroke-width: 2.5;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: dash 0.7s var(--ease-out) forwards;
}
.success-check path {
  stroke: var(--lime);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: dash 0.45s 0.55s var(--ease-out) forwards;
}
@keyframes dash { to { stroke-dashoffset: 0; } }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(12, 36, 28, 0.1);
  padding: 44px 0;
  background: var(--cream-2);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__tag { font-family: var(--font-head); font-weight: 600; color: var(--ink-soft); font-size: 0.95rem; }
.footer__copy { font-size: 0.84rem; color: #7b8d85; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 20px; padding-bottom: 70px; }
  .hero__visual { margin-top: 34px; }
  .hero__chip--rating { right: 0; }
  .hero__chip--applied { left: 0; }
  .paths, .audience { grid-template-columns: 1fr; }
  .cats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__actions .btn { display: none; }

  .hero { padding-top: 128px; }
  .hero__sub { font-size: 1.02rem; }
  .hero__form { flex-direction: column; }
  .hero__form .btn { width: 100%; }
  .hero__stats { gap: 22px; flex-wrap: wrap; }
  .stat strong { font-size: 1.5rem; }

  .phone { width: 272px; transform: rotate(1.5deg); }
  .phone__screen { min-height: 0; }
  .hero__chip { padding: 10px 14px; }
  .hero__chip--rating { right: 0; top: 6%; }
  .hero__chip--applied { left: 0; bottom: 8%; }

  .section { padding: 76px 0; }
  .section__title { margin-bottom: 40px; }
  .path, .aud { padding: 40px 26px 32px; }
  .cats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat { padding: 14px 16px; font-size: 0.9rem; gap: 10px; border-radius: 14px; }
  .cat span { font-size: 1.2rem; }

  .cta__inner { padding: 64px 24px; border-radius: 24px; }
  .prereg__row { flex-direction: column; }
  .prereg__row .btn { width: 100%; }
  .prereg__roles { flex-wrap: wrap; }

  .footer__inner { flex-direction: column; text-align: center; }
}
