/* Hevkad palette: white page background, production blue #57709D, soft blue sections. */
:root {
  --hvk-blue: #57709d;
  --hvk-blue-2: #57709d;
  --hvk-blue-3: #8aa2c2;
  --hvk-ink: #17202f;
  --hvk-muted: #69758b;
  --hvk-soft: #f4f9ff;
  --hvk-soft-2: #f8fbff;
  --hvk-line: #dce8f4;
  --hvk-white: #ffffff;
  --hvk-shadow: 0 18px 52px rgba(87, 112, 157, 0.13);
  --hvk-shadow-soft: 0 12px 30px rgba(87, 112, 157, 0.08);
  --hvk-radius-xl: 32px;
  --hvk-radius-lg: 26px;
  --hvk-radius-md: 18px;
  --hvk-container: 1425px;
}

.hvk-product-page {
  overflow: hidden;
  padding: 28px 32px 72px;
  background: #ffffff;
  box-sizing: border-box;
}

.hvk-product-page *,
.hvk-product-page *::before,
.hvk-product-page *::after {
  box-sizing: border-box;
}

.hvk-product-container {
  width: min(100%, var(--hvk-container));
  margin: 0 auto;
}

.hvk-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 8px 0 18px;
  color: #77849a;
  font-size: 14px;
  line-height: 1.35;
}

.hvk-breadcrumbs a {
  color: var(--hvk-blue-2);
  font-weight: 500;
  text-decoration: none;
}

.hvk-breadcrumbs span {
  opacity: 0.8;
}

.hvk-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 34px;
  align-items: stretch;
  padding: 42px;
  border: 1px solid rgba(139, 177, 212, 0.4);
  border-radius: var(--hvk-radius-xl);
  background:
    radial-gradient(circle at 92% 8%, rgba(87, 112, 157, 0.13) 0 15%, transparent 16%),
    radial-gradient(circle at 8% 92%, rgba(87, 112, 157, 0.08) 0 14%, transparent 15%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 58%, #ffffff 100%);
  box-shadow: var(--hvk-shadow);
}

.hvk-hero::before {
  content: "";
  position: absolute;
  inset: auto 42px 42px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(87, 112, 157, 0.08);
  z-index: 0;
}

.hvk-hero > * {
  position: relative;
  z-index: 1;
}

.hvk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(87, 112, 157, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--hvk-blue-2);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(42, 77, 118, 0.07);
}

.hvk-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--hvk-blue);
  box-shadow: 0 0 0 5px rgba(87, 112, 157, 0.14);
  flex: 0 0 auto;
}

.hvk-product-page h1,
.hvk-product-page h2,
.hvk-product-page h3,
.hvk-product-page p {
  margin-top: 0;
}

.hvk-hero h1 {
  max-width: 780px;
  margin: 22px 0 18px;
  color: var(--hvk-ink);
  font-size: clamp(38px, 4.1vw, 64px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hvk-lead {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--hvk-muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
  font-weight: 400;
}

.hvk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 30px 0 26px;
}

.hvk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.hvk-btn:hover {
  transform: translateY(-2px);
}

.hvk-btn-primary {
  background: var(--hvk-blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(87, 112, 157, 0.24);
}

.hvk-btn-secondary {
  background: #fff;
  color: var(--hvk-blue);
  border-color: rgba(87, 112, 157, 0.24);
  box-shadow: 0 10px 24px rgba(87, 112, 157, 0.08);
}

.hvk-btn-primary:hover {
  background: #4d6792;
  box-shadow: 0 14px 34px rgba(87, 112, 157, 0.28);
  color: #fff;
}

.hvk-btn-secondary:hover {
  border-color: rgba(87, 112, 157, 0.42);
  color: #4d6792;
}

.hvk-btn-light {
  background: #fff;
  color: var(--hvk-blue);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(17, 32, 51, 0.12);
}

.hvk-btn-light:hover {
  background: #f4f9ff;
  color: #4d6792;
}

.hvk-price-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  max-width: 650px;
  padding: 18px;
  border: 1px solid rgba(87, 112, 157, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(87, 112, 157, 0.08);
  backdrop-filter: blur(8px);
}

.hvk-price-panel strong {
  display: block;
  color: var(--hvk-blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hvk-price-panel span {
  display: block;
  color: #69758b;
  font-size: 14px;
  line-height: 1.35;
}

.hvk-price-note {
  min-width: 220px;
  flex: 1;
}

.hvk-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hvk-mini-card {
  padding: 16px 14px;
  border: 1px solid rgba(87, 112, 157, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--hvk-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 10px 22px rgba(87, 112, 157, 0.06);
}

.hvk-mini-card span {
  display: block;
  margin-top: 5px;
  color: #69758b;
  font-weight: 500;
}

.hvk-hero-media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(87, 112, 157, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), var(--hvk-shadow-soft);
}

.hvk-photo-wrap {
  position: relative;
  min-height: 390px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 72% 24%, rgba(87, 112, 157, 0.1) 0 22%, transparent 23%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.hvk-photo-wrap::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 42px;
  height: 24px;
  border-radius: 999px;
  background: rgba(27, 49, 78, 0.1);
  filter: blur(12px);
}

.hvk-vehicle-img {
  position: relative;
  width: 100%;
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(17, 32, 51, 0.14));
}

.hvk-media-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(87, 112, 157, 0.16);
}

.hvk-media-caption b {
  display: block;
  color: #17202f;
  font-size: 20px;
  line-height: 1.25;
}

.hvk-media-caption span {
  display: block;
  margin-top: 5px;
  color: #77849a;
  font-size: 14px;
}

.hvk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--hvk-soft);
  color: var(--hvk-blue);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.hvk-section {
  margin-top: 34px;
  padding: 36px;
  border-radius: var(--hvk-radius-xl);
  background: #fff;
  border: 1px solid rgba(87, 112, 157, 0.16);
  box-shadow: var(--hvk-shadow-soft);
}

.hvk-section-soft {
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

.hvk-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.hvk-section h2 {
  margin: 0;
  color: #17202f;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hvk-section-head p {
  margin: 0;
  color: #69758b;
  font-size: 16px;
  line-height: 1.55;
}

.hvk-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hvk-info-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, 0.16);
  box-shadow: 0 12px 28px rgba(87, 112, 157, 0.07);
}

.hvk-info-card .icon {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #eef6ff;
  color: var(--hvk-blue);
  font-size: 22px;
}

.hvk-info-card h3 {
  margin: 0 0 10px;
  color: #17202f;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hvk-info-card p {
  margin: 0;
  color: #69758b;
  font-size: 15px;
  line-height: 1.55;
}

.hvk-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.46fr);
  gap: 22px;
  align-items: stretch;
}

.hvk-list-card,
.hvk-note-card {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, 0.16);
  box-shadow: 0 12px 30px rgba(87, 112, 157, 0.07);
}

.hvk-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hvk-list li {
  position: relative;
  padding: 15px 16px 15px 48px;
  border-radius: 18px;
  background: var(--hvk-soft-2);
  color: #334157;
  line-height: 1.45;
  border: 1px solid rgba(87, 112, 157, 0.1);
}

.hvk-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 13px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--hvk-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hvk-note-card {
  background: linear-gradient(180deg, var(--hvk-blue) 0%, #4d6792 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hvk-note-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -64px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hvk-note-card b {
  display: block;
  max-width: 300px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hvk-note-card p {
  max-width: 360px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.62;
}

.hvk-note-card .hvk-btn {
  position: relative;
  z-index: 1;
}

.hvk-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hvk-spec {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, 0.15);
}

.hvk-spec dt {
  margin: 0 0 7px;
  color: #77849a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hvk-spec dd {
  margin: 0;
  color: #17202f;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
}

.hvk-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.hvk-step {
  position: relative;
  padding: 30px 24px 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, 0.16);
  box-shadow: 0 12px 28px rgba(87, 112, 157, 0.07);
  counter-increment: step;
}

.hvk-step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--hvk-blue);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
}

.hvk-step h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
}

.hvk-step p {
  margin: 0;
  color: #69758b;
  font-size: 15px;
  line-height: 1.55;
}

.hvk-seo {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(420px, 0.44fr);
  gap: 28px;
  align-items: start;
}

.hvk-copy p {
  margin: 0 0 16px;
  color: #4b596f;
  font-size: 16px;
  line-height: 1.75;
}

.hvk-copy p:last-child {
  margin-bottom: 0;
}

.hvk-seo-aside {
  position: sticky;
  top: 22px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid rgba(87, 112, 157, 0.16);
}

.hvk-seo-aside h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.hvk-seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hvk-seo-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, 0.14);
  color: var(--hvk-blue);
  font-size: 13px;
  font-weight: 700;
}

.hvk-faq {
  display: grid;
  gap: 12px;
}

.hvk-faq details {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(87, 112, 157, 0.16);
  box-shadow: 0 10px 24px rgba(87, 112, 157, 0.055);
  overflow: hidden;
}

.hvk-faq summary {
  cursor: pointer;
  padding: 20px 24px;
  color: #17202f;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
  list-style: none;
}

.hvk-faq summary::-webkit-details-marker {
  display: none;
}

.hvk-faq summary::after {
  content: "+";
  float: right;
  color: var(--hvk-blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.hvk-faq details[open] summary::after {
  content: "−";
}

.hvk-faq details p {
  margin: 0;
  padding: 0 24px 22px;
  color: #69758b;
  font-size: 15px;
  line-height: 1.62;
}

.hvk-cta {
  margin-top: 34px;
  padding: 40px;
  border-radius: var(--hvk-radius-xl);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.16) 0 17%, transparent 18%),
    linear-gradient(135deg, var(--hvk-blue) 0%, #4d6792 100%);
  color: #fff;
  box-shadow: 0 22px 58px rgba(87, 112, 157, 0.24);
  overflow: hidden;
}

.hvk-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.hvk-cta h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(30px, 2.5vw, 46px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hvk-cta p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.55;
}

.hvk-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .hvk-hero {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .hvk-hero-media {
    min-height: unset;
  }

  .hvk-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hvk-two-col,
  .hvk-seo {
    grid-template-columns: 1fr;
  }

  .hvk-seo-aside {
    position: relative;
    top: auto;
  }

  .hvk-cta-inner {
    grid-template-columns: 1fr;
  }

  .hvk-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .hvk-product-page {
    padding: 18px 15px 52px;
  }

  .hvk-breadcrumbs {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .hvk-hero {
    padding: 22px;
    border-radius: 28px;
    gap: 22px;
  }

  .hvk-hero h1 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hvk-lead {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .hvk-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 22px 0;
  }

  .hvk-btn {
    width: 100%;
    min-height: 54px;
    padding: 15px 18px;
  }

  .hvk-price-panel {
    padding: 15px;
    border-radius: 20px;
  }

  .hvk-price-panel strong {
    font-size: 30px;
  }

  .hvk-hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hvk-mini-card {
    padding: 13px;
    font-size: 12px;
  }

  .hvk-photo-wrap {
    min-height: 260px;
    padding: 18px;
  }

  .hvk-media-caption {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .hvk-section {
    margin-top: 22px;
    padding: 22px;
    border-radius: 28px;
  }

  .hvk-section-head {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hvk-section h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .hvk-card-grid,
  .hvk-specs,
  .hvk-steps {
    grid-template-columns: 1fr;
  }

  .hvk-info-card {
    min-height: unset;
    padding: 20px;
    border-radius: 22px;
  }

  .hvk-list-card,
  .hvk-note-card {
    padding: 22px;
    border-radius: 22px;
  }

  .hvk-list li {
    padding: 14px 14px 14px 46px;
  }

  .hvk-seo {
    gap: 18px;
  }

  .hvk-cta {
    padding: 26px 22px;
    border-radius: 28px;
  }

  .hvk-cta h2 {
    font-size: 29px;
  }
}
