/* ============================================================
   /przyklady/elektryk/style.css — VoltServ Elektro
   Layout A: asymmetric diagonal hero, electric yellow #FFD60A
   + midnight navy #001D3D. Space Grotesk 700/400.
   Class prefix: .vs- (unique per branża).
   ============================================================ */

:root {
  --vs-yellow: #ffd60a;
  --vs-yellow-deep: #e0bc00;
  --vs-yellow-text: #7a5d00;
  --vs-navy: #001d3d;
  --vs-navy-soft: #0d2b52;
  --vs-bg: #fffbeb;
  --vs-bg-alt: #fff6cc;
  --vs-text: #0a0f1f;
  --vs-text-sec: #4a5568;
  --vs-line: #e2d270;
  --vs-white: #ffffff;
  --vs-radius: 6px;
  --vs-shadow: 0 14px 40px rgba(255, 214, 10, 0.22);
  --vs-shadow-sm: 0 4px 14px rgba(0, 29, 61, 0.08);
  --vs-shadow-navy: 0 20px 50px rgba(0, 29, 61, 0.2);
  --vs-font: "Space Grotesk", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--vs-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--vs-text);
  background: var(--vs-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--vs-navy);
  text-decoration: none;
}
a:hover {
  color: var(--vs-yellow-deep);
}
button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--vs-font);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--vs-text);
}
h1 {
  font-size: clamp(40px, 5.2vw, 68px);
}
h2 {
  font-size: clamp(30px, 3.6vw, 46px);
}
h3 {
  font-size: clamp(20px, 2vw, 26px);
}

p {
  margin: 0 0 16px;
  color: var(--vs-text-sec);
}

/* --- Container --------------------------------------------- */
.vs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Sections ---------------------------------------------- */
.vs-section {
  padding: 90px 0;
  position: relative;
}
.vs-section--tight-top {
  padding-top: 40px;
}
.vs-section--yellow-tint {
  background: rgba(255, 214, 10, 0.08);
}
.vs-footer__anchor {
  margin-top: 12px;
}
.vs-section--navy {
  background: var(--vs-navy);
  color: var(--vs-white);
}
.vs-section--navy h2,
.vs-section--navy h3,
.vs-section--navy h4 {
  color: var(--vs-white);
}
.vs-section--navy p {
  color: rgba(255, 255, 255, 0.85);
}

/* Diagonal divider between sections */
.vs-divider-down {
  height: 60px;
  background: var(--vs-navy);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 45%);
}
.vs-divider-up {
  height: 60px;
  background: var(--vs-navy);
  clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
}

.vs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vs-navy);
  background: var(--vs-yellow);
  padding: 6px 14px;
  border-radius: var(--vs-radius);
  margin-bottom: 18px;
}
.vs-section--navy .vs-eyebrow {
  background: var(--vs-yellow);
  color: var(--vs-navy);
}
.vs-section__head {
  max-width: 720px;
  margin-bottom: 56px;
}

/* --- Header ------------------------------------------------- */
.vs-header {
  background: var(--vs-navy);
  color: var(--vs-white);
  position: sticky;
  top: 44px;
  z-index: 100;
  border-bottom: 3px solid var(--vs-yellow);
}
.vs-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.vs-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--vs-white);
}
.vs-logo__mark {
  width: 44px;
  height: 44px;
  background: var(--vs-yellow);
  color: var(--vs-navy);
  border-radius: var(--vs-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(255, 214, 10, 0.45);
}
.vs-logo__text {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.vs-logo__text small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
}

.vs-nav {
  display: flex;
  gap: 28px;
}
.vs-nav a {
  color: var(--vs-white);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}
.vs-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--vs-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.vs-nav a:hover,
.vs-nav a.is-active {
  color: var(--vs-yellow);
}
.vs-nav a.is-active::after,
.vs-nav a:hover::after {
  transform: scaleX(1);
}

.vs-header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  font-weight: 700;
  color: var(--vs-yellow);
  font-size: 18px;
}
.vs-header__phone small {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

/* --- Buttons ------------------------------------------------ */
.vs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--vs-radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.vs-btn--yellow {
  background: var(--vs-yellow);
  color: var(--vs-navy);
  box-shadow:
    0 0 0 4px rgba(255, 214, 10, 0.25),
    var(--vs-shadow);
}
.vs-btn--yellow:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px rgba(255, 214, 10, 0.35),
    0 18px 50px rgba(255, 214, 10, 0.35);
  color: var(--vs-navy);
}
.vs-btn--navy {
  background: var(--vs-navy);
  color: var(--vs-yellow);
}
.vs-btn--navy:hover {
  background: var(--vs-navy-soft);
  color: var(--vs-yellow);
}
.vs-btn--ghost {
  background: transparent;
  color: var(--vs-navy);
  border-color: var(--vs-navy);
}
.vs-btn--ghost:hover {
  background: var(--vs-navy);
  color: var(--vs-yellow);
}

/* --- HERO: asymmetric diagonal ----------------------------- */
.vs-hero {
  position: relative;
  overflow: hidden;
  background: var(--vs-yellow);
}
.vs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vs-navy);
  clip-path: polygon(55% 0, 100% 0, 100% 100%, 40% 100%);
}
.vs-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 90px 0 110px;
  align-items: center;
}
.vs-hero__left {
  position: relative;
  z-index: 2;
}
.vs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vs-navy);
  color: var(--vs-yellow);
  padding: 8px 16px;
  border-radius: var(--vs-radius);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.vs-hero h1 {
  color: var(--vs-navy);
}
.vs-hero__sub {
  font-size: 19px;
  color: var(--vs-navy);
  opacity: 0.85;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 400;
}
.vs-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.vs-hero__right {
  position: relative;
  z-index: 2;
}
.vs-hero__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 214, 10, 0.35);
  border-radius: var(--vs-radius);
  padding: 28px;
  box-shadow: 0 0 60px rgba(255, 214, 10, 0.1);
  backdrop-filter: blur(4px);
}
.vs-hero__card img,
.vs-hero__card svg {
  border-radius: 4px;
}
.vs-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  color: var(--vs-white);
}
.vs-hero__stat strong {
  display: block;
  font-size: 32px;
  color: var(--vs-yellow);
  font-weight: 700;
  line-height: 1;
}
.vs-hero__stat span {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  opacity: 0.75;
  line-height: 1.3;
}

/* --- Trust bar --------------------------------------------- */
.vs-trust {
  background: var(--vs-navy);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 214, 10, 0.2);
  color: var(--vs-white);
}
.vs-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.vs-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
}
.vs-trust__bolt {
  color: var(--vs-yellow);
  font-size: 22px;
  flex-shrink: 0;
}

/* --- Services grid ----------------------------------------- */
.vs-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vs-service {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  padding: 32px 28px;
  border: 2px solid var(--vs-navy);
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.vs-service::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: var(--vs-yellow);
}
.vs-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--vs-shadow);
}
.vs-service__icon {
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1;
}
.vs-service h3 {
  margin-bottom: 8px;
}
.vs-service__desc {
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--vs-text-sec);
}
.vs-service__meta {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 2px dashed var(--vs-line);
  font-weight: 700;
  font-size: 14px;
}
.vs-service__price {
  color: var(--vs-navy);
}
.vs-service__time {
  color: var(--vs-text-sec);
}

/* --- About -------------------------------------------------- */
.vs-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.vs-about__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.vs-about__points li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 214, 10, 0.1);
  border-left: 4px solid var(--vs-yellow);
  border-radius: var(--vs-radius);
  font-weight: 700;
}
.vs-about__points li::before {
  content: "⚡";
  color: var(--vs-yellow);
  font-size: 22px;
  flex-shrink: 0;
}
.vs-section--navy .vs-about__points li {
  background: rgba(255, 214, 10, 0.08);
  color: var(--vs-white);
}

/* --- Testimonials ----------------------------------------- */
.vs-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vs-testimonial {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  padding: 28px;
  box-shadow: var(--vs-shadow-sm);
  border-top: 4px solid var(--vs-yellow);
  position: relative;
  display: flex;
  flex-direction: column;
}
.vs-testimonial__quote {
  position: absolute;
  top: -18px;
  left: 24px;
  font-size: 56px;
  line-height: 1;
  color: var(--vs-yellow-text);
  font-weight: 900;
}
.vs-testimonial__stars {
  color: var(--vs-yellow-text);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.vs-testimonial__text {
  font-size: 16px;
  color: var(--vs-text);
  line-height: 1.55;
  margin-bottom: 20px;
}
.vs-testimonial__author {
  margin-top: auto;
  font-weight: 700;
  color: var(--vs-navy);
}
.vs-testimonial__city {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--vs-text-sec);
}

/* --- FAQ --------------------------------------------------- */
.vs-faq {
  max-width: 820px;
}
.vs-faq details {
  background: var(--vs-white);
  border: 2px solid var(--vs-navy);
  border-radius: var(--vs-radius);
  padding: 20px 24px;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.vs-faq details[open] {
  border-color: var(--vs-yellow);
  background: rgba(255, 214, 10, 0.08);
}
.vs-faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--vs-navy);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.vs-faq summary::-webkit-details-marker {
  display: none;
}
.vs-faq summary::after {
  content: "⚡";
  color: var(--vs-yellow-deep);
  font-size: 22px;
  transition: transform 0.2s;
}
.vs-faq details[open] summary::after {
  transform: rotate(90deg);
}
.vs-faq details p {
  margin: 14px 0 0;
  color: var(--vs-text);
  font-size: 15px;
  line-height: 1.6;
}

/* --- CTA ---------------------------------------------------- */
.vs-cta {
  background: var(--vs-yellow);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vs-cta::before,
.vs-cta::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--vs-navy);
  border-radius: 50%;
  opacity: 0.08;
}
.vs-cta::before {
  top: -200px;
  left: -200px;
}
.vs-cta::after {
  bottom: -200px;
  right: -200px;
}
.vs-cta h2 {
  color: var(--vs-navy);
  position: relative;
  margin-bottom: 10px;
}
.vs-cta p {
  color: var(--vs-navy);
  font-size: 18px;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
}
.vs-cta .vs-btn {
  position: relative;
}

/* --- Contact preview --------------------------------------- */
.vs-contact-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--vs-navy);
  padding: 48px;
  border-radius: var(--vs-radius);
  color: var(--vs-white);
  border: 2px solid var(--vs-yellow);
  box-shadow: var(--vs-shadow-navy);
}
.vs-contact-preview h3 {
  color: var(--vs-yellow);
}
.vs-contact-preview p {
  color: rgba(255, 255, 255, 0.85);
}
.vs-contact-preview__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.vs-contact-preview__list li {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 214, 10, 0.3);
}
.vs-contact-preview__list strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vs-yellow);
  margin-bottom: 2px;
}
.vs-map-box {
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 214, 10, 0.05),
    rgba(255, 214, 10, 0.05) 10px,
    rgba(255, 214, 10, 0.12) 10px,
    rgba(255, 214, 10, 0.12) 20px
  );
  border: 1px dashed var(--vs-yellow);
  border-radius: var(--vs-radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vs-yellow);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* --- Phone literal ----------------------------------------- */
.vs-phone {
  display: inline-flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 28px;
  color: var(--vs-yellow);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.vs-phone small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.vs-contact-card .vs-phone {
  color: var(--vs-navy);
}
.vs-contact-card .vs-phone small {
  color: var(--vs-text-sec);
}

/* --- Related demos ----------------------------------------- */
.vs-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vs-related__card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--vs-white);
  border: 2px solid var(--vs-navy);
  border-radius: var(--vs-radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.vs-related__card:hover {
  transform: translateY(-3px);
  border-color: var(--vs-yellow);
  box-shadow: var(--vs-shadow);
}
.vs-related__card span.emoji {
  font-size: 44px;
}
.vs-related__card h4 {
  color: var(--vs-navy);
  margin-bottom: 4px;
  font-size: 20px;
}
.vs-related__card p {
  margin: 0;
  font-size: 14px;
}

/* --- Footer ------------------------------------------------ */
.vs-footer {
  background: var(--vs-navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 0 30px;
  font-size: 14px;
  border-top: 3px solid var(--vs-yellow);
}
.vs-footer p {
  color: rgba(255, 255, 255, 0.78);
}
.vs-footer h4 {
  color: var(--vs-yellow);
  font-size: 15px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.vs-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.vs-footer a {
  color: rgba(255, 255, 255, 0.78);
}
.vs-footer a:hover {
  color: var(--vs-yellow);
}
.vs-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vs-footer li {
  margin-bottom: 8px;
}
.vs-footer__bottom {
  border-top: 1px solid rgba(255, 214, 10, 0.15);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Subpage hero ------------------------------------------ */
.vs-subhero {
  background: var(--vs-navy);
  color: var(--vs-white);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.vs-subhero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35%;
  background: var(--vs-yellow);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.12;
}
.vs-subhero h1 {
  color: var(--vs-white);
  margin-bottom: 12px;
}
.vs-subhero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 640px;
}

/* --- Uslugi full list -------------------------------------- */
.vs-service-full {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  padding: 40px;
  border: 2px solid var(--vs-navy);
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 28px;
  align-items: start;
  position: relative;
}
.vs-service-full::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: var(--vs-yellow);
}
.vs-service-full__icon {
  font-size: 44px;
  line-height: 1;
}
.vs-service-full__body h3 {
  margin-bottom: 10px;
}
.vs-service-full__body p {
  font-size: 16px;
  margin-bottom: 14px;
}
.vs-service-full__meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--vs-text-sec);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vs-service-full__meta strong {
  color: var(--vs-navy);
}
.vs-service-full__cta {
  align-self: center;
  white-space: nowrap;
}

/* --- Why us ------------------------------------------------- */
.vs-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vs-why__item {
  background: var(--vs-white);
  color: var(--vs-text);
  border-radius: var(--vs-radius);
  padding: 32px 24px;
  border-top: 4px solid var(--vs-yellow);
  box-shadow: var(--vs-shadow-sm);
}
.vs-why__num {
  font-size: 52px;
  font-weight: 700;
  color: var(--vs-yellow-text);
  line-height: 1;
  margin-bottom: 12px;
}
.vs-why__item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--vs-text);
}
.vs-why__item p {
  margin: 0;
  font-size: 15px;
  color: var(--vs-text-sec);
}

/* --- Packages ---------------------------------------------- */
.vs-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.vs-package {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  padding: 36px 28px;
  border: 2px solid var(--vs-navy);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.vs-package:hover {
  transform: translateY(-4px);
}
.vs-package--popular {
  background: var(--vs-navy);
  color: var(--vs-white);
  border-color: var(--vs-yellow);
  transform: scale(1.02);
}
.vs-package--popular h3 {
  color: var(--vs-yellow);
}
.vs-package--popular p {
  color: rgba(255, 255, 255, 0.8);
}
.vs-package--popular .vs-package__price {
  color: var(--vs-yellow);
}
.vs-package--popular .vs-package__features li {
  color: rgba(255, 255, 255, 0.88);
}
.vs-package--popular::before {
  content: "⚡ Najpopularniejszy";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vs-yellow);
  color: var(--vs-navy);
  padding: 6px 16px;
  border-radius: var(--vs-radius);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.vs-package h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.vs-package__price {
  font-size: 34px;
  font-weight: 700;
  color: var(--vs-navy);
  margin-bottom: 10px;
}
.vs-package__desc {
  font-size: 14px;
  margin-bottom: 20px;
}
.vs-package__features {
  list-style: none;
  padding: 16px 0 0;
  margin: 0 0 24px;
  border-top: 2px dashed var(--vs-line);
}
.vs-package__features li {
  padding: 8px 0 8px 24px;
  font-size: 14px;
  position: relative;
}
.vs-package__features li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: var(--vs-yellow-deep);
}
.vs-package--popular .vs-package__features li::before {
  color: var(--vs-yellow);
}

/* --- Price table ------------------------------------------- */
.vs-pricetable {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  overflow: hidden;
  border: 2px solid var(--vs-navy);
  position: relative;
}
.vs-pricetable::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: var(--vs-yellow);
}
.vs-pricetable table {
  width: 100%;
  border-collapse: collapse;
}
.vs-pricetable th,
.vs-pricetable td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--vs-line);
}
.vs-pricetable th {
  background: var(--vs-navy);
  color: var(--vs-yellow);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vs-pricetable th:last-child {
  text-align: right;
}
.vs-pricetable__desc {
  display: block;
  color: var(--vs-text-sec);
  font-weight: 400;
  font-size: 13px;
  margin-top: 4px;
}
.vs-pricetable td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--vs-navy);
  white-space: nowrap;
}
.vs-pricetable tr:last-child td {
  border-bottom: 0;
}
.vs-pricetable tr:hover td {
  background: rgba(255, 214, 10, 0.08);
}

/* --- Contact form ------------------------------------------ */
.vs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.vs-contact-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  padding: 40px;
  border: 2px solid var(--vs-navy);
  position: relative;
}
.vs-contact-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: var(--vs-yellow);
}
.vs-contact-card h2 {
  font-size: 26px;
  margin-bottom: 20px;
}
.vs-contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.vs-contact-card li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--vs-line);
}
.vs-contact-card li:last-child {
  border-bottom: 0;
}
.vs-contact-card i {
  font-style: normal;
  font-size: 22px;
}
.vs-contact-card strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vs-text-sec);
  margin-bottom: 2px;
}

.vs-form {
  background: var(--vs-navy);
  border-radius: var(--vs-radius);
  padding: 40px;
  color: var(--vs-white);
  position: relative;
}
.vs-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vs-yellow);
}
.vs-form h2 {
  color: var(--vs-yellow);
  font-size: 26px;
  margin-bottom: 8px;
}
.vs-form p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}
.vs-field {
  margin-bottom: 18px;
}
.vs-field label {
  display: block;
  color: var(--vs-yellow);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.vs-field input,
.vs-field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 214, 10, 0.3);
  border-radius: var(--vs-radius);
  color: var(--vs-white);
  transition:
    border-color 0.15s,
    background 0.15s;
}
.vs-field input::placeholder,
.vs-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.vs-field input:focus,
.vs-field textarea:focus {
  outline: none;
  border-color: var(--vs-yellow);
  background: rgba(255, 255, 255, 0.12);
}
.vs-field textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 960px) {
  .vs-hero::before {
    display: none;
  }
  .vs-hero {
    background: var(--vs-yellow);
    padding-bottom: 60px;
  }
  .vs-hero__grid {
    grid-template-columns: 1fr;
    padding: 60px 0 40px;
  }
  .vs-hero__card {
    background: var(--vs-navy);
    border: 1px solid var(--vs-yellow);
  }
  .vs-services,
  .vs-testimonials,
  .vs-packages,
  .vs-why,
  .vs-related {
    grid-template-columns: 1fr;
  }
  .vs-trust__grid {
    grid-template-columns: 1fr 1fr;
  }
  .vs-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .vs-about,
  .vs-contact-preview,
  .vs-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vs-service-full {
    grid-template-columns: 56px 1fr;
  }
  .vs-service-full__cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .vs-header__inner {
    flex-wrap: wrap;
    gap: 12px;
  }
  .vs-nav {
    order: 3;
    flex: 1 0 100%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .vs-nav a {
    white-space: nowrap;
    font-size: 13px;
  }
  .vs-header__phone {
    font-size: 15px;
  }
  .vs-section {
    padding: 56px 0;
  }
}
@media (max-width: 560px) {
  .vs-footer__grid {
    grid-template-columns: 1fr;
  }
  .vs-trust__grid {
    grid-template-columns: 1fr;
  }
  .vs-contact-card,
  .vs-form {
    padding: 28px;
  }
  .vs-contact-preview {
    padding: 28px;
  }
}

/* --- Accessibility ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid var(--vs-yellow, #ffd60a);
  outline-offset: 2px;
  border-radius: 2px;
}
