/* =========================================================
   XIBIJAY.COM — Przewóz zwierząt domowych między krajami
   Paleta: #121212 + #ffd93d + #fafafa
   Styl: brutalny, bezpośredni, grube obwódki, wysoki kontrast
   ========================================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-black: #121212;
  --c-yellow: #ffd93d;
  --c-white: #fafafa;
  --c-gray:  #1e1e1e;
  --c-gray2: #2a2a2a;
  --c-border: #ffd93d;
  --shadow-offset: 6px;
  --radius: 0px;
  --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1200px;
  --transition: 180ms ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background-color: var(--c-black);
  color: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--c-yellow);
  color: var(--c-black);
  padding: .5rem 1rem;
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p { max-width: 68ch; line-height: 1.65; }

a {
  color: var(--c-yellow);
  text-decoration: none;
  transition: opacity var(--transition);
}
a:hover { opacity: .75; }
a:focus-visible {
  outline: 3px solid var(--c-yellow);
  outline-offset: 3px;
}

/* ---------- WATERMARK BACKGROUND ---------- */
.rv-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(120px, 20vw, 300px);
  font-weight: 900;
  color: var(--c-white);
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -.03em;
}

/* ---------- SECTION DIVIDERS ---------- */
.rv-divider {
  width: 100%;
  height: 4px;
  background: var(--c-yellow);
  display: block;
}

/* ---------- NAVIGATION ---------- */
.rv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--c-black);
  border-bottom: 3px solid var(--c-yellow);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rv-nav__logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.rv-nav__logo:hover { opacity: 1; color: var(--c-yellow); }

.rv-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 3px solid var(--c-yellow);
  padding: .5rem .7rem;
  cursor: pointer;
  transition: background var(--transition);
}
.rv-nav__hamburger span {
  width: 22px; height: 3px;
  background: var(--c-yellow);
  display: block;
  transition: transform var(--transition), opacity var(--transition);
}
.rv-nav__hamburger:hover { background: var(--c-yellow); }
.rv-nav__hamburger:hover span { background: var(--c-black); }
.rv-nav__hamburger:focus-visible { outline: 3px solid var(--c-yellow); outline-offset: 3px; }

/* Full-screen menu overlay */
.rv-nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--c-black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 380ms cubic-bezier(.4,0,.2,1);
  border-top: 4px solid var(--c-yellow);
}
.rv-nav__overlay.is-open { transform: translateY(0); }

.rv-nav__list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rv-nav__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.rv-nav__overlay.is-open .rv-nav__item:nth-child(1) { transition-delay: 80ms; opacity: 1; transform: none; }
.rv-nav__overlay.is-open .rv-nav__item:nth-child(2) { transition-delay: 140ms; opacity: 1; transform: none; }
.rv-nav__overlay.is-open .rv-nav__item:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: none; }
.rv-nav__overlay.is-open .rv-nav__item:nth-child(4) { transition-delay: 260ms; opacity: 1; transform: none; }
.rv-nav__overlay.is-open .rv-nav__item:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: none; }
.rv-nav__overlay.is-open .rv-nav__item:nth-child(6) { transition-delay: 380ms; opacity: 1; transform: none; }
.rv-nav__overlay.is-open .rv-nav__item:nth-child(7) { transition-delay: 440ms; opacity: 1; transform: none; }

.rv-nav__link {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--c-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: color var(--transition);
  display: inline-block;
}
.rv-nav__link:hover { color: var(--c-yellow); }
.rv-nav__link:focus-visible { outline: 3px solid var(--c-yellow); outline-offset: 4px; }

.rv-nav__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: 3px solid var(--c-yellow);
  color: var(--c-yellow);
  font-size: 1.5rem;
  font-weight: 900;
  width: 44px; height: 44px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.rv-nav__close:hover { background: var(--c-yellow); color: var(--c-black); }
.rv-nav__close:focus-visible { outline: 3px solid var(--c-yellow); outline-offset: 3px; }

/* ---------- HERO (Screen 1) ---------- */
.rv-hero {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--c-yellow);
}

.rv-hero__content { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; width: 100%; }

.rv-hero__tag {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-black);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem .8rem;
  margin-bottom: 1.5rem;
}

.rv-hero__title { color: var(--c-white); margin-bottom: 2.5rem; }
.rv-hero__title em { color: var(--c-yellow); font-style: normal; }

/* Three condition badges */
.rv-cond {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.rv-cond__item {
  border: 3px solid var(--c-yellow);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--c-yellow);
  padding: 1.5rem;
  background: var(--c-black);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.rv-cond__item:hover {
  transform: translate(-3px, -3px);
  box-shadow: calc(var(--shadow-offset) + 3px) calc(var(--shadow-offset) + 3px) 0 var(--c-yellow);
}

.rv-cond__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--c-yellow);
  line-height: 1;
  margin-bottom: .5rem;
}
.rv-cond__label { font-size: 1.1rem; font-weight: 700; color: var(--c-white); margin-bottom: .5rem; }
.rv-cond__desc { font-size: .9rem; color: #aaa; line-height: 1.55; }

/* ---------- SECTION: WHO IS NOT SUITED (Screen 2) ---------- */
.rv-not-suited {
  padding: 6rem 2rem;
  background: var(--c-gray);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--c-yellow);
}

.rv-not-suited__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }

.rv-not-suited__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.rv-not-suited__card {
  border: 2px solid #333;
  padding: 1.5rem;
  background: var(--c-black);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.rv-not-suited__card::before {
  content: '✕';
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.2rem;
  color: #ff4444;
  font-weight: 900;
}
.rv-not-suited__card:hover { border-color: #ff4444; transform: translateX(4px); }
.rv-not-suited__card h3 { font-size: 1rem; color: var(--c-white); margin-bottom: .5rem; }
.rv-not-suited__card p { font-size: .88rem; color: #999; max-width: none; }

/* ---------- SECTION: WHO IS SUITED (Screen 3) ---------- */
.rv-suited {
  padding: 6rem 2rem;
  background: var(--c-black);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--c-yellow);
}

.rv-suited__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }

.rv-suited__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.rv-suited__card {
  border: 2px solid var(--c-yellow);
  box-shadow: 4px 4px 0 var(--c-yellow);
  padding: 1.5rem;
  background: var(--c-gray);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.rv-suited__card::before {
  content: '✓';
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.2rem;
  color: var(--c-yellow);
  font-weight: 900;
}
.rv-suited__card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--c-yellow);
}
.rv-suited__card h3 { font-size: 1rem; color: var(--c-yellow); margin-bottom: .5rem; }
.rv-suited__card p { font-size: .88rem; color: #ccc; max-width: none; }

/* ---------- SECTION: INTERACTIVE CHECKLIST (Screen 4) ---------- */
.rv-check {
  padding: 6rem 2rem;
  background: var(--c-gray);
  border-bottom: 4px solid var(--c-yellow);
  position: relative;
  overflow: hidden;
}

.rv-check__inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

.rv-check__intro { margin-bottom: 2.5rem; }
.rv-check__intro h2 { margin-bottom: 1rem; }
.rv-check__intro p { color: #bbb; }

.rv-check__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin-bottom: 2.5rem;
}

.rv-check__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 2px solid #333;
  background: var(--c-black);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.rv-check__item:hover { border-color: var(--c-yellow); }
.rv-check__item.is-checked { border-color: var(--c-yellow); background: rgba(255,217,61,.06); }

.rv-check__box {
  width: 26px; height: 26px;
  border: 3px solid var(--c-yellow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: .1rem;
}

.rv-check__tick {
  position: absolute;
  width: 14px; height: 10px;
  opacity: 0;
  overflow: visible;
}
.rv-check__tick path {
  stroke: var(--c-black);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 280ms ease;
}
.rv-check__item.is-checked .rv-check__box { background: var(--c-yellow); }
.rv-check__item.is-checked .rv-check__tick { opacity: 1; }
.rv-check__item.is-checked .rv-check__tick path { stroke-dashoffset: 0; }

.rv-check__label { font-size: 1rem; color: var(--c-white); line-height: 1.5; padding-top: .1rem; }

/* Progress bar */
.rv-check__progress {
  height: 8px;
  background: #333;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.rv-check__progress-bar {
  height: 100%;
  background: var(--c-yellow);
  width: 0%;
  transition: width 300ms ease;
}

/* Verdict */
.rv-check__verdict {
  padding: 1.5rem;
  border: 3px solid transparent;
  font-weight: 700;
  font-size: 1.1rem;
  min-height: 60px;
  transition: border-color 300ms ease, background 300ms ease;
  display: none;
}
.rv-check__verdict.show { display: block; }
.rv-check__verdict.verdict-yes { border-color: var(--c-yellow); background: rgba(255,217,61,.08); color: var(--c-yellow); }
.rv-check__verdict.verdict-maybe { border-color: #f0a040; background: rgba(240,160,64,.08); color: #f0a040; }
.rv-check__verdict.verdict-no { border-color: #ff4444; background: rgba(255,68,68,.08); color: #ff4444; }

/* ---------- SECTION: FORM (Screen 5) ---------- */
.rv-form {
  padding: 6rem 2rem;
  background: var(--c-black);
  border-bottom: 4px solid var(--c-yellow);
  position: relative;
  overflow: hidden;
}

.rv-form__inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

.rv-form__wrapper {
  border: 3px solid var(--c-yellow);
  box-shadow: 8px 8px 0 var(--c-yellow);
  padding: 2.5rem;
  background: var(--c-gray);
}

.rv-form__title { margin-bottom: .75rem; }
.rv-form__sub { color: #999; font-size: .95rem; margin-bottom: 2rem; }

.rv-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rv-form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.rv-form__group label {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #ccc;
}

.rv-form__group input,
.rv-form__group select,
.rv-form__group textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--c-black);
  border: 2px solid #333;
  color: var(--c-white);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
  appearance: none;
}

.rv-form__group input:focus,
.rv-form__group select:focus,
.rv-form__group textarea:focus {
  border-color: var(--c-yellow);
  box-shadow: 0 0 0 3px rgba(255,217,61,.18);
}

.rv-form__group input:focus-visible,
.rv-form__group select:focus-visible,
.rv-form__group textarea:focus-visible {
  outline: 3px solid var(--c-yellow);
  outline-offset: 2px;
}

.rv-form__group textarea { resize: vertical; min-height: 110px; }

.rv-form__group .rv-form__error {
  color: #ff4444;
  font-size: .8rem;
  display: none;
}
.rv-form__group.has-error input,
.rv-form__group.has-error select,
.rv-form__group.has-error textarea { border-color: #ff4444; }
.rv-form__group.has-error .rv-form__error { display: block; }

.rv-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rv-form__submit {
  background: var(--c-yellow);
  color: var(--c-black);
  border: 3px solid var(--c-yellow);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  align-self: flex-start;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 4px 4px 0 rgba(255,217,61,.4);
}
.rv-form__submit:hover {
  background: var(--c-black);
  color: var(--c-yellow);
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 var(--c-yellow);
}
.rv-form__submit:focus-visible { outline: 3px solid var(--c-white); outline-offset: 3px; }
.rv-form__submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.rv-form__contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  font-size: .9rem;
  color: #888;
}
.rv-form__contact a { color: var(--c-yellow); }

/* ---------- SECTION: HOW WE WORK (Screen 6) ---------- */
.rv-how {
  padding: 6rem 2rem;
  background: var(--c-gray);
  border-bottom: 4px solid var(--c-yellow);
  position: relative;
  overflow: hidden;
}

.rv-how__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }

.rv-how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  margin-top: 3rem;
  border: 3px solid var(--c-yellow);
}

.rv-how__step {
  padding: 2rem 1.75rem;
  border-right: 3px solid var(--c-yellow);
  border-bottom: 3px solid var(--c-yellow);
  position: relative;
  background: var(--c-black);
  transition: background var(--transition);
}
.rv-how__step:last-child { border-right: none; }
.rv-how__step:hover { background: rgba(255,217,61,.04); }

.rv-how__step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--c-yellow);
  line-height: 1;
  margin-bottom: .75rem;
}
.rv-how__step h3 { font-size: 1rem; color: var(--c-white); margin-bottom: .5rem; }
.rv-how__step p { font-size: .88rem; color: #999; max-width: none; line-height: 1.55; }

/* ---------- SECTION: SERVICES (Screen 7) ---------- */
.rv-services {
  padding: 6rem 2rem;
  background: var(--c-black);
  position: relative;
  overflow: hidden;
}

.rv-services__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }

.rv-services__list {
  list-style: none;
  margin-top: 3rem;
  border: 3px solid var(--c-yellow);
}

.rv-services__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  border-bottom: 2px solid #222;
  transition: background var(--transition);
}
.rv-services__item:last-child { border-bottom: none; }
.rv-services__item:hover { background: rgba(255,217,61,.05); }

.rv-services__num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--c-yellow);
  flex-shrink: 0;
  min-width: 2rem;
}
.rv-services__name { font-size: 1rem; font-weight: 700; color: var(--c-white); flex: 1; }
.rv-services__detail { font-size: .85rem; color: #777; }

/* ---------- CLIENT REQUIREMENTS (TRUST SECTION) ---------- */
.rv-requirements {
  padding: 5rem 2rem;
  background: var(--c-gray);
  border-top: 4px solid var(--c-yellow);
}

.rv-requirements__inner { max-width: var(--max-w); margin: 0 auto; }

.rv-requirements__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.rv-requirements__item {
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--c-yellow);
  background: var(--c-black);
  font-size: .95rem;
  color: #ccc;
  line-height: 1.55;
}
.rv-requirements__item strong { display: block; color: var(--c-white); margin-bottom: .35rem; font-weight: 700; }

/* ---------- FLOATING STICKY BOTTOM BAR (Mobile) ---------- */
.rv-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-yellow);
  color: var(--c-black);
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 800;
  border-top: 3px solid var(--c-black);
  transform: translateY(100%);
  transition: transform 300ms ease;
}
.rv-sticky-bar.show { transform: translateY(0); }

.rv-sticky-bar__tel {
  font-weight: 900;
  font-size: 1rem;
  color: var(--c-black);
  text-decoration: none;
}
.rv-sticky-bar__tel:hover { opacity: .75; }

.rv-sticky-bar__btn {
  background: var(--c-black);
  color: var(--c-yellow);
  border: none;
  padding: .6rem 1.25rem;
  font-weight: 900;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity var(--transition);
}
.rv-sticky-bar__btn:hover { opacity: .8; }
.rv-sticky-bar__btn:focus-visible { outline: 3px solid var(--c-black); outline-offset: 2px; }

@media (min-width: 900px) { .rv-sticky-bar { display: none; } }

/* ---------- FOOTER ---------- */
.rv-footer {
  background: var(--c-black);
  border-top: 4px solid var(--c-yellow);
  padding: 3rem 2rem;
}

.rv-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.rv-footer__brand h3 { font-size: 1.3rem; color: var(--c-white); margin-bottom: .75rem; }
.rv-footer__brand p { font-size: .85rem; color: #666; max-width: 28ch; }

.rv-footer__nav h4,
.rv-footer__legal h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #555;
  margin-bottom: 1rem;
}

.rv-footer__nav ul,
.rv-footer__legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.rv-footer__nav a,
.rv-footer__legal a {
  font-size: .9rem;
  color: #999;
  transition: color var(--transition);
}
.rv-footer__nav a:hover,
.rv-footer__legal a:hover { color: var(--c-yellow); }

.rv-footer__company { font-size: .82rem; color: #555; line-height: 1.7; }
.rv-footer__company strong { color: #777; }

.rv-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
  font-size: .8rem;
  color: #444;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

/* ---------- TOAST NOTIFICATIONS ---------- */
.rv-toast-container {
  position: fixed;
  bottom: 5rem; right: 1.5rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  pointer-events: none;
}

.rv-toast {
  padding: 1rem 1.5rem;
  border: 3px solid;
  font-weight: 700;
  font-size: .95rem;
  max-width: 340px;
  pointer-events: all;
  transform: translateX(110%);
  transition: transform 280ms ease;
}
.rv-toast.show { transform: translateX(0); }
.rv-toast.toast-success { background: var(--c-black); color: var(--c-yellow); border-color: var(--c-yellow); }
.rv-toast.toast-error   { background: var(--c-black); color: #ff6666; border-color: #ff6666; }

/* ---------- SECTION REVEAL (Scroll animation) ---------- */
.rv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 400ms ease, transform 400ms ease;
}
.rv-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- PAGE HEADER (inner pages) ---------- */
.rv-page-header {
  padding: 8rem 2rem 4rem;
  background: var(--c-black);
  border-bottom: 4px solid var(--c-yellow);
}
.rv-page-header__inner { max-width: var(--max-w); margin: 0 auto; }
.rv-page-header__tag {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-black);
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .7rem;
  margin-bottom: 1rem;
}
.rv-page-header h1 { margin-bottom: 1rem; }
.rv-page-header p { color: #999; font-size: 1.1rem; max-width: 60ch; }

/* ---------- CONTENT SECTIONS (inner pages) ---------- */
.rv-content {
  padding: 4rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.rv-content h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; color: var(--c-yellow); }
.rv-content h3 { font-size: 1.2rem; margin: 2rem 0 .75rem; }
.rv-content p { margin-bottom: 1rem; color: #bbb; line-height: 1.7; }
.rv-content ul, .rv-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.rv-content li { color: #bbb; margin-bottom: .5rem; line-height: 1.6; }
.rv-content a { color: var(--c-yellow); }
.rv-content a:hover { text-decoration: underline; }
.rv-content strong { color: var(--c-white); }

/* ---------- BREADCRUMB ---------- */
.rv-breadcrumb {
  padding: 1rem 2rem;
  background: var(--c-gray);
  border-bottom: 1px solid #222;
  font-size: .85rem;
}
.rv-breadcrumb__inner { max-width: var(--max-w); margin: 0 auto; }
.rv-breadcrumb a { color: #777; }
.rv-breadcrumb a:hover { color: var(--c-yellow); }
.rv-breadcrumb span { color: #555; margin: 0 .4rem; }
.rv-breadcrumb .current { color: var(--c-yellow); }

/* ---------- CONTACT PAGE ---------- */
.rv-contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 760px) { .rv-contact-block { grid-template-columns: 1fr; } }

.rv-contact-details h2 { font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--c-yellow); }
.rv-contact-details dl { display: flex; flex-direction: column; gap: .75rem; }
.rv-contact-details dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: #555; }
.rv-contact-details dd { font-size: .95rem; color: #ccc; padding-left: 1rem; }

/* ---------- COOKIE BANNER ---------- */
.rv-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-gray);
  border-top: 3px solid var(--c-yellow);
  padding: 1rem 1.5rem;
  z-index: 8000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 300ms ease;
}
.rv-cookie.show { transform: translateY(0); }
.rv-cookie__text { font-size: .85rem; color: #bbb; flex: 1; min-width: 200px; }
.rv-cookie__text a { color: var(--c-yellow); }
.rv-cookie__btns { display: flex; gap: .75rem; flex-shrink: 0; }

.rv-cookie__accept {
  background: var(--c-yellow);
  color: var(--c-black);
  border: 2px solid var(--c-yellow);
  padding: .5rem 1.25rem;
  font-weight: 800;
  font-size: .85rem;
  cursor: pointer;
  transition: opacity var(--transition);
}
.rv-cookie__accept:hover { opacity: .85; }
.rv-cookie__accept:focus-visible { outline: 3px solid var(--c-white); outline-offset: 2px; }

.rv-cookie__reject {
  background: transparent;
  color: var(--c-white);
  border: 2px solid #444;
  padding: .5rem 1.25rem;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.rv-cookie__reject:hover { border-color: var(--c-white); }
.rv-cookie__reject:focus-visible { outline: 3px solid var(--c-yellow); outline-offset: 2px; }

/* ---------- 404 PAGE ---------- */
.rv-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.rv-404__code { font-size: clamp(6rem, 20vw, 14rem); font-weight: 900; color: var(--c-yellow); line-height: 1; }
.rv-404 h1 { font-size: 2rem; margin-bottom: 1rem; }
.rv-404 p { color: #888; margin-bottom: 2rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.rv-404__links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.rv-404__link {
  border: 2px solid var(--c-yellow);
  padding: .7rem 1.5rem;
  color: var(--c-yellow);
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.rv-404__link:hover { background: var(--c-yellow); color: var(--c-black); opacity: 1; }

/* ---------- UTILITIES ---------- */
.u-label {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-black);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .25rem .65rem;
  margin-bottom: 1rem;
}

.u-section-title { margin-bottom: .75rem; }
.u-section-sub { color: #777; margin-bottom: 0; font-size: 1rem; max-width: 55ch; }

.u-yellow { color: var(--c-yellow); }
.u-text-center { text-align: center; }

.u-btn {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-black);
  border: 3px solid var(--c-yellow);
  padding: .85rem 2rem;
  font-weight: 900;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 4px 4px 0 rgba(255,217,61,.35);
  text-decoration: none;
}
.u-btn:hover {
  background: transparent;
  color: var(--c-yellow);
  box-shadow: 6px 6px 0 var(--c-yellow);
  transform: translate(-2px,-2px);
  opacity: 1;
}
.u-btn:focus-visible { outline: 3px solid var(--c-white); outline-offset: 3px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .rv-form__row { grid-template-columns: 1fr; }
  .rv-hero { padding-top: 6rem; }
}

@media (max-width: 600px) {
  .rv-how__steps { border: none; }
  .rv-how__step { border: 2px solid var(--c-yellow); margin-bottom: .5rem; }
  .rv-footer__inner { grid-template-columns: 1fr; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rv-reveal { opacity: 1; transform: none; }
}
