/* ========================================
   XELADEO — Transfery | Matrix #50
   Kolory: #16243d / #ff6b4a / #f2f4f7
   Klasy: .vt-nav, .vt-tile, .vt-row, .vt-form
   ======================================== */

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

:root {
  --c-dark:    #16243d;
  --c-coral:   #ff6b4a;
  --c-light:   #f2f4f7;
  --c-mid:     #2d3f5c;
  --c-muted:   #6b7c96;
  --c-white:   #ffffff;
  --c-coral-d: #e05035;
  --c-dark-tr: rgba(22,36,61,0.85);

  --r: 14px;
  --r-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(22,36,61,0.10);
  --shadow-md: 0 8px 32px rgba(22,36,61,0.16);
  --shadow-lg: 0 20px 60px rgba(22,36,61,0.22);

  --ff-head: 'Syne', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --trans: 200ms ease;
  --trans-slow: 400ms cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--c-light);
  color: var(--c-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--c-coral);
  color: var(--c-white);
  padding: .5rem 1rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  transition: top var(--trans);
}
.skip-link:focus { top: 1rem; }

/* ---- GEOMETRIC BACKGROUND LAYER ---- */
.vt-bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.vt-bg-layer::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,107,74,0.06);
  top: -150px; right: -150px;
}
.vt-bg-layer::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(22,36,61,0.04);
  transform: rotate(20deg) skewX(10deg);
  bottom: 100px; left: -100px;
  border-radius: 20px;
}
.vt-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.vt-bg-circle--1 {
  width: 300px; height: 300px;
  background: rgba(255,107,74,0.04);
  top: 40%; left: -80px;
}
.vt-bg-circle--2 {
  width: 500px; height: 200px;
  background: rgba(22,36,61,0.03);
  border-radius: 50%;
  bottom: 200px; right: -100px;
  transform: rotate(-15deg);
}
.vt-bg-rect {
  position: absolute;
  pointer-events: none;
  transform: rotate(-8deg) skewX(5deg);
  border-radius: 20px;
}
.vt-bg-rect--1 {
  width: 250px; height: 350px;
  background: rgba(255,107,74,0.03);
  top: 30%; right: 5%;
}
.vt-bg-rect--2 {
  width: 180px; height: 280px;
  background: rgba(22,36,61,0.04);
  top: 60%; left: 10%;
  transform: rotate(12deg);
}

/* Dot grid overlay */
.vt-dotgrid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(22,36,61,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ---- NAVIGATION ---- */
.vt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22,36,61,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vt-nav__logo {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.vt-nav__logo span { color: var(--c-coral); }
.vt-nav__list {
  display: flex;
  list-style: none;
  gap: 0;
  position: relative;
}
.vt-nav__link {
  display: block;
  padding: .5rem 1.1rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  transition: color var(--trans);
}
.vt-nav__link:hover,
.vt-nav__link.is-active {
  color: var(--c-white);
}
/* Sliding underline */
.vt-nav__underline {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--c-coral);
  width: 0;
  transition: left var(--trans-slow), width var(--trans-slow);
  pointer-events: none;
}
.vt-nav__cta {
  background: var(--c-coral);
  color: var(--c-white) !important;
  border-radius: var(--r-sm);
  font-weight: 700;
  padding: .45rem 1.1rem !important;
  transition: background var(--trans), transform var(--trans);
}
.vt-nav__cta:hover { background: var(--c-coral-d); transform: translateY(-1px); }
.vt-nav__burger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.vt-nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--c-white); margin: 4px 0;
  transition: transform var(--trans), opacity var(--trans);
}

/* ---- HERO — THREE TILES ---- */
.vt-hero {
  position: relative;
  z-index: 1;
  display: flex;
  height: calc(100vh - 64px);
  min-height: 500px;
  overflow: hidden;
}
.vt-tile {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex var(--trans-slow);
}
.vt-tile:hover { flex: 2.4; }
.vt-tile:hover ~ .vt-tile,
.vt-tile:has(~ .vt-tile:hover) { flex: 0.6; }

.vt-tile__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.4,0,0.2,1);
}
.vt-tile:hover .vt-tile__img { transform: scale(1.06); }

.vt-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,36,61,0.88) 0%, rgba(22,36,61,0.3) 50%, rgba(22,36,61,0.15) 100%);
  transition: background var(--trans-slow);
}
.vt-tile:hover .vt-tile__overlay {
  background: linear-gradient(to top, rgba(22,36,61,0.92) 0%, rgba(22,36,61,0.5) 50%, rgba(22,36,61,0.2) 100%);
}
.vt-tile__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem;
  color: var(--c-white);
}
.vt-tile__tag {
  display: inline-block;
  background: var(--c-coral);
  color: var(--c-white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 4px;
  margin-bottom: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.vt-tile__title {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}
.vt-tile__desc {
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--trans-slow), transform var(--trans-slow);
  max-width: 340px;
}
.vt-tile:hover .vt-tile__desc {
  opacity: 1;
  transform: translateY(0);
}
.vt-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  color: var(--c-coral);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--trans-slow) 50ms, transform var(--trans-slow) 50ms;
}
.vt-tile:hover .vt-tile__cta { opacity: 1; transform: translateY(0); }
.vt-tile__cta::after { content: '→'; transition: transform var(--trans); }
.vt-tile__cta:hover::after { transform: translateX(4px); }

/* Dividers between tiles */
.vt-tile + .vt-tile { border-left: 1px solid rgba(255,255,255,0.1); }

/* ---- INFO STRIP ---- */
.vt-strip {
  position: relative; z-index: 1;
  background: var(--c-dark);
  color: var(--c-white);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.vt-strip__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vt-strip__icon {
  width: 42px; height: 42px;
  background: rgba(255,107,74,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.vt-strip__text strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}
.vt-strip__text span {
  font-size: .85rem;
  color: rgba(255,255,255,0.6);
}

/* ---- SERVICE ROWS ---- */
.vt-section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}
.vt-section--alt { background: var(--c-white); }
.vt-container { max-width: 1100px; margin: 0 auto; }

.vt-section__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: .75rem;
}
.vt-section__title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--c-dark);
  margin-bottom: 1rem;
  max-width: 20ch;
}
.vt-section__lead {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 65ch;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* Row layout */
.vt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.vt-row:last-child { margin-bottom: 0; }
.vt-row--reverse { direction: rtl; }
.vt-row--reverse > * { direction: ltr; }

.vt-row__img-wrap {
  position: relative;
}
.vt-row__img-back {
  position: absolute;
  inset: -12px -12px 12px 12px;
  background: var(--c-coral);
  border-radius: var(--r);
  z-index: 0;
  transition: transform var(--trans-slow);
}
.vt-row:hover .vt-row__img-back {
  transform: translate(-4px, -4px);
}
.vt-row__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--r);
  display: block;
  overflow: hidden;
  transition: transform var(--trans-slow);
}
.vt-row__img-wrap:hover .vt-row__img { transform: scale(1.02); }

.vt-row__body {}
.vt-row__num {
  font-family: var(--ff-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(22,36,61,0.06);
  line-height: 1;
  margin-bottom: -.5rem;
}
.vt-row__title {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-dark);
  margin-bottom: 1rem;
}
.vt-row__text {
  font-size: .97rem;
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 60ch;
  margin-bottom: 1.5rem;
}
.vt-row__list {
  list-style: none;
  margin-bottom: 2rem;
}
.vt-row__list li {
  padding: .4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: .95rem;
  color: var(--c-dark);
}
.vt-row__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--c-coral);
  border-radius: 50%;
}

/* ---- BUTTON ---- */
.vt-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.75rem;
  background: var(--c-coral);
  color: var(--c-white);
  border: none;
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.vt-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-coral-d);
  transform: translateX(-100%);
  transition: transform var(--trans-slow);
}
.vt-btn:hover::before { transform: translateX(0); }
.vt-btn span, .vt-btn svg { position: relative; z-index: 1; }
.vt-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.vt-btn:active { transform: translateY(0); }
.vt-btn:focus-visible { outline: 3px solid var(--c-coral); outline-offset: 3px; }
.vt-btn--outline {
  background: transparent;
  border: 2px solid var(--c-coral);
  color: var(--c-coral);
}
.vt-btn--outline::before { background: var(--c-coral); }
.vt-btn--outline:hover { color: var(--c-white); }

/* Arrow button effect */
.vt-btn__text { transition: transform var(--trans); }
.vt-btn__arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--trans), transform var(--trans);
}
.vt-btn:hover .vt-btn__text { transform: translateX(-4px); }
.vt-btn:hover .vt-btn__arrow { opacity: 1; transform: translateX(0); }

/* ---- CALCULATOR / FORM SECTION ---- */
.vt-form {
  position: relative;
  z-index: 1;
  background: var(--c-dark);
  padding: 5rem 2rem;
  overflow: hidden;
}
.vt-form::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,74,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

.vt-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.vt-form__intro {}
.vt-form__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: .75rem;
}
.vt-form__title {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.vt-form__lead {
  font-size: .95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 52ch;
}

/* Calculator */
.vt-calc {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 2rem;
  margin-bottom: 2rem;
}
.vt-calc__title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}
.vt-calc__row {
  margin-bottom: 1.5rem;
}
.vt-calc__row label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.75);
  font-size: .85rem;
  margin-bottom: .5rem;
}
.vt-calc__row label span {
  font-weight: 700;
  color: var(--c-coral);
  font-size: 1rem;
  font-family: var(--ff-head);
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-coral);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255,107,74,0.2);
  transition: box-shadow var(--trans);
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(255,107,74,0.3);
}
input[type="range"]:focus-visible {
  outline: 2px solid var(--c-coral);
  outline-offset: 4px;
}
.vt-calc__result {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.vt-calc__result-label {
  color: rgba(255,255,255,0.6);
  font-size: .85rem;
}
.vt-calc__price {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: -0.04em;
  transition: transform .15s, opacity .15s;
}
.vt-calc__price.is-rolling {
  transform: translateY(-4px);
  opacity: 0.6;
}
.vt-calc__note {
  font-size: .75rem;
  color: rgba(255,255,255,0.4);
  margin-top: .5rem;
  width: 100%;
}

/* Form fields */
.vt-form__form {}
.vt-field {
  margin-bottom: 1.25rem;
}
.vt-field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: .4rem;
}
.vt-field input,
.vt-field select,
.vt-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  color: var(--c-white);
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
  -webkit-appearance: none;
}
.vt-field input::placeholder,
.vt-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.vt-field input:focus,
.vt-field select:focus,
.vt-field textarea:focus {
  border-color: var(--c-coral);
  box-shadow: 0 0 0 3px rgba(255,107,74,0.2);
}
.vt-field select option { background: var(--c-dark); color: var(--c-white); }
.vt-field textarea { resize: vertical; min-height: 100px; }
.vt-field__error {
  display: none;
  font-size: .8rem;
  color: #ff8a70;
  margin-top: .3rem;
}
.vt-field.has-error .vt-field__error { display: block; }
.vt-field.has-error input,
.vt-field.has-error select,
.vt-field.has-error textarea { border-color: #ff8a70; }
.vt-form__contact {
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}
.vt-form__contact a { color: var(--c-coral); text-decoration: none; }
.vt-form__contact a:hover { text-decoration: underline; }

/* Toast */
.vt-toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  pointer-events: none;
}
.vt-toast {
  background: var(--c-dark);
  color: var(--c-white);
  padding: .85rem 2rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--trans), transform var(--trans);
  white-space: nowrap;
  border-left: 4px solid var(--c-coral);
  pointer-events: auto;
}
.vt-toast.is-visible { opacity: 1; transform: translateY(0); }
.vt-toast--error { border-left-color: #ff8a70; }

/* ---- ZONES TABLE ---- */
.vt-zones {
  position: relative; z-index: 1;
  padding: 5rem 2rem;
  background: var(--c-light);
}
.vt-zones__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.vt-zones__table thead th {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: .9rem;
  font-weight: 700;
}
.vt-zones__table tbody tr {
  background: var(--c-white);
  transition: background var(--trans);
}
.vt-zones__table tbody tr:nth-child(even) { background: #f8f9fb; }
.vt-zones__table tbody tr:hover { background: rgba(255,107,74,0.06); }
.vt-zones__table td {
  padding: .85rem 1.25rem;
  font-size: .9rem;
  color: var(--c-dark);
  border-bottom: 1px solid rgba(22,36,61,0.07);
}
.vt-zones__table td:first-child { font-weight: 600; }
.vt-zones__badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 700;
}
.vt-zones__badge--yes { background: rgba(255,107,74,0.1); color: var(--c-coral-d); }
.vt-zones__badge--no { background: rgba(22,36,61,0.07); color: var(--c-muted); }

/* ---- RESPONSIBILITY TABLE ---- */
.vt-resp {
  position: relative; z-index: 1;
  padding: 5rem 2rem;
  background: var(--c-white);
}
.vt-resp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.vt-resp__col {
  background: var(--c-light);
  border-radius: var(--r);
  padding: 2rem;
}
.vt-resp__col--us { border-top: 4px solid var(--c-coral); }
.vt-resp__col--client { border-top: 4px solid var(--c-mid); }
.vt-resp__col-title {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.vt-resp__col-title span {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  background: var(--c-coral);
  color: var(--c-white);
  flex-shrink: 0;
}
.vt-resp__col--client .vt-resp__col-title span { background: var(--c-mid); }
.vt-resp__list {
  list-style: none;
}
.vt-resp__list li {
  padding: .6rem 0;
  border-bottom: 1px solid rgba(22,36,61,0.07);
  font-size: .9rem;
  color: var(--c-dark);
  padding-left: 1.4rem;
  position: relative;
}
.vt-resp__list li:last-child { border-bottom: none; }
.vt-resp__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-coral);
  font-weight: 700;
}
.vt-resp__col--client .vt-resp__list li::before { color: var(--c-mid); }

/* ---- LIMITS SECTION ---- */
.vt-limits {
  position: relative; z-index: 1;
  padding: 5rem 2rem;
  background: var(--c-light);
}
.vt-limits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.vt-limits__card {
  background: var(--c-white);
  border-radius: var(--r);
  padding: 1.75rem;
  border: 1px solid rgba(22,36,61,0.08);
  transition: transform var(--trans), box-shadow var(--trans);
}
.vt-limits__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.vt-limits__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.vt-limits__card-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: .5rem;
}
.vt-limits__card-text {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ---- FLOATING PROGRESS ---- */
.vt-progress-ring {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 200;
  width: 52px; height: 52px;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--trans), transform var(--trans);
}
.vt-progress-ring.is-visible { opacity: 1; transform: scale(1); }
.vt-progress-ring svg { transform: rotate(-90deg); }
.vt-progress-ring circle {
  fill: none;
  stroke-width: 3;
}
.vt-progress-ring__bg { stroke: rgba(22,36,61,0.12); }
.vt-progress-ring__fill {
  stroke: var(--c-coral);
  stroke-dasharray: 138;
  stroke-dashoffset: 138;
  stroke-linecap: round;
  transition: stroke-dashoffset .1s linear;
}
.vt-progress-ring__inner {
  position: absolute;
  inset: 6px;
  background: var(--c-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white);
  font-size: .65rem;
  font-weight: 700;
  cursor: pointer;
}
.vt-progress-ring:hover .vt-progress-ring__inner { background: var(--c-coral); }

/* ---- FOOTER ---- */
.vt-footer {
  position: relative; z-index: 1;
  background: var(--c-dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem 1.5rem;
}
.vt-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.vt-footer__brand {}
.vt-footer__logo {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-white);
  text-decoration: none;
  display: block;
  margin-bottom: .75rem;
}
.vt-footer__tagline {
  font-size: .88rem;
  line-height: 1.6;
  max-width: 40ch;
}
.vt-footer__col-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1rem;
}
.vt-footer__links { list-style: none; }
.vt-footer__links li { margin-bottom: .5rem; }
.vt-footer__links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: .88rem;
  position: relative;
  transition: color var(--trans);
}
.vt-footer__links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; right: 50%;
  height: 1px;
  background: var(--c-coral);
  transition: left var(--trans), right var(--trans);
}
.vt-footer__links a:hover { color: var(--c-white); }
.vt-footer__links a:hover::after { left: 0; right: 0; }
.vt-footer__contact { font-size: .9rem; }
.vt-footer__contact a {
  color: var(--c-coral);
  text-decoration: none;
}
.vt-footer__contact a:hover { text-decoration: underline; }
.vt-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
}
.vt-footer__bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.vt-footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ---- SECTION APPEAR ANIMATION ---- */
.vt-appear {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 500ms cubic-bezier(0.4,0,0.2,1),
              transform 500ms cubic-bezier(0.4,0,0.2,1);
}
.vt-appear.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- COOKIE BANNER ---- */
.vt-cookie {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 5000;
  background: var(--c-dark);
  color: rgba(255,255,255,0.85);
  border-radius: var(--r);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 680px;
  width: calc(100% - 2rem);
  transition: transform 400ms cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(255,255,255,0.08);
}
.vt-cookie.is-open { transform: translateX(-50%) translateY(0); }
.vt-cookie__text { font-size: .87rem; line-height: 1.5; flex: 1; }
.vt-cookie__text a { color: var(--c-coral); text-decoration: none; }
.vt-cookie__text a:hover { text-decoration: underline; }
.vt-cookie__actions { display: flex; gap: .75rem; flex-shrink: 0; }
.vt-cookie__btn {
  padding: .5rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.vt-cookie__btn--accept {
  background: var(--c-coral);
  color: var(--c-white);
  border-color: var(--c-coral);
}
.vt-cookie__btn--accept:hover { background: var(--c-coral-d); border-color: var(--c-coral-d); }
.vt-cookie__btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.vt-cookie__btn--reject:hover { border-color: rgba(255,255,255,0.5); color: var(--c-white); }
.vt-cookie__btn:focus-visible { outline: 3px solid var(--c-coral); outline-offset: 3px; }

/* ---- INTERNAL PAGES ---- */
.vt-page {
  position: relative; z-index: 1;
  padding: 4rem 2rem 6rem;
}
.vt-page__hero {
  background: var(--c-dark);
  padding: 3.5rem 2rem;
  margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.vt-page__hero-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: .75rem;
}
.vt-page__hero-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.vt-page__hero-sub {
  margin-top: .75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 55ch;
}
.vt-page__breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.vt-page__breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.vt-page__breadcrumb a:hover { color: var(--c-white); }

.vt-page__body {
  max-width: 800px;
  margin: 0 auto;
}
.vt-page__body h2 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-dark);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}
.vt-page__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-dark);
  margin: 2rem 0 .75rem;
}
.vt-page__body p {
  font-size: .97rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 70ch;
}
.vt-page__body ul, .vt-page__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.vt-page__body li {
  font-size: .95rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: .4rem;
}
.vt-page__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem;
}
.vt-page__body table th {
  background: var(--c-dark);
  color: var(--c-white);
  padding: .75rem 1rem;
  text-align: left;
}
.vt-page__body table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid rgba(22,36,61,0.08);
  color: var(--c-dark);
}
.vt-page__body table tr:nth-child(even) td { background: #f8f9fb; }

/* Policy TOC */
.vt-toc {
  background: var(--c-light);
  border-radius: var(--r-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--c-coral);
}
.vt-toc__title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-dark);
  margin-bottom: .75rem;
}
.vt-toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
}
.vt-toc a {
  color: var(--c-coral);
  text-decoration: none;
  font-size: .88rem;
}
.vt-toc a:hover { text-decoration: underline; }

/* 404 */
.vt-404 {
  min-height: calc(100vh - 128px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative; z-index: 1;
}
.vt-404__content { text-align: center; max-width: 500px; }
.vt-404__num {
  font-family: var(--ff-head);
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 900;
  color: rgba(22,36,61,0.08);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: -1rem;
}
.vt-404__title {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 1rem;
}
.vt-404__text {
  color: var(--c-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.vt-404__links { list-style: none; margin: 1.5rem 0; }
.vt-404__links li {
  padding: .4rem 0;
}
.vt-404__links a {
  color: var(--c-coral);
  text-decoration: none;
  font-weight: 600;
}
.vt-404__links a:hover { text-decoration: underline; }

/* Contact page */
.vt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.vt-contact-info {}
.vt-contact-info h2 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.vt-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--c-light);
  border-radius: var(--r-sm);
  margin-bottom: 1rem;
}
.vt-contact-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.vt-contact-item__label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-muted);
  margin-bottom: .25rem;
}
.vt-contact-item__val {
  font-weight: 700;
  color: var(--c-dark);
}
.vt-contact-item__val a {
  color: var(--c-coral);
  text-decoration: none;
}
.vt-contact-item__val a:hover { text-decoration: underline; }

/* Sub-page form box */
.vt-formbox {
  background: var(--c-dark);
  border-radius: var(--r);
  padding: 2.5rem;
}
.vt-formbox__title {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}

/* ---- MOBILE NAV ---- */
.vt-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.vt-mobile-menu.is-open { display: flex; }
.vt-mobile-menu a {
  color: var(--c-white);
  text-decoration: none;
  font-family: var(--ff-head);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color var(--trans);
}
.vt-mobile-menu a:hover { color: var(--c-coral); }
.vt-mobile-menu__close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  color: var(--c-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .vt-hero { height: 85vh; flex-direction: column; }
  .vt-tile { flex: 1 !important; }
  .vt-tile:hover { flex: 1 !important; }
  .vt-tile__desc { opacity: 1; transform: none; }
  .vt-tile__cta { opacity: 1; transform: none; }
  .vt-row { grid-template-columns: 1fr; gap: 2rem; }
  .vt-row--reverse { direction: ltr; }
  .vt-form__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .vt-resp__grid { grid-template-columns: 1fr; }
  .vt-limits__grid { grid-template-columns: 1fr 1fr; }
  .vt-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .vt-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .vt-strip { gap: 2rem; }
  .vt-nav__list, .vt-nav__underline { display: none; }
  .vt-nav__burger { display: block; }
}
@media (max-width: 600px) {
  .vt-section { padding: 3.5rem 1.25rem; }
  .vt-limits__grid { grid-template-columns: 1fr; }
  .vt-tile { min-height: 220px; }
  .vt-form { padding: 3rem 1.25rem; }
  .vt-zones { padding: 3rem 1.25rem; }
  .vt-resp { padding: 3rem 1.25rem; }
  .vt-limits { padding: 3rem 1.25rem; }
}
